Commit 8ef7734c authored by David S. Miller's avatar David S. Miller

[NET]: Kill typo in neighbour.c

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 57d62c2d
......@@ -427,7 +427,7 @@ struct neighbour *neigh_create(struct neigh_table *tbl, const void *pkey,
write_lock_bh(&tbl->lock);
if (tbl->entries > (tbl->hash_mask + 1)) {
if (tbl->entries > (tbl->hash_mask + 1))
neigh_hash_grow(tbl, (tbl->hash_mask + 1) << 1);
hash_val = tbl->hash(pkey, dev) & tbl->hash_mask;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment