diff options
| author | David Greenman <dg@FreeBSD.org> | 1994-10-06 21:07:04 +0000 |
|---|---|---|
| committer | David Greenman <dg@FreeBSD.org> | 1994-10-06 21:07:04 +0000 |
| commit | 824789192c33bed366389c9cd3241fd54adca1f0 (patch) | |
| tree | f7a29b84bd4828e9297f7385d79ab2ce4fa9c50c /sys/gnu | |
| parent | f5729156af1dc98563172b387a2a162a6739ba71 (diff) | |
Notes
Diffstat (limited to 'sys/gnu')
| -rw-r--r-- | sys/gnu/ext2fs/ext2_ihash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/gnu/ext2fs/ext2_ihash.c b/sys/gnu/ext2fs/ext2_ihash.c index 53181c4a2caf..45c1466a06e7 100644 --- a/sys/gnu/ext2fs/ext2_ihash.c +++ b/sys/gnu/ext2fs/ext2_ihash.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ufs_ihash.c 8.4 (Berkeley) 12/30/93 - * $Id$ + * $Id: ufs_ihash.c,v 1.2 1994/08/02 07:54:55 davidg Exp $ */ #include <sys/param.h> @@ -100,7 +100,7 @@ ufs_ihashget(device, inum) if (inum == ip->i_number && device == ip->i_dev) { if (ip->i_flag & IN_LOCKED) { ip->i_flag |= IN_WANTED; - sleep(ip, PINOD); + (void) tsleep(ip, PINOD, "uihget", 0); break; } vp = ITOV(ip); |
