]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
cxgb4vf: Fix VLAN extraction counter increment
authorVipul Pandya <vipul@chelsio.com>
Tue, 12 Feb 2013 00:36:21 +0000 (00:36 +0000)
committerDavid S. Miller <davem@davemloft.net>
Tue, 12 Feb 2013 21:15:10 +0000 (16:15 -0500)
Signed-off-by: Santosh Rastapur <santosh@chelsio.com>
Signed-off-by: Vipul Pandya <vipul@chelsio.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/chelsio/cxgb4vf/sge.c

index 9e8841e1be5aa7ad29bce727c838ff919a46267f..9488032d6d2d568239a0d940a9ca893359d40b4d 100644 (file)
@@ -1477,8 +1477,10 @@ static void do_gro(struct sge_eth_rxq *rxq, const struct pkt_gl *gl,
        skb->ip_summed = CHECKSUM_UNNECESSARY;
        skb_record_rx_queue(skb, rxq->rspq.idx);
 
-       if (pkt->vlan_ex)
+       if (pkt->vlan_ex) {
                __vlan_hwaccel_put_tag(skb, be16_to_cpu(pkt->vlan));
+               rxq->stats.vlan_ex++;
+       }
        ret = napi_gro_frags(&rxq->rspq.napi);
 
        if (ret == GRO_HELD)