Re: Conver bridge(4) to if_input()

2015-06-22 Thread Martin Pieuchot
On 22/06/15(Mon) 17:12, Alexander Bluhm wrote: On Wed, Jun 17, 2015 at 02:08:14PM +0200, Martin Pieuchot wrote: diff -u -p -r1.340 if.c --- net/if.c16 Jun 2015 11:09:39 - 1.340 +++ net/if.c17 Jun 2015 12:03:36 - @@ -530,6 +530,15 @@ if_input_process(void *xmq)

Re: Conver bridge(4) to if_input()

2015-06-22 Thread Alexander Bluhm
On Wed, Jun 17, 2015 at 02:08:14PM +0200, Martin Pieuchot wrote: diff -u -p -r1.340 if.c --- net/if.c 16 Jun 2015 11:09:39 - 1.340 +++ net/if.c 17 Jun 2015 12:03:36 - @@ -530,6 +530,15 @@ if_input_process(void *xmq) continue; } +#if

Re: Conver bridge(4) to if_input()

2015-06-22 Thread Alexander Bluhm
On Mon, Jun 22, 2015 at 05:31:29PM +0200, Martin Pieuchot wrote: On 22/06/15(Mon) 17:12, Alexander Bluhm wrote: On Wed, Jun 17, 2015 at 02:08:14PM +0200, Martin Pieuchot wrote: diff -u -p -r1.340 if.c --- net/if.c 16 Jun 2015 11:09:39 - 1.340 +++ net/if.c 17 Jun 2015

Re: Conver bridge(4) to if_input()

2015-06-17 Thread Martin Pieuchot
On 08/06/15(Mon) 16:11, Martin Pieuchot wrote: This is the last pseudo-driver conversion. The idea is to run bridge_input() *before* any ifih on an interface. Doing so allow us to remove the hack between vlan(4) and bridge(4) and simplify the logic for stacked ifih. With that

Conver bridge(4) to if_input()

2015-06-08 Thread Martin Pieuchot
This is the last pseudo-driver conversion. The idea is to run bridge_input() *before* any ifih on an interface. Doing so allow us to remove the hack between vlan(4) and bridge(4) and simplify the logic for stacked ifih. With that net/if_ethersubr.c is now free from #ifdef NPSEUDODRIVER. As