diff options
author | 2001-07-05 07:31:52 +0000 | |
---|---|---|
committer | 2001-07-05 07:31:52 +0000 | |
commit | 19e25d8c48e0bd20eee65516a5c396e8df059b76 (patch) | |
tree | 487f0f0d36fd299cb8823ffe49f3e33d63ddf07f | |
parent | p_thread is no longer needed. (diff) | |
download | wireguard-openbsd-19e25d8c48e0bd20eee65516a5c396e8df059b76.tar.xz wireguard-openbsd-19e25d8c48e0bd20eee65516a5c396e8df059b76.zip |
v_vmdata is no longer needed.
-rw-r--r-- | sys/sys/vnode.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/sys/vnode.h b/sys/sys/vnode.h index 5153a37cc2a..17dabf6a289 100644 --- a/sys/sys/vnode.h +++ b/sys/sys/vnode.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vnode.h,v 1.35 2001/06/27 04:51:49 art Exp $ */ +/* $OpenBSD: vnode.h,v 1.36 2001/07/05 07:31:52 art Exp $ */ /* $NetBSD: vnode.h,v 1.38 1996/02/29 20:59:05 cgd Exp $ */ /* @@ -108,7 +108,6 @@ struct vnode { union { struct mount *vu_mountedhere;/* ptr to mounted vfs (VDIR) */ struct socket *vu_socket; /* unix ipc (VSOCK) */ - caddr_t vu_vmdata; /* private data for vm (VREG) */ struct specinfo *vu_specinfo; /* device (VCHR, VBLK) */ struct fifoinfo *vu_fifoinfo; /* fifo (VFIFO) */ } v_un; @@ -124,7 +123,6 @@ struct vnode { }; #define v_mountedhere v_un.vu_mountedhere #define v_socket v_un.vu_socket -#define v_vmdata v_un.vu_vmdata #define v_specinfo v_un.vu_specinfo #define v_fifoinfo v_un.vu_fifoinfo |