Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 990edb42 authored by Martin KaFai Lau's avatar Martin KaFai Lau Committed by David S. Miller
Browse files

ipv6: Re-arrange code in rt6_probe()



It is a prep work for the next patch to remove write_lock
from rt6_probe().

1. Reduce the number of if(neigh) check.  From 4 to 1.
2. Bring the write_(un)lock() closer to the operations that the
   lock is protecting.

Hopefully, the above make rt6_probe() more readable.

Signed-off-by: default avatarMartin KaFai Lau <kafai@fb.com>
Cc: Hannes Frederic Sowa <hannes@stressinduktion.org>
Cc: Julian Anastasov <ja@ssi.bg>
Cc: YOSHIFUJI Hideaki <hideaki.yoshifuji@miraclelinux.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 205845a3
Loading
Loading
Loading
Loading
+20 −24
Original line number Diff line number Diff line
@@ -545,6 +545,7 @@ static void rt6_probe_deferred(struct work_struct *w)

static void rt6_probe(struct rt6_info *rt)
{
	struct __rt6_probe_work *work;
	struct neighbour *neigh;
	/*
	 * Okay, this does not seem to be appropriate
@@ -559,22 +560,20 @@ static void rt6_probe(struct rt6_info *rt)
	rcu_read_lock_bh();
	neigh = __ipv6_neigh_lookup_noref(rt->dst.dev, &rt->rt6i_gateway);
	if (neigh) {
		work = NULL;
		write_lock(&neigh->lock);
		if (neigh->nud_state & NUD_VALID)
			goto out;
	}

	if (!neigh ||
	    time_after(jiffies, neigh->updated + rt->rt6i_idev->cnf.rtr_probe_interval)) {
		struct __rt6_probe_work *work;

		if (!(neigh->nud_state & NUD_VALID) &&
		    time_after(jiffies,
			       neigh->updated +
			       rt->rt6i_idev->cnf.rtr_probe_interval)) {
			work = kmalloc(sizeof(*work), GFP_ATOMIC);

		if (neigh && work)
			if (work)
				__neigh_set_probe_once(neigh);

		if (neigh)
		}
		write_unlock(&neigh->lock);
	} else {
		work = kmalloc(sizeof(*work), GFP_ATOMIC);
	}

	if (work) {
		INIT_WORK(&work->work, rt6_probe_deferred);
@@ -583,10 +582,7 @@ static void rt6_probe(struct rt6_info *rt)
		work->dev = rt->dst.dev;
		schedule_work(&work->work);
	}
	} else {
out:
		write_unlock(&neigh->lock);
	}

	rcu_read_unlock_bh();
}
#else