Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 178709bb authored by David S. Miller's avatar David S. Miller
Browse files

ipoib: Convert over to dev_lookup_neigh_skb().

parent dbedbe6d
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -715,7 +715,7 @@ static int ipoib_start_xmit(struct sk_buff *skb, struct net_device *dev)

	rcu_read_lock();
	if (likely(skb_dst(skb))) {
		n = dst_get_neighbour_noref(skb_dst(skb));
		n = dst_neigh_lookup_skb(skb_dst(skb), skb);
		if (!n) {
			++dev->stats.tx_dropped;
			dev_kfree_skb_any(skb);
@@ -797,6 +797,8 @@ static int ipoib_start_xmit(struct sk_buff *skb, struct net_device *dev)
		}
	}
unlock:
	if (n)
		neigh_release(n);
	rcu_read_unlock();
	return NETDEV_TX_OK;
}
+13 −9
Original line number Diff line number Diff line
@@ -720,17 +720,21 @@ out:

		rcu_read_lock();
		if (dst)
			n = dst_get_neighbour_noref(dst);
		if (n && !*to_ipoib_neigh(n)) {
			struct ipoib_neigh *neigh = ipoib_neigh_alloc(n,
								      skb->dev);
			n = dst_neigh_lookup_skb(dst, skb);
		if (n) {
			if (!*to_ipoib_neigh(n)) {
				struct ipoib_neigh *neigh;

				neigh = ipoib_neigh_alloc(n, skb->dev);
				if (neigh) {
					kref_get(&mcast->ah->ref);
					neigh->ah	= mcast->ah;
				list_add_tail(&neigh->list, &mcast->neigh_list);
					list_add_tail(&neigh->list,
						      &mcast->neigh_list);
				}
			}
			neigh_release(n);
		}
		rcu_read_unlock();
		spin_unlock_irqrestore(&priv->lock, flags);
		ipoib_send(dev, skb, mcast->ah, IB_MULTICAST_QPN);