cvs commit: src/sys/dev/netif/iwi if_iwi.c
Andrew Atrens
atrens at nortelnetworks.com
Mon Mar 7 08:42:47 PST 2005
Date: Mon, 07 Mar 2005 11:45:02 -0500
References: <200503071013.j27ADM6c033509 at xxxxxxxxxxxxxxxxxxxxxxx>
Lines: 43
User-Agent: KNode/0.8.2
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7Bit
> joerg 2005/03/07 02:13:22 PST
>
> DragonFly src repository
>
> Modified files:
> sys/dev/netif/iwi if_iwi.c
> Log:
> Don't try to prepend to an ALTQ queue.
>
> Revision Changes Path
> 1.2 +2 -3 src/sys/dev/netif/iwi/if_iwi.c
>
>
> http://www.dragonflybsd.org/cvsweb/src/sys/dev/netif/iwi/if_iwi.c.diff?r1=1.1&r2=1.2&f=u
Thanks Joerg, :)
I wasn't sure about that. In general then we want to deprecate
the use of the IF_PREPEND macro ?
$ find . | xargs grep IF_PREPEND
This one's okay, but maybe there's another way to do the same thing
without prepending ? -
. /awi/awi.c: IF_PREPEND(&sc->sc_mgtq, m0);
These ones need to be re-worked too I guess in preparation for ALTQ -
. /de/if_de.c: IF_PREPEND(&sc->tulip_if.if_snd, m);
. /le/if_le.c: IF_PREPEND(&sc->le_if.if_snd, di->di_mbuf);
. /le/if_le.c: IF_PREPEND(&ifp->if_snd, m);
. /le/if_le.c: IF_PREPEND(&ifp->if_snd, m);
. /vr/if_vr.c: IF_PREPEND(&ifp->if_snd, m_head);
Andrew.
More information about the Commits
mailing list