Date: Sun, 11 Jul 2021 12:01:00 GMT From: Hans Petter Selasky <hselasky@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: cf48d1f77126 - main - Clamp the XHCI minimum isochronous scheduling delay to the maximum value that will work under FreeBSD, if the value is too big. Message-ID: <202107111201.16BC10tG090589@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by hselasky: URL: https://cgit.FreeBSD.org/src/commit/?id=cf48d1f77126d8de4c03c4dd7c8502be2b5f1954 commit cf48d1f77126d8de4c03c4dd7c8502be2b5f1954 Author: Hans Petter Selasky <hselasky@FreeBSD.org> AuthorDate: 2021-07-11 11:56:52 +0000 Commit: Hans Petter Selasky <hselasky@FreeBSD.org> CommitDate: 2021-07-11 11:57:15 +0000 Clamp the XHCI minimum isochronous scheduling delay to the maximum value that will work under FreeBSD, if the value is too big. MFC after: 1 week Sponsored by: NVIDIA Networking --- sys/dev/usb/controller/xhci.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/dev/usb/controller/xhci.c b/sys/dev/usb/controller/xhci.c index 690091fcef2f..e9d15eabc20a 100644 --- a/sys/dev/usb/controller/xhci.c +++ b/sys/dev/usb/controller/xhci.c @@ -2110,6 +2110,7 @@ xhci_setup_generic_chain(struct usb_xfer *xfer) * or equal to 2 milliseconds, which is too * much. */ + y = 7; } else { /* * Subtract one millisecond, because the
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202107111201.16BC10tG090589>