]> Git Repo - linux.git/commitdiff
linux/openvswitch.h: Make OVSP_LOCAL 32-bit.
authorJarno Rajahalme <[email protected]>
Mon, 7 Jan 2013 17:54:31 +0000 (09:54 -0800)
committerJesse Gross <[email protected]>
Mon, 7 Jan 2013 17:54:31 +0000 (09:54 -0800)
OVS ports are now 32-bit, so OVSP_LOCAL should be too.
(Internally, kernel module still keeps port numbers 16-bit, though.)

Signed-off-by: Jarno Rajahalme <[email protected]>
Signed-off-by: Jesse Gross <[email protected]>
include/linux/openvswitch.h

index d42e174bd0c85860de4521c0c67df289c7e4489e..99e6414a40d9c85d131ce839380828ed03690fb4 100644 (file)
@@ -94,7 +94,7 @@ struct ovs_vport_stats {
 };
 
 /* Fixed logical ports. */
-#define OVSP_LOCAL      ((__u16)0)
+#define OVSP_LOCAL      ((__u32)0)
 
 /* Packet transfer. */
 
This page took 0.068445 seconds and 4 git commands to generate.