Re: [PATCH net-next v2 3/7] net: dsa: add support for switchdev FDB objects

2015-08-06 Thread Vivien Didelot
On 15-08-06 16:04:32, Andrew Lunn wrote: > Hi Vivien > > Thanks for splitting up the big patch. This it is much easier to > review now. > > Is this patch git bisectable? In terms of compilation, yes. > Clearly after this patch, but before all the other patches are in, we > will not be

Re: [PATCH net-next v2 3/7] net: dsa: add support for switchdev FDB objects

2015-08-06 Thread Andrew Lunn
Hi Vivien Thanks for splitting up the big patch. This it is much easier to review now. Is this patch git bisectable? Clearly after this patch, but before all the other patches are in, we will not be programming the hardware. The call into the driver is removed here, but the replacement is added

Re: [PATCH net-next v2 3/7] net: dsa: add support for switchdev FDB objects

2015-08-06 Thread Andrew Lunn
Hi Vivien Thanks for splitting up the big patch. This it is much easier to review now. Is this patch git bisectable? Clearly after this patch, but before all the other patches are in, we will not be programming the hardware. The call into the driver is removed here, but the replacement is added

Re: [PATCH net-next v2 3/7] net: dsa: add support for switchdev FDB objects

2015-08-06 Thread Vivien Didelot
On 15-08-06 16:04:32, Andrew Lunn wrote: Hi Vivien Thanks for splitting up the big patch. This it is much easier to review now. Is this patch git bisectable? In terms of compilation, yes. Clearly after this patch, but before all the other patches are in, we will not be programming the

[PATCH net-next v2 3/7] net: dsa: add support for switchdev FDB objects

2015-08-05 Thread Vivien Didelot
Remove the fdb_{add,del,getnext} function pointer in favor of new port_fdb_{add,del,getnext}. Implement the switchdev_port_obj_{add,del,dump} functions in DSA to support the SWITCHDEV_OBJ_PORT_FDB objects. Signed-off-by: Vivien Didelot --- drivers/net/dsa/mv88e6171.c | 3 -

[PATCH net-next v2 3/7] net: dsa: add support for switchdev FDB objects

2015-08-05 Thread Vivien Didelot
Remove the fdb_{add,del,getnext} function pointer in favor of new port_fdb_{add,del,getnext}. Implement the switchdev_port_obj_{add,del,dump} functions in DSA to support the SWITCHDEV_OBJ_PORT_FDB objects. Signed-off-by: Vivien Didelot vivien.dide...@savoirfairelinux.com ---