diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2001-03-22 00:20:55 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2001-03-22 00:20:55 +0000 |
commit | c2fd3de352796f9fa9afe411152622c250763574 (patch) | |
tree | 74196e257f0068cff671a5850240164b86747e84 | |
parent | 88e82e5757de59729f6c52b467a8575e69a41a4c (diff) |
Sigh. PR_WAITOK, not M_WAITOK
-rw-r--r-- | sys/ufs/ffs/ffs_vfsops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ufs/ffs/ffs_vfsops.c b/sys/ufs/ffs/ffs_vfsops.c index 503491f0696..5535fb7448f 100644 --- a/sys/ufs/ffs/ffs_vfsops.c +++ b/sys/ufs/ffs/ffs_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ffs_vfsops.c,v 1.33 2001/03/22 00:11:36 art Exp $ */ +/* $OpenBSD: ffs_vfsops.c,v 1.34 2001/03/22 00:20:54 art Exp $ */ /* $NetBSD: ffs_vfsops.c,v 1.19 1996/02/09 22:22:26 christos Exp $ */ /* @@ -988,7 +988,7 @@ retry: vp->v_flag |= VLOCKSWORK; #endif /* XXX - we use the same pool for ffs and mfs */ - ip = pool_get(&ffs_ino_pool, M_WAITOK); + ip = pool_get(&ffs_ino_pool, PR_WAITOK); bzero((caddr_t)ip, sizeof(struct inode)); lockinit(&ip->i_lock, PINOD, "inode", 0, 0); vp->v_data = ip; |