From owner-svn-src-head@FreeBSD.ORG Mon Feb 17 12:02:45 2014 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5744D21A; Mon, 17 Feb 2014 12:02:45 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 42A8918ED; Mon, 17 Feb 2014 12:02:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1HC2jLq025401; Mon, 17 Feb 2014 12:02:45 GMT (envelope-from glebius@svn.freebsd.org) Received: (from glebius@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1HC2jg9025400; Mon, 17 Feb 2014 12:02:45 GMT (envelope-from glebius@svn.freebsd.org) Message-Id: <201402171202.s1HC2jg9025400@svn.freebsd.org> From: Gleb Smirnoff Date: Mon, 17 Feb 2014 12:02:45 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r262029 - head/sys/net X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 12:02:45 -0000 Author: glebius Date: Mon Feb 17 12:02:44 2014 New Revision: 262029 URL: http://svnweb.freebsd.org/changeset/base/262029 Log: Whitespace. Modified: head/sys/net/flowtable.c Modified: head/sys/net/flowtable.c ============================================================================== --- head/sys/net/flowtable.c Mon Feb 17 12:01:50 2014 (r262028) +++ head/sys/net/flowtable.c Mon Feb 17 12:02:44 2014 (r262029) @@ -412,7 +412,7 @@ static bitstr_t * flowtable_mask(struct flowtable *ft) { - /* + /* * flowtable_free_stale() calls w/o critical section, but * with sched_bind(). Since pointer is stable throughout * ft lifetime, it is safe, otherwise... @@ -496,10 +496,10 @@ flowtable_insert(struct flowtable *ft, u int keylen, uint32_t fibnum0) { #ifdef INET6 - struct route_in6 sro6; + struct route_in6 sro6; #endif #ifdef INET - struct route sro; + struct route sro; #endif struct route *ro = NULL; struct rtentry *rt; @@ -735,7 +735,7 @@ flowtable_lookup_common(struct flowtable /* * used by the bit_alloc macro */ -#define calloc(count, size) malloc((count)*(size), M_FTABLE, M_WAITOK | M_ZERO) +#define calloc(count, size) malloc((count)*(size), M_FTABLE, M_WAITOK | M_ZERO) static void flowtable_alloc(struct flowtable *ft) {