summaryrefslogtreecommitdiff
path: root/sys/ufs/ffs
diff options
context:
space:
mode:
authorHakan Olsson <ho@cvs.openbsd.org>2001-05-15 23:44:42 +0000
committerHakan Olsson <ho@cvs.openbsd.org>2001-05-15 23:44:42 +0000
commitdbb447b2d976a09a9138adf15874bf3386e1f7bb (patch)
treed359488463ba4a54e9549086776e58eedac79fc9 /sys/ufs/ffs
parent735b546d74ffc0131474dcc586ca5253f34522ef (diff)
Correct memory type for free(). (art@ ok)
Diffstat (limited to 'sys/ufs/ffs')
-rw-r--r--sys/ufs/ffs/ffs_vfsops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ufs/ffs/ffs_vfsops.c b/sys/ufs/ffs/ffs_vfsops.c
index ff73d0590a4..6df1ee27efa 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.41 2001/04/22 21:33:46 gluk Exp $ */
+/* $OpenBSD: ffs_vfsops.c,v 1.42 2001/05/15 23:44:41 ho Exp $ */
/* $NetBSD: ffs_vfsops.c,v 1.19 1996/02/09 22:22:26 christos Exp $ */
/*
@@ -408,7 +408,7 @@ success:
fs->fs_clean = ronly &&
(fs->fs_flags & FS_UNCLEAN) == 0 ? 1 : 0;
if (ronly)
- free(fs->fs_contigdirs, M_WAITOK);
+ free(fs->fs_contigdirs, M_UFSMNT);
}
if (!ronly) {
if (mp->mnt_flag & MNT_SOFTDEP)