aboutsummaryrefslogtreecommitdiff
path: root/sys/fs
diff options
context:
space:
mode:
authorDavid Greenman <dg@FreeBSD.org>1995-08-11 11:31:18 +0000
committerDavid Greenman <dg@FreeBSD.org>1995-08-11 11:31:18 +0000
commit628641f8a647a1892765a8bade2d2a3f289290ea (patch)
treee6c236fd414cfab792be9688579fe9d84d9da396 /sys/fs
parent48b9e850794e3a39d78d45c10039aecb5e245b4c (diff)
downloadsrc-628641f8a647a1892765a8bade2d2a3f289290ea.tar.gz
src-628641f8a647a1892765a8bade2d2a3f289290ea.zip
Converted mountlist to a CIRCLEQ.
Partially obtained from: 4.4BSD-Lite2
Notes
Notes: svn path=/head/; revision=10027
Diffstat (limited to 'sys/fs')
-rw-r--r--sys/fs/cd9660/cd9660_vfsops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/fs/cd9660/cd9660_vfsops.c b/sys/fs/cd9660/cd9660_vfsops.c
index afa08f473811..e7f51ad4267d 100644
--- a/sys/fs/cd9660/cd9660_vfsops.c
+++ b/sys/fs/cd9660/cd9660_vfsops.c
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)cd9660_vfsops.c 8.3 (Berkeley) 1/31/94
- * $Id: cd9660_vfsops.c,v 1.12 1995/05/19 03:25:35 davidg Exp $
+ * $Id: cd9660_vfsops.c,v 1.13 1995/05/30 08:05:03 rgrimes Exp $
*/
#include <sys/param.h>
@@ -113,7 +113,7 @@ cd9660_mountroot()
free(mp, M_MOUNT);
return (error);
}
- TAILQ_INSERT_TAIL(&mountlist, mp, mnt_list);
+ CIRCLEQ_INSERT_TAIL(&mountlist, mp, mnt_list);
mp->mnt_flag |= MNT_ROOTFS;
mp->mnt_vnodecovered = NULLVP;
imp = VFSTOISOFS(mp);