From owner-cvs-src-old@FreeBSD.ORG Wed Mar 18 02:39:36 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E30E21065672 for ; Wed, 18 Mar 2009 02:39:36 +0000 (UTC) (envelope-from weongyo@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id CF16A8FC22 for ; Wed, 18 Mar 2009 02:39:36 +0000 (UTC) (envelope-from weongyo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n2I2daeV071934 for ; Wed, 18 Mar 2009 02:39:36 GMT (envelope-from weongyo@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n2I2daWS071933 for cvs-src-old@freebsd.org; Wed, 18 Mar 2009 02:39:36 GMT (envelope-from weongyo@repoman.freebsd.org) Message-Id: <200903180239.n2I2daWS071933@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to weongyo@repoman.freebsd.org using -f From: Weongyo Jeong Date: Wed, 18 Mar 2009 02:38:35 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/compat/ndis subr_usbd.c src/sys/dev/if_ndis if_ndis_usb.c if_ndisvar.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2009 02:39:37 -0000 weongyo 2009-03-18 02:38:35 UTC FreeBSD src repository Modified files: sys/compat/ndis subr_usbd.c sys/dev/if_ndis if_ndis_usb.c if_ndisvar.h Log: SVN rev 189950 on 2009-03-18 02:38:35Z by weongyo Some NDIS USB drivers try to call URB funcs like URB_FUNCTION_VENDOR_xxx or URB_FUNCTION_CLASS_xxx with HAL preemption lock that means it's non-sleepable during USB requests though usb2_do_request() requires a sleep so it needs to send queries to the default pipe without those interfaces to avoid sleep. Revision Changes Path 1.11 +278 -52 src/sys/compat/ndis/subr_usbd.c 1.14 +4 -0 src/sys/dev/if_ndis/if_ndis_usb.c 1.38 +4 -0 src/sys/dev/if_ndis/if_ndisvar.h