Commit 9807a54c authored by Jarno Rajahalme's avatar Jarno Rajahalme Committed by Jesse Gross

linux/openvswitch.h: Make OVSP_LOCAL 32-bit.

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: default avatarJarno Rajahalme <jarno.rajahalme@nsn.com>
Signed-off-by: default avatarJesse Gross <jesse@nicira.com>
parent 03599c94
...@@ -94,7 +94,7 @@ struct ovs_vport_stats { ...@@ -94,7 +94,7 @@ struct ovs_vport_stats {
}; };
/* Fixed logical ports. */ /* Fixed logical ports. */
#define OVSP_LOCAL ((__u16)0) #define OVSP_LOCAL ((__u32)0)
/* Packet transfer. */ /* Packet transfer. */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment