Date: Sun, 23 Mar 2003 20:18:03 +0300 (MSK) From: Maxim Konovalov <maxim@macomnet.ru> To: Tod Oace <tod@quay.com> Cc: freebsd-current@FreeBSD.ORG, jlemon@FreeBSD.ORG Subject: Re: Freeze from pppd Message-ID: <20030323201731.X81027@news1.macomnet.ru> In-Reply-To: <6D12636D-5A46-11D7-A07C-00039388DE60@quay.com> References: <6D12636D-5A46-11D7-A07C-00039388DE60@quay.com>
next in thread | previous in thread | raw e-mail | index | archive | help
Try a next patch. Index: if_ppp.c =================================================================== RCS file: /home/ncvs/src/sys/net/if_ppp.c,v retrieving revision 1.90 diff -u -r1.90 if_ppp.c --- if_ppp.c 4 Mar 2003 23:19:51 -0000 1.90 +++ if_ppp.c 23 Mar 2003 17:05:28 -0000 @@ -1571,7 +1571,7 @@ rv = IF_HANDOFF(&sc->sc_inq, m, NULL); else rv = netisr_queue(isr, m); - if (rv) { + if (!rv) { if (sc->sc_flags & SC_DEBUG) if_printf(ifp, "input queue full\n"); ifp->if_iqdrops++; %%% -- Maxim Konovalov, maxim@macomnet.ru, maxim@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20030323201731.X81027>