mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 04:50:57 +07:00
decnet: Fix set-but-unused variable.
"next" in dn_rebuild_zone() is set but not actually used, kill it off. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
21f825e618
commit
9bf9055eb7
@ -124,11 +124,10 @@ static inline void dn_rebuild_zone(struct dn_zone *dz,
|
||||
int old_divisor)
|
||||
{
|
||||
int i;
|
||||
struct dn_fib_node *f, **fp, *next;
|
||||
struct dn_fib_node *f, **fp;
|
||||
|
||||
for(i = 0; i < old_divisor; i++) {
|
||||
for(f = old_ht[i]; f; f = f->fn_next) {
|
||||
next = f->fn_next;
|
||||
for(fp = dn_chain_p(f->fn_key, dz);
|
||||
*fp && dn_key_leq((*fp)->fn_key, f->fn_key);
|
||||
fp = &(*fp)->fn_next)
|
||||
|
Loading…
Reference in New Issue
Block a user