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;
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"