Re: [ovs-dev] [PATCH] openflow: Print LOCAL when in_port is OFPP_LOCAL.

2012-12-29 Thread Ben Pfaff
On Fri, Dec 28, 2012 at 11:20:45AM -0800, Gurucharan Shetty wrote: > Currently, when we add a flow with in_port=65534, we get the > following warning. > > "ofp_util|WARN|referring to port LOCAL as 65534 is deprecated > for compatibility with future versions of OpenFlow." > > But ovs-ofctl, while

[ovs-dev] [PATCH] openflow: Print LOCAL when in_port is OFPP_LOCAL.

2012-12-28 Thread Gurucharan Shetty
Currently, when we add a flow with in_port=65534, we get the following warning. "ofp_util|WARN|referring to port LOCAL as 65534 is deprecated for compatibility with future versions of OpenFlow." But ovs-ofctl, while dumping flows uses 65534 instead of LOCAL. This patch corrects that. Bug #14118