diff options
| author | plunky <plunky@NetBSD.org> | 2007-11-09 21:00:05 +0000 |
|---|---|---|
| committer | plunky <plunky@NetBSD.org> | 2007-11-09 21:00:05 +0000 |
| commit | 985d6fdf0befcd1ec86ce8f5090d4f50e7579dfd (patch) | |
| tree | 7f1d914e2d367ab0ce357745d7726a8d41d64e11 /sys/netiso/tp_input.c | |
| parent | f9f695f53537a6e59cf133f7694f36923794d03e (diff) | |
Do not use insque/remque from libkern; they are about to be removed.
As an interim measure while the netiso code is being converted to
use queue(3) macros, define and use our own private equivalent
functions iso_insque/iso_remque.
Diffstat (limited to 'sys/netiso/tp_input.c')
| -rw-r--r-- | sys/netiso/tp_input.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netiso/tp_input.c b/sys/netiso/tp_input.c index ad24e04051f..485dca0885a 100644 --- a/sys/netiso/tp_input.c +++ b/sys/netiso/tp_input.c @@ -1,4 +1,4 @@ -/* $NetBSD: tp_input.c,v 1.28 2007/03/04 06:03:33 christos Exp $ */ +/* $NetBSD: tp_input.c,v 1.29 2007/11/09 21:00:06 plunky Exp $ */ /*- * Copyright (c) 1991, 1993 @@ -79,7 +79,7 @@ SOFTWARE. */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: tp_input.c,v 1.28 2007/03/04 06:03:33 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: tp_input.c,v 1.29 2007/11/09 21:00:06 plunky Exp $"); #include "opt_iso.h" @@ -899,7 +899,7 @@ again: goto respond; } tpcb = sototpcb(so); - insque(tpcb, parent_tpcb); + iso_insque(tpcb, parent_tpcb); /* * Stash the addresses in the net level pcb |
