diff options
-rw-r--r-- | sys/fs/udf/udf.h | 1 | ||||
-rw-r--r-- | sys/fs/udf/udf_vfsops.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/sys/fs/udf/udf.h b/sys/fs/udf/udf.h index 6cebc71..820a486 100644 --- a/sys/fs/udf/udf.h +++ b/sys/fs/udf/udf.h @@ -52,7 +52,6 @@ struct udf_mnt { uint32_t part_start; uint32_t part_len; uint64_t root_id; - struct vnode *root_vp; struct long_ad root_icb; LIST_HEAD(udf_hash_lh, udf_node) *hashtbl; u_long hashsz; diff --git a/sys/fs/udf/udf_vfsops.c b/sys/fs/udf/udf_vfsops.c index 519d41a..6733b78 100644 --- a/sys/fs/udf/udf_vfsops.c +++ b/sys/fs/udf/udf_vfsops.c @@ -550,7 +550,6 @@ udf_root(struct mount *mp, struct vnode **vpp, struct thread *td) vp = *vpp; vp->v_vflag |= VV_ROOT; - udfmp->root_vp = vp; return (0); } |