From 70fe217eef345c89033c5cac042198612fb35f7e Mon Sep 17 00:00:00 2001 From: Jarno Rajahalme Date: Mon, 7 Jan 2013 12:45:27 +0200 Subject: [PATCH] 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 --- include/linux/openvswitch.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. */ -- 2.45.2