From: Jarno Rajahalme Date: Mon, 7 Jan 2013 17:54:31 +0000 (-0800) Subject: linux/openvswitch.h: Make OVSP_LOCAL 32-bit. X-Git-Tag: v3.10-rc1~120^2~435^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9807a54cd74149988f5d20088bf7a7957c205bfb;p=thirdparty%2Fkernel%2Flinux.git 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 Signed-off-by: Jesse Gross --- diff --git a/include/linux/openvswitch.h b/include/linux/openvswitch.h index d42e174bd0c85..99e6414a40d9c 100644 --- a/include/linux/openvswitch.h +++ b/include/linux/openvswitch.h @@ -94,7 +94,7 @@ struct ovs_vport_stats { }; /* Fixed logical ports. */ -#define OVSP_LOCAL ((__u16)0) +#define OVSP_LOCAL ((__u32)0) /* Packet transfer. */