Date: Tue, 13 Aug 2013 13:40:32 +0000 (UTC) From: Gleb Smirnoff <glebius@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r254282 - head/sys/kern Message-ID: <201308131340.r7DDeWmv024323@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201308131340.r7DDeWmv024323>