diff options
author | Mateusz Guzik <mjg@FreeBSD.org> | 2019-11-30 16:40:16 +0000 |
---|---|---|
committer | Mateusz Guzik <mjg@FreeBSD.org> | 2019-11-30 16:40:16 +0000 |
commit | 89c4c2e53b5ea4c80e4f329b89a648080b76f950 (patch) | |
tree | 523a510207645f66f0b009d969cf0090398a195e /sys | |
parent | 23614c2b393427dc38615fe2ff9da18a701126c8 (diff) | |
download | src-test2-89c4c2e53b5ea4c80e4f329b89a648080b76f950.tar.gz src-test2-89c4c2e53b5ea4c80e4f329b89a648080b76f950.zip |
Notes
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/vnode.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/vnode.h b/sys/sys/vnode.h index 27dbcbc58b18..b9a8d5458a0c 100644 --- a/sys/sys/vnode.h +++ b/sys/sys/vnode.h @@ -103,7 +103,7 @@ struct vnode { * Fields which define the identity of the vnode. These fields are * owned by the filesystem (XXX: and vgone() ?) */ - const char *v_tag; /* u type of underlying data */ + enum vtype v_type; /* u vnode type */ struct vop_vector *v_op; /* u vnode operations vector */ void *v_data; /* u private data for fs */ @@ -173,7 +173,7 @@ struct vnode { int v_writecount; /* I ref count of writers or (negative) text users */ u_int v_hash; - enum vtype v_type; /* u vnode type */ + const char *v_tag; /* u type of underlying data */ }; #endif /* defined(_KERNEL) || defined(_KVM_VNODE) */ |