diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2015-03-07 22:25:56 (GMT) |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-03-08 23:30:06 (GMT) |
commit | b79bda3d38ae67940f1740f7e015f284eb551680 (patch) | |
tree | fb927e9867e7a013c4ce142a993458d15ee20cef /include | |
parent | 7d5f41f276b376d567e919530f8b5fd70be25426 (diff) | |
download | linux-b79bda3d38ae67940f1740f7e015f284eb551680.tar.xz |
neigh: Use neigh table index for neigh_packet_xmit
Remove a little bit of unnecessary work when transmitting a packet with
neigh_packet_xmit. Use the neighbour table index not the address family
as a parameter.
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/neighbour.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/net/neighbour.h b/include/net/neighbour.h index afb8237..d48b8ec 100644 --- a/include/net/neighbour.h +++ b/include/net/neighbour.h @@ -226,6 +226,7 @@ enum { NEIGH_ND_TABLE = 1, NEIGH_DN_TABLE = 2, NEIGH_NR_TABLES, + NEIGH_LINK_TABLE = NEIGH_NR_TABLES /* Pseudo table for neigh_xmit */ }; static inline int neigh_parms_family(struct neigh_parms *p) |