aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/vnode.h
diff options
context:
space:
mode:
authorMateusz Guzik <mjg@FreeBSD.org>2020-01-07 04:29:34 +0000
committerMateusz Guzik <mjg@FreeBSD.org>2020-01-07 04:29:34 +0000
commit478368ca410fbfe4ec98e187cae6317bf3d29498 (patch)
tree3211381d0e9070633ca2872e6323831d2d88bf63 /sys/sys/vnode.h
parenta91190c63e69baf9e5bfaae3040e1864a0195fac (diff)
downloadsrc-478368ca410fbfe4ec98e187cae6317bf3d29498.tar.gz
src-478368ca410fbfe4ec98e187cae6317bf3d29498.zip
vfs: eliminate v_tag from struct vnode
There was only one consumer and it was using it incorrectly. It is given an equivalent hack. Reviewed by: jeff Differential Revision: https://reviews.freebsd.org/D23037
Notes
Notes: svn path=/head/; revision=356432
Diffstat (limited to 'sys/sys/vnode.h')
-rw-r--r--sys/sys/vnode.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/sys/vnode.h b/sys/sys/vnode.h
index 06810eb9a9cd..97a04c3dd088 100644
--- a/sys/sys/vnode.h
+++ b/sys/sys/vnode.h
@@ -174,7 +174,6 @@ struct vnode {
int v_writecount; /* I ref count of writers or
(negative) text users */
u_int v_hash;
- const char *v_tag; /* u type of underlying data */
};
#endif /* defined(_KERNEL) || defined(_KVM_VNODE) */