* [PATCH v4] smsc95xx: Use skb_cow_head to deal with cloned skbs
@ 2017-04-19 10:13 James Hughes
2017-04-19 14:13 ` Eric Dumazet
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: James Hughes @ 2017-04-19 10:13 UTC (permalink / raw)
To: netdev, Steve Glendinning, Microchip Linux Driver Support; +Cc: James Hughes
The driver was failing to check that the SKB wasn't cloned
before adding checksum data.
Replace existing handling to extend/copy the header buffer
with skb_cow_head.
Signed-off-by: James Hughes <james.hughes@raspberrypi.org>
---
Changes
v3
- Added the dev_kfree_skb_any call to ensure skb is deallocated
as when returning NULL the caller won't deallocate
v4
- Fix typo in comment (reallocate to deallocate)
drivers/net/usb/smsc95xx.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/drivers/net/usb/smsc95xx.c b/drivers/net/usb/smsc95xx.c
index df60c98..f6661e3 100644
--- a/drivers/net/usb/smsc95xx.c
+++ b/drivers/net/usb/smsc95xx.c
@@ -2067,13 +2067,13 @@ static struct sk_buff *smsc95xx_tx_fixup(struct usbnet *dev,
/* We do not advertise SG, so skbs should be already linearized */
BUG_ON(skb_shinfo(skb)->nr_frags);
- if (skb_headroom(skb) < overhead) {
- struct sk_buff *skb2 = skb_copy_expand(skb,
- overhead, 0, flags);
+ /* Make writable and expand header space by overhead if required */
+ if (skb_cow_head(skb, overhead)) {
+ /* Must deallocate here as returning NULL to indicate error
+ * means the skb won't be deallocated in the caller.
+ */
dev_kfree_skb_any(skb);
- skb = skb2;
- if (!skb)
- return NULL;
+ return NULL;
}
if (csum) {
--
2.9.3
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v4] smsc95xx: Use skb_cow_head to deal with cloned skbs
2017-04-19 10:13 [PATCH v4] smsc95xx: Use skb_cow_head to deal with cloned skbs James Hughes
@ 2017-04-19 14:13 ` Eric Dumazet
2017-04-19 14:36 ` Woojung.Huh
2017-04-20 20:28 ` David Miller
2 siblings, 0 replies; 4+ messages in thread
From: Eric Dumazet @ 2017-04-19 14:13 UTC (permalink / raw)
To: James Hughes; +Cc: netdev, Steve Glendinning, Microchip Linux Driver Support
On Wed, 2017-04-19 at 11:13 +0100, James Hughes wrote:
> The driver was failing to check that the SKB wasn't cloned
> before adding checksum data.
> Replace existing handling to extend/copy the header buffer
> with skb_cow_head.
>
> Signed-off-by: James Hughes <james.hughes@raspberrypi.org>
> ---
Acked-by: Eric Dumazet <edumazet@google.com>
Thanks James
^ permalink raw reply [flat|nested] 4+ messages in thread
* RE: [PATCH v4] smsc95xx: Use skb_cow_head to deal with cloned skbs
2017-04-19 10:13 [PATCH v4] smsc95xx: Use skb_cow_head to deal with cloned skbs James Hughes
2017-04-19 14:13 ` Eric Dumazet
@ 2017-04-19 14:36 ` Woojung.Huh
2017-04-20 20:28 ` David Miller
2 siblings, 0 replies; 4+ messages in thread
From: Woojung.Huh @ 2017-04-19 14:36 UTC (permalink / raw)
To: james.hughes, netdev; +Cc: steve.glendinning, UNGLinuxDriver
> The driver was failing to check that the SKB wasn't cloned
> before adding checksum data.
> Replace existing handling to extend/copy the header buffer
> with skb_cow_head.
>
> Signed-off-by: James Hughes <james.hughes@raspberrypi.org>
> ---
Acked-by: Woojung Huh <Woojung.Huh@microchip.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v4] smsc95xx: Use skb_cow_head to deal with cloned skbs
2017-04-19 10:13 [PATCH v4] smsc95xx: Use skb_cow_head to deal with cloned skbs James Hughes
2017-04-19 14:13 ` Eric Dumazet
2017-04-19 14:36 ` Woojung.Huh
@ 2017-04-20 20:28 ` David Miller
2 siblings, 0 replies; 4+ messages in thread
From: David Miller @ 2017-04-20 20:28 UTC (permalink / raw)
To: james.hughes; +Cc: netdev, steve.glendinning, UNGLinuxDriver
From: James Hughes <james.hughes@raspberrypi.org>
Date: Wed, 19 Apr 2017 11:13:40 +0100
> The driver was failing to check that the SKB wasn't cloned
> before adding checksum data.
> Replace existing handling to extend/copy the header buffer
> with skb_cow_head.
>
> Signed-off-by: James Hughes <james.hughes@raspberrypi.org>
Applied.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-04-20 20:29 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-19 10:13 [PATCH v4] smsc95xx: Use skb_cow_head to deal with cloned skbs James Hughes
2017-04-19 14:13 ` Eric Dumazet
2017-04-19 14:36 ` Woojung.Huh
2017-04-20 20:28 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).