summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--share/man/man9/getnewvnode.96
-rw-r--r--share/man/man9/vnode.96
2 files changed, 6 insertions, 6 deletions
diff --git a/share/man/man9/getnewvnode.9 b/share/man/man9/getnewvnode.9
index cc164ef0d4d..1b2949089f6 100644
--- a/share/man/man9/getnewvnode.9
+++ b/share/man/man9/getnewvnode.9
@@ -1,4 +1,4 @@
-.\" $OpenBSD: getnewvnode.9,v 1.9 2013/08/14 06:32:32 jmc Exp $
+.\" $OpenBSD: getnewvnode.9,v 1.10 2020/01/20 23:23:04 claudio Exp $
.\"
.\" Copyright (C) 2001 Chad David <davidc@acns.ab.ca>. All rights reserved.
.\"
@@ -27,7 +27,7 @@
.\"
.\" $FreeBSD: src/share/man/man9/getnewvnode.9,v 1.1 2001/12/02 02:13:35 alfred Exp $
.\"
-.Dd $Mdocdate: August 14 2013 $
+.Dd $Mdocdate: January 20 2020 $
.Dt GETNEWVNODE 9
.Os
.Sh NAME
@@ -41,7 +41,7 @@
.Fo getnewvnode
.Fa "enum vtagtype tag"
.Fa "struct mount *mp"
-.Fa "struct vops *vops"
+.Fa "const struct vops *vops"
.Fa "struct vnode **vpp"
.Fc
.Sh DESCRIPTION
diff --git a/share/man/man9/vnode.9 b/share/man/man9/vnode.9
index 306bfec708e..0b545ac1839 100644
--- a/share/man/man9/vnode.9
+++ b/share/man/man9/vnode.9
@@ -1,4 +1,4 @@
-.\" $OpenBSD: vnode.9,v 1.32 2019/12/16 10:28:53 mpi Exp $
+.\" $OpenBSD: vnode.9,v 1.33 2020/01/20 23:23:04 claudio Exp $
.\"
.\" Copyright (c) 2001 Constantine Sapuntzakis
.\" All rights reserved.
@@ -23,7 +23,7 @@
.\" OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
.\" ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.\"
-.Dd $Mdocdate: December 16 2019 $
+.Dd $Mdocdate: January 20 2020 $
.Dt VNODE 9
.Os
.Sh NAME
@@ -67,7 +67,7 @@ The definition of a vnode is as follows:
.Bd -literal
struct vnode {
struct uvm_vnode *v_uvm; /* uvm data */
- struct vops *v_op; /* vnode operations vector */
+ const struct vops *v_op; /* vnode operations vector */
enum vtype v_type; /* vnode type */
enum vtagtype v_tag; /* type of underlying data */
u_int v_flag; /* vnode flags (see below) */