svn commit: r284500 - stable/10/sys/dev/usb
Hans Petter Selasky
hselasky at FreeBSD.org
Wed Jun 17 07:36:01 UTC 2015
Author: hselasky
Date: Wed Jun 17 07:36:00 2015
New Revision: 284500
URL: https://svnweb.freebsd.org/changeset/base/284500
Log:
MFC r284011:
Don't wait forever for USB data to be flushed.
Modified:
stable/10/sys/dev/usb/usb_dev.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/sys/dev/usb/usb_dev.c
==============================================================================
--- stable/10/sys/dev/usb/usb_dev.c Wed Jun 17 07:32:28 2015 (r284499)
+++ stable/10/sys/dev/usb/usb_dev.c Wed Jun 17 07:36:00 2015 (r284500)
@@ -831,7 +831,8 @@ usb_fifo_close(struct usb_fifo *f, int f
(!f->flag_iserror)) {
/* wait until all data has been written */
f->flag_sleeping = 1;
- err = cv_wait_sig(&f->cv_io, f->priv_mtx);
+ err = cv_timedwait_sig(&f->cv_io, f->priv_mtx,
+ USB_MS_TO_TICKS(USB_DEFAULT_TIMEOUT));
if (err) {
DPRINTF("signal received\n");
break;
More information about the svn-src-all
mailing list