datapath: Clean up use of TBL_* constants.
[openvswitch] / include / openvswitch / tunnel.h
index e7d3fce7162d9ae079f2ff4709c69a0449f46e60..d545e40e3e434db298110fb91b5cc36d296f5b17 100644 (file)
 
 /* This goes in the "config" member of struct odp_port for tunnel vports. */
 struct tnl_port_config {
-       __u32   flags;
-       __be32  saddr;
-       __be32  daddr;
-       __be32  in_key;
-       __be32  out_key;
-       __u8    tos;
-       __u8    ttl;
+       __aligned_be64  in_key;
+       __aligned_be64  out_key;
+       __u32           flags;
+       __be32          saddr;
+       __be32          daddr;
+       __u8            tos;
+       __u8            ttl;
 };
 
 #endif /* openvswitch/tunnel.h */