Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 18 Mar 2009 14:43:56 +0000 (UTC)
From:      "Bjoern A. Zeeb" <bz@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org
Subject:   svn commit: r189965 - in stable/7/sys: . contrib/pf dev/cxgb kern
Message-ID:  <200903181443.n2IEhud4029096@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bz
Date: Wed Mar 18 14:43:56 2009
New Revision: 189965
URL: http://svn.freebsd.org/changeset/base/189965

Log:
  MFC r185892:
    Style changes only. Put the return type on an extra line[1] and
    add an empty line at the beginning as we do not have any local
    variables.
  
  Submitted by: rwatson [1]

Modified:
  stable/7/sys/   (props changed)
  stable/7/sys/contrib/pf/   (props changed)
  stable/7/sys/dev/cxgb/   (props changed)
  stable/7/sys/kern/uipc_socket.c

Modified: stable/7/sys/kern/uipc_socket.c
==============================================================================
--- stable/7/sys/kern/uipc_socket.c	Wed Mar 18 14:36:49 2009	(r189964)
+++ stable/7/sys/kern/uipc_socket.c	Wed Mar 18 14:43:56 2009	(r189965)
@@ -240,8 +240,10 @@ SYSCTL_PROC(_kern_ipc, OID_AUTO, maxsock
  * Initialise maxsockets.  This SYSINIT must be run after
  * tunable_mbinit().
  */
-static void init_maxsockets(void *ignored)
+static void
+init_maxsockets(void *ignored)
 {
+
 	TUNABLE_INT_FETCH("kern.ipc.maxsockets", &maxsockets);
 	maxsockets = imax(maxsockets, imax(maxfiles, nmbclusters));
 }



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