Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 13 May 2011 14:29:28 +0000 (UTC)
From:      Matthew D Fleming <mdf@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r221836 - head/sys/kern
Message-ID:  <201105131429.p4DETShX073383@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mdf
Date: Fri May 13 14:29:28 2011
New Revision: 221836
URL: http://svn.freebsd.org/changeset/base/221836

Log:
  Correctly use INOUT for the offset/len parameters to vop_allocate.  As
  far as I can tell this is for documentation only at the moment.

Modified:
  head/sys/kern/vnode_if.src

Modified: head/sys/kern/vnode_if.src
==============================================================================
--- head/sys/kern/vnode_if.src	Fri May 13 12:39:37 2011	(r221835)
+++ head/sys/kern/vnode_if.src	Fri May 13 14:29:28 2011	(r221836)
@@ -625,6 +625,6 @@ vop_vptocnp {
 
 vop_allocate {
 	IN struct vnode *vp;
-	IN off_t *offset;
-	IN off_t *len;
+	INOUT off_t *offset;
+	INOUT off_t *len;
 };



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201105131429.p4DETShX073383>