[PATCH net-next] ftgmac100: fix skb truesize underestimation

Subsystems: networking drivers, the rest

STALE5444d

3 messages, 3 authors, 2011-10-14 · open the first message on its own page

[PATCH net-next] ftgmac100: fix skb truesize underestimation

From: Eric Dumazet <hidden>
Date: 2011-10-13 21:30:57

ftgmac100 allocates a page per skb fragment. We must account
PAGE_SIZE increments on skb->truesize, not the actual frag length.

If frame is under 64 bytes, page is freed, and truesize adjusted.

Signed-off-by: Eric Dumazet <redacted>
CC: Po-Yu Chuang <redacted>
---
 drivers/net/ethernet/faraday/ftgmac100.c |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/drivers/net/ethernet/faraday/ftgmac100.c b/drivers/net/ethernet/faraday/ftgmac100.c
index 54709af..fb5579a 100644
--- a/drivers/net/ethernet/faraday/ftgmac100.c
+++ b/drivers/net/ethernet/faraday/ftgmac100.c
@@ -467,7 +467,7 @@ static bool ftgmac100_rx_packet(struct ftgmac100 *priv, int *processed)
 
 		skb->len += size;
 		skb->data_len += size;
-		skb->truesize += size;
+		skb->truesize += PAGE_SIZE;
 
 		if (ftgmac100_rxdes_last_segment(rxdes))
 			done = true;
@@ -478,6 +478,8 @@ static bool ftgmac100_rx_packet(struct ftgmac100 *priv, int *processed)
 		rxdes = ftgmac100_current_rxdes(priv);
 	} while (!done);
 
+	if (skb->len <= 64)
+		skb->truesize -= PAGE_SIZE;
 	__pskb_pull_tail(skb, min(skb->len, 64U));
 	skb->protocol = eth_type_trans(skb, netdev);
 

Re: [PATCH net-next] ftgmac100: fix skb truesize underestimation

From: David Miller <davem@davemloft.net>
Date: 2011-10-14 02:26:19

From: Eric Dumazet <redacted>
Date: Thu, 13 Oct 2011 23:30:52 +0200
ftgmac100 allocates a page per skb fragment. We must account
PAGE_SIZE increments on skb->truesize, not the actual frag length.

If frame is under 64 bytes, page is freed, and truesize adjusted.

Signed-off-by: Eric Dumazet <redacted>
Applied.

Re: [PATCH net-next] ftgmac100: fix skb truesize underestimation

From: Po-Yu Chuang <hidden>
Date: 2011-10-14 03:51:07

Dear Eric and David,

On Fri, Oct 14, 2011 at 10:25 AM, David Miller [off-list ref] wrote:
From: Eric Dumazet <redacted>
Date: Thu, 13 Oct 2011 23:30:52 +0200
quoted
ftgmac100 allocates a page per skb fragment. We must account
PAGE_SIZE increments on skb->truesize, not the actual frag length.

If frame is under 64 bytes, page is freed, and truesize adjusted.

Signed-off-by: Eric Dumazet <redacted>
Applied.
Thank you.

best regards,
Po-Yu Chuang
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help