[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <1342083573.7969.3.camel@joe2Laptop>
Date: Thu, 12 Jul 2012 01:59:33 -0700
From: Joe Perches <joe@...ches.com>
To: David Miller <davem@...emloft.net>
Cc: netdev@...r.kernel.org
Subject: Re: [PATCH 03/16] ipv4: Pull redirect instantiation out into a
helper function.
On Thu, 2012-07-12 at 01:10 -0700, David Miller wrote:
[]
> diff --git a/net/ipv4/route.c b/net/ipv4/route.c
just a trivial style note:
> @@ -1271,6 +1271,26 @@ static void rt_del(unsigned int hash, struct rtable *rt)
> spin_unlock_bh(rt_hash_lock_addr(hash));
> }
>
> +static void ip_do_redirect(struct rtable *rt, __be32 old_gw, __be32 new_gw)
> +{
> + struct neighbour *n;
> +
> + if (rt->rt_gateway != old_gw)
> + return;
> +
> + n = ipv4_neigh_lookup(&rt->dst, NULL, &new_gw);
> + if (n) {
Might as well use
if (!n)
return;
and save an indent level.
> + if (!(n->nud_state & NUD_VALID)) {
> + neigh_event_send(n, NULL);
> + } else {
> + rt->rt_gateway = new_gw;
> + rt->rt_flags |= RTCF_REDIRECTED;
> + call_netevent_notifiers(NETEVENT_NEIGH_UPDATE, n);
> + }
> + neigh_release(n);
> + }
> +}
> +
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists