Re: [ovs-dev] [PATCH 4/6] tunneling: Handle multiple ip address for given device.

2016-03-14 Thread pravin shelar
On Thu, Mar 10, 2016 at 4:49 PM, Ben Pfaff wrote: > On Wed, Mar 09, 2016 at 04:40:43PM -0800, Pravin B Shelar wrote: >> From: Pravin B Shelar >> >> Device can have multiple IP address but netdev_get_in4/6() >> returns only one configured IPv6 address. Following >> patch fixes it. >> OVS router is

Re: [ovs-dev] [PATCH 4/6] tunneling: Handle multiple ip address for given device.

2016-03-10 Thread Ben Pfaff
On Wed, Mar 09, 2016 at 04:40:43PM -0800, Pravin B Shelar wrote: > From: Pravin B Shelar > > Device can have multiple IP address but netdev_get_in4/6() > returns only one configured IPv6 address. Following > patch fixes it. > OVS router is also updated to return source ip address for > given dest

Re: [ovs-dev] [PATCH 4/6] tunneling: Handle multiple ip address for given device.

2016-03-10 Thread Ben Pfaff
On Wed, Mar 09, 2016 at 04:40:43PM -0800, Pravin B Shelar wrote: > From: Pravin B Shelar > > Device can have multiple IP address but netdev_get_in4/6() > returns only one configured IPv6 address. Following > patch fixes it. > OVS router is also updated to return source ip address for > given dest

[ovs-dev] [PATCH 4/6] tunneling: Handle multiple ip address for given device.

2016-03-09 Thread Pravin B Shelar
From: Pravin B Shelar Device can have multiple IP address but netdev_get_in4/6() returns only one configured IPv6 address. Following patch fixes it. OVS router is also updated to return source ip address for given destination, This is required when interface has multiple IP address configured. S