Skip to content
Snippets Groups Projects
Commit 2bbfb16b authored by lepton's avatar lepton Committed by Linus Torvalds
Browse files

[PATCH] usbnet oops fix


There's a "return the wrong SKB" error in the GL620A cable minidriver
(for "usbnet") which can oops.  This would not appear when talking
Linux-to-Linux, only Linux-to-Windows (for recent Linuxes).

Signed-off-by: default avatarDavid Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent b1daec30
No related branches found
No related tags found
No related merge requests found
...@@ -1922,7 +1922,7 @@ static int genelink_rx_fixup (struct usbnet *dev, struct sk_buff *skb) ...@@ -1922,7 +1922,7 @@ static int genelink_rx_fixup (struct usbnet *dev, struct sk_buff *skb)
// copy the packet data to the new skb // copy the packet data to the new skb
memcpy(skb_put(gl_skb, size), packet->packet_data, size); memcpy(skb_put(gl_skb, size), packet->packet_data, size);
skb_return (dev, skb); skb_return (dev, gl_skb);
} }
// advance to the next packet // advance to the next packet
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment