Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys s/PR_NOWAIT/PR_WAITOK/ in HCD allocx (allocate xfer) method



details:   https://anonhg.NetBSD.org/src/rev/0d72a308f8f8
branches:  trunk
changeset: 827898:0d72a308f8f8
user:      skrll <skrll%NetBSD.org@localhost>
date:      Fri Nov 17 08:22:02 2017 +0000

description:
s/PR_NOWAIT/PR_WAITOK/ in HCD allocx (allocate xfer) method

diffstat:

 sys/dev/usb/ehci.c           |  6 +++---
 sys/dev/usb/motg.c           |  6 +++---
 sys/dev/usb/ohci.c           |  6 +++---
 sys/dev/usb/uhci.c           |  6 +++---
 sys/dev/usb/xhci.c           |  6 +++---
 sys/external/bsd/dwc2/dwc2.c |  6 +++---
 6 files changed, 18 insertions(+), 18 deletions(-)

diffs (162 lines):

diff -r 50b1e3be8960 -r 0d72a308f8f8 sys/dev/usb/ehci.c
--- a/sys/dev/usb/ehci.c        Fri Nov 17 07:52:07 2017 +0000
+++ b/sys/dev/usb/ehci.c        Fri Nov 17 08:22:02 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ehci.c,v 1.256 2017/10/28 00:37:12 pgoyette Exp $ */
+/*     $NetBSD: ehci.c,v 1.257 2017/11/17 08:22:02 skrll Exp $ */
 
 /*
  * Copyright (c) 2004-2012 The NetBSD Foundation, Inc.
@@ -53,7 +53,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ehci.c,v 1.256 2017/10/28 00:37:12 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ehci.c,v 1.257 2017/11/17 08:22:02 skrll Exp $");
 
 #include "ohci.h"
 #include "uhci.h"
@@ -1516,7 +1516,7 @@
        struct ehci_softc *sc = EHCI_BUS2SC(bus);
        struct usbd_xfer *xfer;
 
-       xfer = pool_cache_get(sc->sc_xferpool, PR_NOWAIT);
+       xfer = pool_cache_get(sc->sc_xferpool, PR_WAITOK);
        if (xfer != NULL) {
                memset(xfer, 0, sizeof(struct ehci_xfer));
 #ifdef DIAGNOSTIC
diff -r 50b1e3be8960 -r 0d72a308f8f8 sys/dev/usb/motg.c
--- a/sys/dev/usb/motg.c        Fri Nov 17 07:52:07 2017 +0000
+++ b/sys/dev/usb/motg.c        Fri Nov 17 08:22:02 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: motg.c,v 1.18 2017/10/28 00:37:12 pgoyette Exp $       */
+/*     $NetBSD: motg.c,v 1.19 2017/11/17 08:22:02 skrll Exp $  */
 
 /*
  * Copyright (c) 1998, 2004, 2011, 2012, 2014 The NetBSD Foundation, Inc.
@@ -40,7 +40,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: motg.c,v 1.18 2017/10/28 00:37:12 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: motg.c,v 1.19 2017/11/17 08:22:02 skrll Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_motg.h"
@@ -752,7 +752,7 @@
        struct motg_softc *sc = MOTG_BUS2SC(bus);
        struct usbd_xfer *xfer;
 
-       xfer = pool_cache_get(sc->sc_xferpool, PR_NOWAIT);
+       xfer = pool_cache_get(sc->sc_xferpool, PR_WAITOK);
        if (xfer != NULL) {
                memset(xfer, 0, sizeof(struct motg_xfer));
 #ifdef DIAGNOSTIC
diff -r 50b1e3be8960 -r 0d72a308f8f8 sys/dev/usb/ohci.c
--- a/sys/dev/usb/ohci.c        Fri Nov 17 07:52:07 2017 +0000
+++ b/sys/dev/usb/ohci.c        Fri Nov 17 08:22:02 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ohci.c,v 1.275 2017/10/28 07:36:02 skrll Exp $ */
+/*     $NetBSD: ohci.c,v 1.276 2017/11/17 08:22:02 skrll Exp $ */
 
 /*
  * Copyright (c) 1998, 2004, 2005, 2012 The NetBSD Foundation, Inc.
@@ -41,7 +41,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ohci.c,v 1.275 2017/10/28 07:36:02 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ohci.c,v 1.276 2017/11/17 08:22:02 skrll Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_usb.h"
@@ -1069,7 +1069,7 @@
        ohci_softc_t *sc = OHCI_BUS2SC(bus);
        struct usbd_xfer *xfer;
 
-       xfer = pool_cache_get(sc->sc_xferpool, PR_NOWAIT);
+       xfer = pool_cache_get(sc->sc_xferpool, PR_WAITOK);
        if (xfer != NULL) {
                memset(xfer, 0, sizeof(struct ohci_xfer));
 #ifdef DIAGNOSTIC
diff -r 50b1e3be8960 -r 0d72a308f8f8 sys/dev/usb/uhci.c
--- a/sys/dev/usb/uhci.c        Fri Nov 17 07:52:07 2017 +0000
+++ b/sys/dev/usb/uhci.c        Fri Nov 17 08:22:02 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: uhci.c,v 1.278 2017/11/16 21:54:51 christos Exp $      */
+/*     $NetBSD: uhci.c,v 1.279 2017/11/17 08:22:02 skrll Exp $ */
 
 /*
  * Copyright (c) 1998, 2004, 2011, 2012 The NetBSD Foundation, Inc.
@@ -42,7 +42,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uhci.c,v 1.278 2017/11/16 21:54:51 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uhci.c,v 1.279 2017/11/17 08:22:02 skrll Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_usb.h"
@@ -657,7 +657,7 @@
        struct uhci_softc *sc = UHCI_BUS2SC(bus);
        struct usbd_xfer *xfer;
 
-       xfer = pool_cache_get(sc->sc_xferpool, PR_NOWAIT);
+       xfer = pool_cache_get(sc->sc_xferpool, PR_WAITOK);
        if (xfer != NULL) {
                memset(xfer, 0, sizeof(struct uhci_xfer));
 
diff -r 50b1e3be8960 -r 0d72a308f8f8 sys/dev/usb/xhci.c
--- a/sys/dev/usb/xhci.c        Fri Nov 17 07:52:07 2017 +0000
+++ b/sys/dev/usb/xhci.c        Fri Nov 17 08:22:02 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: xhci.c,v 1.76 2017/11/09 10:03:46 msaitoh Exp $        */
+/*     $NetBSD: xhci.c,v 1.77 2017/11/17 08:22:02 skrll Exp $  */
 
 /*
  * Copyright (c) 2013 Jonathan A. Kollasch
@@ -34,7 +34,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: xhci.c,v 1.76 2017/11/09 10:03:46 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: xhci.c,v 1.77 2017/11/17 08:22:02 skrll Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_usb.h"
@@ -2189,7 +2189,7 @@
 
        XHCIHIST_FUNC(); XHCIHIST_CALLED();
 
-       xfer = pool_cache_get(sc->sc_xferpool, PR_NOWAIT);
+       xfer = pool_cache_get(sc->sc_xferpool, PR_WAITOK);
        if (xfer != NULL) {
                memset(xfer, 0, sizeof(struct xhci_xfer));
 #ifdef DIAGNOSTIC
diff -r 50b1e3be8960 -r 0d72a308f8f8 sys/external/bsd/dwc2/dwc2.c
--- a/sys/external/bsd/dwc2/dwc2.c      Fri Nov 17 07:52:07 2017 +0000
+++ b/sys/external/bsd/dwc2/dwc2.c      Fri Nov 17 08:22:02 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: dwc2.c,v 1.46 2017/06/01 02:45:12 chs Exp $    */
+/*     $NetBSD: dwc2.c,v 1.47 2017/11/17 08:22:02 skrll Exp $  */
 
 /*-
  * Copyright (c) 2013 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: dwc2.c,v 1.46 2017/06/01 02:45:12 chs Exp $");
+__KERNEL_RCSID(0, "$NetBSD: dwc2.c,v 1.47 2017/11/17 08:22:02 skrll Exp $");
 
 #include "opt_usb.h"
 
@@ -207,7 +207,7 @@
        DPRINTFN(10, "\n");
 
        DWC2_EVCNT_INCR(sc->sc_ev_xferpoolget);
-       dxfer = pool_cache_get(sc->sc_xferpool, PR_NOWAIT);
+       dxfer = pool_cache_get(sc->sc_xferpool, PR_WAITOK);
        if (dxfer != NULL) {
                memset(dxfer, 0, sizeof(*dxfer));
 



Home | Main Index | Thread Index | Old Index