summaryrefslogtreecommitdiff
path: root/sys/ufs/ffs/ffs_vfsops.c
diff options
context:
space:
mode:
authorThordur I. Bjornsson <thib@cvs.openbsd.org>2008-07-09 09:30:52 +0000
committerThordur I. Bjornsson <thib@cvs.openbsd.org>2008-07-09 09:30:52 +0000
commitc752111265736a2050ce5613b4d6689f24cb41a5 (patch)
tree51f112ecc98011084293d2814af403a97872a99f /sys/ufs/ffs/ffs_vfsops.c
parent8ff3d429d38762cbcc8c3114cb6fe614006cce26 (diff)
Remove an XXX comment about using the same pool for mfs and ffs, since
mfs is using the ffs code and its the same object it would make no sense having two seperate pools... ok art@
Diffstat (limited to 'sys/ufs/ffs/ffs_vfsops.c')
-rw-r--r--sys/ufs/ffs/ffs_vfsops.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/ufs/ffs/ffs_vfsops.c b/sys/ufs/ffs/ffs_vfsops.c
index dd315612dae..2837b4a7e15 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.113 2008/03/16 19:42:57 otto Exp $ */
+/* $OpenBSD: ffs_vfsops.c,v 1.114 2008/07/09 09:30:51 thib Exp $ */
/* $NetBSD: ffs_vfsops.c,v 1.19 1996/02/09 22:22:26 christos Exp $ */
/*
@@ -1253,7 +1253,6 @@ retry:
#ifdef VFSDEBUG
vp->v_flag |= VLOCKSWORK;
#endif
- /* XXX - we use the same pool for ffs and mfs */
ip = pool_get(&ffs_ino_pool, PR_WAITOK);
bzero((caddr_t)ip, sizeof(struct inode));
lockinit(&ip->i_lock, PINOD, "inode", 0, 0);