From owner-cvs-src@FreeBSD.ORG Fri Aug 22 03:08:49 2008 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1BCE1106568C; Fri, 22 Aug 2008 03:08:49 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 076ED8FC21; Fri, 22 Aug 2008 03:08:49 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.2/8.14.2) with ESMTP id m7M38mIC067478; Fri, 22 Aug 2008 03:08:48 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.2/8.14.1/Submit) id m7M38mwE067477; Fri, 22 Aug 2008 03:08:48 GMT (envelope-from thompsa@repoman.freebsd.org) Message-Id: <200808220308.m7M38mwE067477@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to thompsa@repoman.freebsd.org using -f From: Andrew Thompson Date: Fri, 22 Aug 2008 03:08:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/sys/compat/ndis ntoskrnl_var.h subr_ndis.c subr_ntoskrnl.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 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: Fri, 22 Aug 2008 03:08:49 -0000 thompsa 2008-08-22 03:08:31 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/compat/ndis ntoskrnl_var.h subr_ndis.c subr_ntoskrnl.c Log: SVN rev 181989 on 2008-08-22 03:08:31Z by thompsa MFC r174150, r174240, r179009, r179720 Sync sys/compat/ndis to HEAD. - Correct the calculation for the number of 100ns intervals since January 1, 1601. The 1601 - 1970 period was in seconds rather than 100ns units. - Remove duplication by having NdisGetCurrentSystemTime call ntoskrnl_time. - Implement functions required by some ndis drivers. - Fix a panic when it occurred during initializing the ndis driver because it try to read network address through ifnet structure which is NULL until the ndis driver's initialization is finished. - fix a page fault that it occurred during ifp is NULL. This bug happens when NDIS driver's initialization is failed and NDIS driver's trying to call NdisWriteErrorLogEntry(). Revision Changes Path 1.43.2.1 +1 -0 src/sys/compat/ndis/ntoskrnl_var.h 1.108.2.1 +17 -12 src/sys/compat/ndis/subr_ndis.c 1.90.2.4 +64 -3 src/sys/compat/ndis/subr_ntoskrnl.c