Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 256615
b: refs/heads/master
c: 6440752
h: refs/heads/master
i:
  256613: 8e89ee5
  256611: 25270a0
  256607: 9a254c6
v: v3
  • Loading branch information
Alexander Duyck authored and Jeff Kirsher committed Jul 22, 2011
1 parent b95a4fc commit 9bdb6db
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a14bc2bb7075e59be635a2470dc0a32c5a0e8e21
refs/heads/master: 6440752c872e418452a2cbbf5e73d546affe2b28
7 changes: 3 additions & 4 deletions trunk/drivers/net/ixgbe/ixgbe_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -6795,11 +6795,10 @@ static int ixgbe_maybe_stop_tx(struct ixgbe_ring *tx_ring, u16 size)
static u16 ixgbe_select_queue(struct net_device *dev, struct sk_buff *skb)
{
struct ixgbe_adapter *adapter = netdev_priv(dev);
int txq = smp_processor_id();
int txq = skb_rx_queue_recorded(skb) ? skb_get_rx_queue(skb) :
smp_processor_id();
#ifdef IXGBE_FCOE
__be16 protocol;

protocol = vlan_get_protocol(skb);
__be16 protocol = vlan_get_protocol(skb);

if (((protocol == htons(ETH_P_FCOE)) ||
(protocol == htons(ETH_P_FIP))) &&
Expand Down

0 comments on commit 9bdb6db

Please sign in to comment.