svn commit: r209543 - head/sys/kern

Pawel Jakub Dawidek pjd at FreeBSD.org
Sat Jun 26 21:44:45 UTC 2010


Author: pjd
Date: Sat Jun 26 21:44:45 2010
New Revision: 209543
URL: http://svn.freebsd.org/changeset/base/209543

Log:
  Correct arguments order.

Modified:
  head/sys/kern/vfs_vnops.c

Modified: head/sys/kern/vfs_vnops.c
==============================================================================
--- head/sys/kern/vfs_vnops.c	Sat Jun 26 21:44:05 2010	(r209542)
+++ head/sys/kern/vfs_vnops.c	Sat Jun 26 21:44:45 2010	(r209543)
@@ -506,8 +506,8 @@ vn_read(fp, uio, active_cred, flags, td)
 	struct file *fp;
 	struct uio *uio;
 	struct ucred *active_cred;
-	struct thread *td;
 	int flags;
+	struct thread *td;
 {
 	struct vnode *vp;
 	int error, ioflag;
@@ -572,8 +572,8 @@ vn_write(fp, uio, active_cred, flags, td
 	struct file *fp;
 	struct uio *uio;
 	struct ucred *active_cred;
-	struct thread *td;
 	int flags;
+	struct thread *td;
 {
 	struct vnode *vp;
 	struct mount *mp;


More information about the svn-src-head mailing list