diff options
Diffstat (limited to 'sys/fs/devfs/devfs_vfsops.c')
-rw-r--r-- | sys/fs/devfs/devfs_vfsops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/fs/devfs/devfs_vfsops.c b/sys/fs/devfs/devfs_vfsops.c index 00ad137..319a0b7 100644 --- a/sys/fs/devfs/devfs_vfsops.c +++ b/sys/fs/devfs/devfs_vfsops.c @@ -157,7 +157,7 @@ devfs_root(mp, vpp) error = devfs_allocv(dmp->dm_rootdir, mp, &vp, td); if (error) return (error); - vp->v_flag |= VROOT; + vp->v_vflag |= VV_ROOT; *vpp = vp; return (0); } |