meta-flow: Correct comments on MFF_XREG*.
authorBen Pfaff <blp@nicira.com>
Thu, 14 Aug 2014 18:47:45 +0000 (11:47 -0700)
committerBen Pfaff <blp@nicira.com>
Thu, 14 Aug 2014 18:59:56 +0000 (11:59 -0700)
These are 64-bit, not 32-bit, registers.

Signed-off-by: Ben Pfaff <blp@nicira.com>
Acked-by: Jarno Rajahalme <jrajahalme@nicira.com>
lib/meta-flow.h

index 0af3888..c11f7ab 100644 (file)
@@ -61,10 +61,10 @@ enum OVS_PACKED_ENUM mf_field_id {
 #endif
 
 #if FLOW_N_XREGS == 4
-    MFF_XREG0,                  /* be32 */
-    MFF_XREG1,                  /* be32 */
-    MFF_XREG2,                  /* be32 */
-    MFF_XREG3,                  /* be32 */
+    MFF_XREG0,                  /* be64 */
+    MFF_XREG1,                  /* be64 */
+    MFF_XREG2,                  /* be64 */
+    MFF_XREG3,                  /* be64 */
 #else
 #error "Need to update MFF_REG* to match FLOW_N_XREGS"
 #endif