Date: Sun, 14 Dec 2003 14:47:01 -0800 (PST) From: Bill Paul <wpaul@FreeBSD.org> To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/if_ndis if_ndis.c Message-ID: <200312142247.hBEMl1u5086447@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
wpaul 2003/12/14 14:47:01 PST FreeBSD src repository Modified files: sys/dev/if_ndis if_ndis.c Log: Silence irritating watchdog timeout messages: if we call ndis_send_packets() but there's no link yet, we get an immediate callback to ndis_txeof(), which clears if_timer. But ndis_start() sets if_timer right after the call to ndis_send_packets(). Set if_timer before calling ndis_send_packets(). Also fix mutex locking to prevent ndis_txeof() from running in the middle of ndis_start(). Revision Changes Path 1.3 +10 -4 src/sys/dev/if_ndis/if_ndis.c
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200312142247.hBEMl1u5086447>