diff options
author | dg <dg@FreeBSD.org> | 1995-08-11 11:31:18 +0000 |
---|---|---|
committer | dg <dg@FreeBSD.org> | 1995-08-11 11:31:18 +0000 |
commit | 5b4b2700156e17277dc3f54ff56323643525c977 (patch) | |
tree | e6c236fd414cfab792be9688579fe9d84d9da396 /sys/fs | |
parent | 9463cb81fa4bab9dd21af4e0815371adad5af21e (diff) | |
download | FreeBSD-src-5b4b2700156e17277dc3f54ff56323643525c977.zip FreeBSD-src-5b4b2700156e17277dc3f54ff56323643525c977.tar.gz |
Converted mountlist to a CIRCLEQ.
Partially obtained from: 4.4BSD-Lite2
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 afa08f4..e7f51ad 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); |