Source-Changes-HG archive

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

[src-draft/trunk]: src/sys/dev/usb Use IFQ_SET_MAXLEN



details:   https://anonhg.NetBSD.org/src-all/rev/a170b3c400ca
branches:  trunk
changeset: 371695:a170b3c400ca
user:      Martin Husemann <martin%NetBSD.org@localhost>
date:      Tue Sep 20 18:47:07 2022 +0200

description:
Use IFQ_SET_MAXLEN

diffstat:

 sys/dev/usb/usbwifi.c |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r d290607d0af6 -r a170b3c400ca sys/dev/usb/usbwifi.c
--- a/sys/dev/usb/usbwifi.c     Tue Sep 20 18:46:16 2022 +0200
+++ b/sys/dev/usb/usbwifi.c     Tue Sep 20 18:47:07 2022 +0200
@@ -1207,7 +1207,7 @@
         * quality of service to a pipe index.
         */
        for (int i = 0; i < uw->uw_txpipes; i++) {
-               uwp->uwp_sendq[i].ifq_maxlen = ifqmaxlen;
+               IFQ_SET_MAXLEN(&uwp->uwp_sendq[i], IFQ_MAXLEN);
                IFQ_LOCK_INIT(&uwp->uwp_sendq[i]);
        }
 



Home | Main Index | Thread Index | Old Index