From owner-cvs-all@FreeBSD.ORG Thu Dec 25 01:44:52 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 16D7816A4CE; Thu, 25 Dec 2003 01:44:52 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6027843D31; Thu, 25 Dec 2003 01:44:50 -0800 (PST) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id hBP9io0B038902; Thu, 25 Dec 2003 01:44:50 -0800 (PST) (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id hBP9ioNg038901; Thu, 25 Dec 2003 01:44:50 -0800 (PST) (envelope-from wpaul) Message-Id: <200312250944.hBP9ioNg038901@repoman.freebsd.org> From: Bill Paul Date: Thu, 25 Dec 2003 01:44:50 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/if_ndis if_ndis.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Dec 2003 09:44:52 -0000 wpaul 2003/12/25 01:44:50 PST FreeBSD src repository Modified files: sys/dev/if_ndis if_ndis.c Log: - In ndis_intr(), don't do any interrupt processing if the IFF_UP flag isn't set. - In ndis_attach(), halt the NIC before exiting the routine. Calling ndis_init() will bring it up again, and we don't want it running (and potentially generating interrupts) until we're ready to deal with it. Revision Changes Path 1.13 +6 -9 src/sys/dev/if_ndis/if_ndis.c