From ea124bf597a595173b9cb63b09724877bd46f68e Mon Sep 17 00:00:00 2001 From: Jeff Roberson Date: Thu, 31 Mar 2005 04:27:49 +0000 Subject: [PATCH] - LK_NOPAUSE is a nop now. Sponsored by: Isilon Systems, Inc. --- sys/fs/devfs/devfs_vfsops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/fs/devfs/devfs_vfsops.c b/sys/fs/devfs/devfs_vfsops.c index 37212953e5a..b93f123f39a 100644 --- a/sys/fs/devfs/devfs_vfsops.c +++ b/sys/fs/devfs/devfs_vfsops.c @@ -76,7 +76,7 @@ devfs_mount(struct mount *mp, struct thread *td) MALLOC(fmp->dm_dirent, struct devfs_dirent **, sizeof(struct devfs_dirent *) * NDEVFSINO, M_DEVFS, M_WAITOK | M_ZERO); - lockinit(&fmp->dm_lock, PVFS, "devfs", 0, LK_NOPAUSE); + lockinit(&fmp->dm_lock, PVFS, "devfs", 0, 0); mp->mnt_flag |= MNT_LOCAL; #ifdef MAC