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

Commit d011a231 authored by David S. Miller's avatar David S. Miller
Browse files

[CASSINI]: Set skb->truesize properly on receive packets.



skb->truesize was not being incremented at all to
reflect the page based data added to RX SKBs.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 9e1848b6
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -2037,6 +2037,7 @@ static int cas_rx_process_pkt(struct cas *cp, struct cas_rx_comp *rxc,

		skb_shinfo(skb)->nr_frags++;
		skb->data_len += hlen - swivel;
		skb->truesize += hlen - swivel;
		skb->len      += hlen - swivel;

		get_page(page->buffer);