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

Commit 87696f92 authored by Alexander Duyck's avatar Alexander Duyck Committed by David S. Miller
Browse files

net: Export __netdev_pick_tx so that it can be used in modules



When testing with FCoE enabled we discovered that I had not exported
__netdev_pick_tx.  As a result ixgbe doesn't build with the RFC patches
applied because ixgbe_select_queue was calling the function.  This change
corrects that build issue by correctly exporting __netdev_pick_tx so it
can be used by modules.

Signed-off-by: default avatarAlexander Duyck <alexander.h.duyck@intel.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 17e1a42f
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -2746,6 +2746,7 @@ u16 __netdev_pick_tx(struct net_device *dev, struct sk_buff *skb)

	return queue_index;
}
EXPORT_SYMBOL(__netdev_pick_tx);

struct netdev_queue *netdev_pick_tx(struct net_device *dev,
				    struct sk_buff *skb)