diff options
author | attilio <attilio@FreeBSD.org> | 2012-11-09 18:02:25 +0000 |
---|---|---|
committer | attilio <attilio@FreeBSD.org> | 2012-11-09 18:02:25 +0000 |
commit | d5d551ec46edfdd7b35884740863514cf342c207 (patch) | |
tree | 85566631342fad6e72bb3ce702047490a06985fb /sys/fs/cd9660 | |
parent | 6cb17a3f471ee1a94b7f2499509c2d5bd597f04e (diff) | |
download | FreeBSD-src-d5d551ec46edfdd7b35884740863514cf342c207.zip FreeBSD-src-d5d551ec46edfdd7b35884740863514cf342c207.tar.gz |
Complete MPSAFE VFS interface and remove MNTK_MPSAFE flag.
Porters should refer to __FreeBSD_version 1000021 for this change as
it may have happened at the same timeframe.
Diffstat (limited to 'sys/fs/cd9660')
-rw-r--r-- | sys/fs/cd9660/cd9660_vfsops.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/fs/cd9660/cd9660_vfsops.c b/sys/fs/cd9660/cd9660_vfsops.c index 7780b04..1865202 100644 --- a/sys/fs/cd9660/cd9660_vfsops.c +++ b/sys/fs/cd9660/cd9660_vfsops.c @@ -376,8 +376,7 @@ iso_mountfs(devvp, mp) mp->mnt_maxsymlinklen = 0; MNT_ILOCK(mp); mp->mnt_flag |= MNT_LOCAL; - mp->mnt_kern_flag |= MNTK_MPSAFE | MNTK_LOOKUP_SHARED | - MNTK_EXTENDED_SHARED; + mp->mnt_kern_flag |= MNTK_LOOKUP_SHARED | MNTK_EXTENDED_SHARED; MNT_IUNLOCK(mp); isomp->im_mountp = mp; isomp->im_dev = dev; |