Subject: Re: Crash with IPF and pppoe interfaces
To: Christian Hattemer <c.hattemer@arcor.de>
From: Martin Husemann <martin@duskware.de>
List: current-users
Date: 07/12/2006 11:40:55
On Wed, Jul 12, 2006 at 11:22:29AM +0200, Christian Hattemer wrote:
> I've encountered this probllem with yesterday's -current: It will crash when
> creating a pppoe interface (ifconfig pppoe0 create) while IPF is enabled.

Could you try to move the if_attach() call one line further down
(in sys/net/if_pppoe.c, around line 293), so that it reads:

        sppp_attach(&sc->sc_sppp.pp_if);
        if_attach(&sc->sc_sppp.pp_if);

Thanks,

Martin