Module Name: src Committed By: skrll Date: Tue Jan 22 06:40:49 UTC 2019
Modified Files: src/sys/dev/usb: umass.c Log Message: Update a comment To generate a diff of this commit: cvs rdiff -u -r1.166 -r1.167 src/sys/dev/usb/umass.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/dev/usb/umass.c diff -u src/sys/dev/usb/umass.c:1.166 src/sys/dev/usb/umass.c:1.167 --- src/sys/dev/usb/umass.c:1.166 Tue Nov 13 10:30:57 2018 +++ src/sys/dev/usb/umass.c Tue Jan 22 06:40:49 2019 @@ -1,4 +1,4 @@ -/* $NetBSD: umass.c,v 1.166 2018/11/13 10:30:57 mlelstv Exp $ */ +/* $NetBSD: umass.c,v 1.167 2019/01/22 06:40:49 skrll Exp $ */ /* * Copyright (c) 2003 The NetBSD Foundation, Inc. @@ -108,8 +108,8 @@ * umass_*_reset. * * The reason for doing this is a) CAM performs a lot better this way and b) it - * avoids using tsleep from interrupt context (for example after a failed - * transfer). + * avoids sleeping in interrupt context which is prohibited (for example after a + * failed transfer). */ /* @@ -124,7 +124,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: umass.c,v 1.166 2018/11/13 10:30:57 mlelstv Exp $"); +__KERNEL_RCSID(0, "$NetBSD: umass.c,v 1.167 2019/01/22 06:40:49 skrll Exp $"); #ifdef _KERNEL_OPT #include "opt_usb.h"