Re: [ovs-dev] [PATCH] alloc_ofp_port does not allocate the port number correctly

2013-01-11 Thread Krishna Kondaka
Thanks Justin! Krishna - Original Message - From: "Justin Pettit" To: "Krishna Kondaka" Cc: dev@openvswitch.org Sent: Friday, January 11, 2013 3:10:41 PM Subject: Re: [ovs-dev] [PATCH] alloc_ofp_port does not allocate the port number correctly I pushed this

[ovs-dev] [PATCH] alloc_ofp_port does not allocate the port number correctly

2013-01-10 Thread Krishna Kondaka
From: Krishna Kondaka alloc_ofp_port() does not allocate the port number correctly if the port number passed initially is already in use. The following if block if (ofp_port >= ofproto->max_ports || bitmap_is_set(ofproto->ofp_port_ids, ofp_port)) { is entered when either o

Re: [ovs-dev] [PATCH] alloc_ofp_port does not allocate the port number correctly

2013-01-10 Thread Krishna Kondaka
Thanks Justin. I will send out updated patch soon. Thanks Krishna - Original Message - From: "Justin Pettit" To: "Krishna Kondaka" Cc: dev@openvswitch.org Sent: Thursday, January 10, 2013 6:36:17 PM Subject: Re: [ovs-dev] [PATCH] alloc_ofp_port does not allo

[ovs-dev] [PATCH] alloc_ofp_port does not allocate the port number correctly

2013-01-09 Thread Krishna Kondaka
From: Krishna Kondaka alloc_ofp_port() does not allocate the port number correctly if the port number passed initially is already in use. The following if block if (ofp_port >= ofproto->max_ports || bitmap_is_set(ofproto->ofp_port_ids, ofp_port)) { is entered when eith