Re: [ovs-dev] [PATCH v2] datapath: Do not set dev->master for XEN.

2013-08-12 Thread Pravin Shelar
On Mon, Aug 12, 2013 at 3:46 PM, Jesse Gross wrote: > On Mon, Aug 12, 2013 at 1:28 PM, Pravin B Shelar wrote: >> XEN dom0 networking assumes dev->master is bond device >> and it tries to access bond private structure from dev->master >> ptr on receive path. This causes panic. >> Following patch r

Re: [ovs-dev] [PATCH v2] datapath: Do not set dev->master for XEN.

2013-08-12 Thread Jesse Gross
On Mon, Aug 12, 2013 at 1:28 PM, Pravin B Shelar wrote: > XEN dom0 networking assumes dev->master is bond device > and it tries to access bond private structure from dev->master > ptr on receive path. This causes panic. > Following patch removes compat code that is setting master > device. > > Sig

[ovs-dev] [PATCH v2] datapath: Do not set dev->master for XEN.

2013-08-12 Thread Pravin B Shelar
XEN dom0 networking assumes dev->master is bond device and it tries to access bond private structure from dev->master ptr on receive path. This causes panic. Following patch removes compat code that is setting master device. Signed-off-by: Pravin B Shelar Bug #18920 --- v1-v2: Fixed according to