svn commit: r185253 - head/sys/net
Sam Leffler
sam at FreeBSD.org
Mon Nov 24 09:34:01 PST 2008
Author: sam
Date: Mon Nov 24 17:34:00 2008
New Revision: 185253
URL: http://svn.freebsd.org/changeset/base/185253
Log:
use consistent style
Modified:
head/sys/net/if.c
Modified: head/sys/net/if.c
==============================================================================
--- head/sys/net/if.c Mon Nov 24 16:33:23 2008 (r185252)
+++ head/sys/net/if.c Mon Nov 24 17:34:00 2008 (r185253)
@@ -736,8 +736,7 @@ if_detach(struct ifnet *ifp)
INIT_VNET_NET(ifp->if_vnet);
struct ifaddr *ifa;
struct radix_node_head *rnh;
- int s;
- int i;
+ int s, i, j;
struct domain *dp;
struct ifnet *iter;
int found = 0;
@@ -809,14 +808,13 @@ if_detach(struct ifnet *ifp)
* to this interface...oh well...
*/
for (i = 1; i <= AF_MAX; i++) {
- int j;
- for (j = 0; j < rt_numfibs; j++) {
- if ((rnh = V_rt_tables[j][i]) == NULL)
- continue;
- RADIX_NODE_HEAD_LOCK(rnh);
- (void) rnh->rnh_walktree(rnh, if_rtdel, ifp);
- RADIX_NODE_HEAD_UNLOCK(rnh);
- }
+ for (j = 0; j < rt_numfibs; j++) {
+ if ((rnh = V_rt_tables[j][i]) == NULL)
+ continue;
+ RADIX_NODE_HEAD_LOCK(rnh);
+ (void) rnh->rnh_walktree(rnh, if_rtdel, ifp);
+ RADIX_NODE_HEAD_UNLOCK(rnh);
+ }
}
/* Announce that the interface is gone. */
More information about the svn-src-all
mailing list