net: decnet: af_decnet: Simplify goto loop.
Replace goto loop with while loop. Signed-off-by: Suraj Upadhyay <usuraj35@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
c4fefd5a33
commit
e0c3f4c4fd
@ -2134,14 +2134,11 @@ static struct sock *dn_socket_get_next(struct seq_file *seq,
|
|||||||
struct dn_iter_state *state = seq->private;
|
struct dn_iter_state *state = seq->private;
|
||||||
|
|
||||||
n = sk_next(n);
|
n = sk_next(n);
|
||||||
try_again:
|
while (!n) {
|
||||||
if (n)
|
if (++state->bucket >= DN_SK_HASH_SIZE)
|
||||||
goto out;
|
break;
|
||||||
if (++state->bucket >= DN_SK_HASH_SIZE)
|
n = sk_head(&dn_sk_hash[state->bucket]);
|
||||||
goto out;
|
}
|
||||||
n = sk_head(&dn_sk_hash[state->bucket]);
|
|
||||||
goto try_again;
|
|
||||||
out:
|
|
||||||
return n;
|
return n;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user