diff options
author | David Greenman <dg@FreeBSD.org> | 1995-08-11 11:31:18 +0000 |
---|---|---|
committer | David Greenman <dg@FreeBSD.org> | 1995-08-11 11:31:18 +0000 |
commit | 628641f8a647a1892765a8bade2d2a3f289290ea (patch) | |
tree | e6c236fd414cfab792be9688579fe9d84d9da396 /sys/fs | |
parent | 48b9e850794e3a39d78d45c10039aecb5e245b4c (diff) | |
download | src-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.c | 4 |
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); |