svn commit: r254282 - head/sys/kern

Gleb Smirnoff glebius at FreeBSD.org
Tue Aug 13 13:40:32 UTC 2013


Author: glebius
Date: Tue Aug 13 13:40:31 2013
New Revision: 254282
URL: http://svnweb.freebsd.org/changeset/base/254282

Log:
  - Minor style(9) fix.
  - Bring a comment up to date.

Modified:
  head/sys/kern/uipc_syscalls.c

Modified: head/sys/kern/uipc_syscalls.c
==============================================================================
--- head/sys/kern/uipc_syscalls.c	Tue Aug 13 13:14:13 2013	(r254281)
+++ head/sys/kern/uipc_syscalls.c	Tue Aug 13 13:40:31 2013	(r254282)
@@ -109,15 +109,17 @@ static int recvit(struct thread *td, int
 
 static int accept1(struct thread *td, int s, struct sockaddr *uname,
 		   socklen_t *anamelen, int flags);
-static int do_sendfile(struct thread *td, struct sendfile_args *uap, int compat);
+static int do_sendfile(struct thread *td, struct sendfile_args *uap,
+		   int compat);
 static int getsockname1(struct thread *td, struct getsockname_args *uap,
 			int compat);
 static int getpeername1(struct thread *td, struct getpeername_args *uap,
 			int compat);
 
 counter_u64_t sfstat[sizeof(struct sfstat) / sizeof(uint64_t)];
+
 /*
- * NSFBUFS-related variables and associated sysctls
+ * sendfile(2)-related variables and associated sysctls
  */
 int nsfbufs;
 int nsfbufspeak;


More information about the svn-src-head mailing list