From owner-cvs-src@FreeBSD.ORG Fri Jan 2 18:25:22 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D87416A4CE; Fri, 2 Jan 2004 18:25:22 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 73EE443D45; Fri, 2 Jan 2004 18:25:21 -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 i032PL0B073609; Fri, 2 Jan 2004 18:25:21 -0800 (PST) (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i032PLij073608; Fri, 2 Jan 2004 18:25:21 -0800 (PST) (envelope-from wpaul) Message-Id: <200401030225.i032PLij073608@repoman.freebsd.org> From: Bill Paul Date: Fri, 2 Jan 2004 18:25:21 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/ndiscvt inf.c src/sys/compat/ndis subr_hal.c subr_ndis.c subr_ntoskrnl.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Jan 2004 02:25:22 -0000 wpaul 2004/01/02 18:25:21 PST FreeBSD src repository Modified files: usr.sbin/ndiscvt inf.c sys/compat/ndis subr_hal.c subr_ndis.c subr_ntoskrnl.c Log: Tweak ndiscvt to support yet another flavor of .INF files (look for the NTx86 section decoration). subr_ndis.c: correct the behavior of ndis_query_resources(): if the caller doesn't provide enough space to return the resources, tell it how much it needs to provide and return an error. subr_hal.c & subr_ntoskrnl.c: implement/stub a bunch of new routines; ntoskrnl: KefAcquireSpinLockAtDpcLevel KefReleaseSpinLockFromDpcLevel MmMapLockedPages InterlockedDecrement InterlockedIncrement IoFreeMdl KeInitializeSpinLock HAL: KfReleaseSpinLock KeGetCurrentIrql KfAcquireSpinLock Lastly, correct spelling of "_aullshr" in the ntoskrnl functable. Revision Changes Path 1.2 +38 -1 src/sys/compat/ndis/subr_hal.c 1.20 +8 -3 src/sys/compat/ndis/subr_ndis.c 1.6 +110 -1 src/sys/compat/ndis/subr_ntoskrnl.c 1.9 +2 -0 src/usr.sbin/ndiscvt/inf.c