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

Commit 9153f66a authored by Roland Dreier's avatar Roland Dreier Committed by David S. Miller
Browse files

IPoIB: Fix unused variable warning



The conversion to use netdevice internal stats left an unused variable
in ipoib_neigh_free(), since there's no longer any reason to get
netdev_priv() in order to increment dropped packets.  Delete the
unused priv variable.

Signed-off-by: default avatarRoland Dreier <rolandd@cisco.com>
Signed-off-by: default avatarJeff Garzik <jeff@garzik.org>
parent f2cade13
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -854,7 +854,6 @@ struct ipoib_neigh *ipoib_neigh_alloc(struct neighbour *neighbour)

void ipoib_neigh_free(struct net_device *dev, struct ipoib_neigh *neigh)
{
	struct ipoib_dev_priv *priv = netdev_priv(dev);
	struct sk_buff *skb;
	*to_ipoib_neigh(neigh->neighbour) = NULL;
	while ((skb = __skb_dequeue(&neigh->queue))) {