diff options
author | Tobias Klauser <klto@zhaw.ch> | 2009-07-13 11:17:49 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-07-13 11:17:49 -0700 |
commit | 97fd5bc7f2e442482a7a6cc4bc2a286cbb5f4754 (patch) | |
tree | 0f470bb62721a2aa1fba0908bb3f82bb34d15701 /net/core/neighbour.c | |
parent | 8e321c4f72e2fb580a091317ba0fb2941f637ce1 (diff) | |
download | op-kernel-dev-97fd5bc7f2e442482a7a6cc4bc2a286cbb5f4754.zip op-kernel-dev-97fd5bc7f2e442482a7a6cc4bc2a286cbb5f4754.tar.gz |
net: Rename lookup_neigh_params function
Rename lookup_neigh_params to lookup_neigh_parms as the struct is named
neigh_parms and all other functions dealing with the struct carry
neigh_parms in their names.
Signed-off-by: Tobias Klauser <klto@zhaw.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/neighbour.c')
-rw-r--r-- | net/core/neighbour.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/core/neighbour.c b/net/core/neighbour.c index 163b4f5..c6f9ad8 100644 --- a/net/core/neighbour.c +++ b/net/core/neighbour.c @@ -1316,7 +1316,7 @@ void pneigh_enqueue(struct neigh_table *tbl, struct neigh_parms *p, } EXPORT_SYMBOL(pneigh_enqueue); -static inline struct neigh_parms *lookup_neigh_params(struct neigh_table *tbl, +static inline struct neigh_parms *lookup_neigh_parms(struct neigh_table *tbl, struct net *net, int ifindex) { struct neigh_parms *p; @@ -1337,7 +1337,7 @@ struct neigh_parms *neigh_parms_alloc(struct net_device *dev, struct net *net = dev_net(dev); const struct net_device_ops *ops = dev->netdev_ops; - ref = lookup_neigh_params(tbl, net, 0); + ref = lookup_neigh_parms(tbl, net, 0); if (!ref) return NULL; @@ -1906,7 +1906,7 @@ static int neightbl_set(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg) if (tbp[NDTPA_IFINDEX]) ifindex = nla_get_u32(tbp[NDTPA_IFINDEX]); - p = lookup_neigh_params(tbl, net, ifindex); + p = lookup_neigh_parms(tbl, net, ifindex); if (p == NULL) { err = -ENOENT; goto errout_tbl_lock; |