Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 15 Oct 2013 06:28:11 +0000 (UTC)
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r256501 - head/sys/fs/devfs
Message-ID:  <201310150628.r9F6SBcx052880@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kib
Date: Tue Oct 15 06:28:11 2013
New Revision: 256501
URL: http://svnweb.freebsd.org/changeset/base/256501

Log:
  Remove two instances of ARGSUSED comment, and wrap lines nearby the
  code that is to be changed.
  
  Sponsored by:	The FreeBSD Foundation
  MFC after:	1 week

Modified:
  head/sys/fs/devfs/devfs_vnops.c

Modified: head/sys/fs/devfs/devfs_vnops.c
==============================================================================
--- head/sys/fs/devfs/devfs_vnops.c	Tue Oct 15 06:23:54 2013	(r256500)
+++ head/sys/fs/devfs/devfs_vnops.c	Tue Oct 15 06:28:11 2013	(r256501)
@@ -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;



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