svn commit: r221836 - head/sys/kern

Matthew D Fleming mdf at FreeBSD.org
Fri May 13 14:29:28 UTC 2011


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;
 };


More information about the svn-src-all mailing list