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: Jarno Rajahalme <jarno.rajahalme@nsn.com>
Signed-off-by: Jesse Gross <jesse@nicira.com>
This commit is contained in:
Jarno Rajahalme 2013-01-07 09:54:31 -08:00 committed by Jesse Gross
parent 03599c9411
commit 9807a54cd7

View File

@ -94,7 +94,7 @@ struct ovs_vport_stats {
};
/* Fixed logical ports. */
#define OVSP_LOCAL ((__u16)0)
#define OVSP_LOCAL ((__u32)0)
/* Packet transfer. */