diff options
| author | Roland Dreier <rolandd@cisco.com> | 2005-09-28 22:56:57 -0400 |
|---|---|---|
| committer | Roland Dreier <rolandd@cisco.com> | 2005-09-28 22:56:57 -0400 |
| commit | d70ed6075f15bdbb0548d162394bf10332769c88 (patch) | |
| tree | f34b72480922d614a3210898b1bb990b61b91e40 | |
| parent | a1c337afaf4ec4d4eabc75a5e1170d03161de4e1 (diff) | |
[IPoIB] Rename IPoIB's path_lookup() to avoid name clashes
Rename IPoIB driver's path_lookup() to ipoib_path_lookup() to avoid a
clashes with the kernel global path_lookup(). We don't hit this with
the current kernel source, but some external patches seem to trigger
this, and it's cleaner to avoid clashing with global names anyway.
Signed-off-by: Roland Dreier <rolandd@cisco.com>
refs/heads/for-linus
| -rw-r--r-- | drivers/infiniband/ulp/ipoib/ipoib_main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/infiniband/ulp/ipoib/ipoib_main.c b/drivers/infiniband/ulp/ipoib/ipoib_main.c index 704f48e0b6a7..6c5bf07489f4 100644 --- a/drivers/infiniband/ulp/ipoib/ipoib_main.c +++ b/drivers/infiniband/ulp/ipoib/ipoib_main.c | |||
| @@ -474,7 +474,7 @@ err: | |||
| 474 | spin_unlock(&priv->lock); | 474 | spin_unlock(&priv->lock); |
| 475 | } | 475 | } |
| 476 | 476 | ||
| 477 | static void path_lookup(struct sk_buff *skb, struct net_device *dev) | 477 | static void ipoib_path_lookup(struct sk_buff *skb, struct net_device *dev) |
| 478 | { | 478 | { |
| 479 | struct ipoib_dev_priv *priv = netdev_priv(skb->dev); | 479 | struct ipoib_dev_priv *priv = netdev_priv(skb->dev); |
| 480 | 480 | ||
| @@ -569,7 +569,7 @@ static int ipoib_start_xmit(struct sk_buff *skb, struct net_device *dev) | |||
| 569 | 569 | ||
| 570 | if (skb->dst && skb->dst->neighbour) { | 570 | if (skb->dst && skb->dst->neighbour) { |
| 571 | if (unlikely(!*to_ipoib_neigh(skb->dst->neighbour))) { | 571 | if (unlikely(!*to_ipoib_neigh(skb->dst->neighbour))) { |
| 572 | path_lookup(skb, dev); | 572 | ipoib_path_lookup(skb, dev); |
| 573 | goto out; | 573 | goto out; |
| 574 | } | 574 | } |
| 575 | 575 | ||
