diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-10-04 20:58:11 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-10-04 20:58:11 +0000 |
commit | 89ce3f86851fb3521bef4bdcbe6c4dd4fc498df3 (patch) | |
tree | e497950b51e78b6c4e03e4114b59016dd5ad6835 | |
parent | 37701b3c1181144cb1f8e97bcdeeb275f43118fb (diff) |
shorter name for wait channel
-rw-r--r-- | sys/scsi/scsi_base.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/scsi/scsi_base.c b/sys/scsi/scsi_base.c index 6ebc782e345..fb3ffedd418 100644 --- a/sys/scsi/scsi_base.c +++ b/sys/scsi/scsi_base.c @@ -1,4 +1,4 @@ -/* $OpenBSD: scsi_base.c,v 1.88 2005/09/11 17:34:27 krw Exp $ */ +/* $OpenBSD: scsi_base.c,v 1.89 2005/10/04 20:58:10 deraadt Exp $ */ /* $NetBSD: scsi_base.c,v 1.43 1997/04/02 02:29:36 mycroft Exp $ */ /* @@ -766,7 +766,7 @@ retry: #endif s = splbio(); while ((xs->flags & ITSDONE) == 0) - tsleep(xs, PRIBIO + 1, "scsi_scsi_cmd", 0); + tsleep(xs, PRIBIO + 1, "scsicmd", 0); splx(s); /* FALLTHROUGH */ case COMPLETE: /* Polling command completed ok */ |