Skip to content

Commit

Permalink
cxgb3: skb_record_rx_queue now records the queue index relative to th…
Browse files Browse the repository at this point in the history
…e net_device.

Fixed call to skb_record_rx_queue where we were passing the queue index
relative to the adapter when it should have been relative to the net_device.

Signed-off-by: John (Jay) Hernandez <jay@chelsio.com>
Signed-off-by: Divy Le Ray <divy@chelsio.com>
Reported-by: Shawn Bohrer <sbohrer@rgmadvisors.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
John (Jay) Hernandez authored and David S. Miller committed Jun 25, 2011
1 parent bd4265f commit d6fe5f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/net/cxgb3/sge.c
Original file line number Diff line number Diff line change
Expand Up @@ -2026,7 +2026,7 @@ static void rx_eth(struct adapter *adap, struct sge_rspq *rq,
skb->ip_summed = CHECKSUM_UNNECESSARY;
} else
skb_checksum_none_assert(skb);
skb_record_rx_queue(skb, qs - &adap->sge.qs[0]);
skb_record_rx_queue(skb, qs - &adap->sge.qs[pi->first_qset]);

if (unlikely(p->vlan_valid)) {
struct vlan_group *grp = pi->vlan_grp;
Expand Down Expand Up @@ -2145,7 +2145,7 @@ static void lro_add_page(struct adapter *adap, struct sge_qset *qs,
if (!complete)
return;

skb_record_rx_queue(skb, qs - &adap->sge.qs[0]);
skb_record_rx_queue(skb, qs - &adap->sge.qs[pi->first_qset]);

if (unlikely(cpl->vlan_valid)) {
struct vlan_group *grp = pi->vlan_grp;
Expand Down

0 comments on commit d6fe5f4

Please sign in to comment.