Skip to content

Commit

Permalink
qlcnic: dont set skb->truesize
Browse files Browse the repository at this point in the history
skb->truesize is set in core network.

Dont change it unless dealing with fragments.

Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Eric Dumazet authored and David S. Miller committed Sep 21, 2010
1 parent 2d81376 commit 8df8fd2
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions drivers/net/qlcnic/qlcnic_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -1404,7 +1404,6 @@ qlcnic_process_rcv(struct qlcnic_adapter *adapter,
if (pkt_offset)
skb_pull(skb, pkt_offset);

skb->truesize = skb->len + sizeof(struct sk_buff);
skb->protocol = eth_type_trans(skb, netdev);

napi_gro_receive(&sds_ring->napi, skb);
Expand Down Expand Up @@ -1466,8 +1465,6 @@ qlcnic_process_lro(struct qlcnic_adapter *adapter,

skb_put(skb, lro_length + data_offset);

skb->truesize = skb->len + sizeof(struct sk_buff) + skb_headroom(skb);

skb_pull(skb, l2_hdr_offset);
skb->protocol = eth_type_trans(skb, netdev);

Expand Down Expand Up @@ -1700,8 +1697,6 @@ qlcnic_process_rcv_diag(struct qlcnic_adapter *adapter,
if (pkt_offset)
skb_pull(skb, pkt_offset);

skb->truesize = skb->len + sizeof(struct sk_buff);

if (!qlcnic_check_loopback_buff(skb->data))
adapter->diag_cnt++;

Expand Down

0 comments on commit 8df8fd2

Please sign in to comment.