svn commit: r257124 - stable/9/sys/fs/devfs

Konstantin Belousov kib at FreeBSD.org
Fri Oct 25 16:49:33 UTC 2013


Author: kib
Date: Fri Oct 25 16:49:32 2013
New Revision: 257124
URL: http://svnweb.freebsd.org/changeset/base/257124

Log:
  MFC r256501:
  Remove two instances of ARGSUSED comment, and wrap lines nearby the
  code that is to be changed.

Modified:
  stable/9/sys/fs/devfs/devfs_vnops.c
Directory Properties:
  stable/9/sys/   (props changed)
  stable/9/sys/fs/   (props changed)

Modified: stable/9/sys/fs/devfs/devfs_vnops.c
==============================================================================
--- stable/9/sys/fs/devfs/devfs_vnops.c	Fri Oct 25 16:36:16 2013	(r257123)
+++ stable/9/sys/fs/devfs/devfs_vnops.c	Fri Oct 25 16:49:32 2013	(r257124)
@@ -1168,9 +1168,9 @@ devfs_print(struct vop_print_args *ap)
 	return (0);
 }
 
-/* ARGSUSED */
 static int
-devfs_read_f(struct file *fp, struct uio *uio, struct ucred *cred, int flags, struct thread *td)
+devfs_read_f(struct file *fp, struct uio *uio, struct ucred *cred,
+    int flags, struct thread *td)
 {
 	struct cdev *dev;
 	int ioflag, error, ref;
@@ -1643,9 +1643,9 @@ devfs_truncate_f(struct file *fp, off_t 
 	return (vnops.fo_truncate(fp, length, cred, td));
 }
 
-/* ARGSUSED */
 static int
-devfs_write_f(struct file *fp, struct uio *uio, struct ucred *cred, int flags, struct thread *td)
+devfs_write_f(struct file *fp, struct uio *uio, struct ucred *cred,
+    int flags, struct thread *td)
 {
 	struct cdev *dev;
 	int error, ioflag, ref;


More information about the svn-src-stable-9 mailing list