From: Jarno Rajahalme Date: Mon, 7 Jan 2013 10:45:27 +0000 (+0200) Subject: include/linux/openvswitch.h: Make OVSP_LOCAL 32-bit. X-Git-Tag: sliver-openvswitch-1.9.90-3~10^2~39 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=70fe217eef345c89033c5cac042198612fb35f7e;p=sliver-openvswitch.git include/linux/openvswitch.h: Make OVSP_LOCAL 32-bit. ODP 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 56b9785b8..5e3296594 100644 --- a/include/linux/openvswitch.h +++ b/include/linux/openvswitch.h @@ -115,7 +115,7 @@ struct ovs_vport_stats { }; /* Fixed logical ports. */ -#define OVSP_LOCAL ((__u16)0) +#define OVSP_LOCAL ((__u32)0) /* Packet transfer. */