Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 19209
b: refs/heads/master
c: 227d776
h: refs/heads/master
i:
  19207: 3e69d33
v: v3
  • Loading branch information
Duncan Sands authored and Greg Kroah-Hartman committed Feb 1, 2006
1 parent 399a6ca commit 8d460b3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 72ef8ab43f5a82e9e2dea247702bf433d6509f87
refs/heads/master: 227d77611b31df5d9afa572b984f73640f54d490
5 changes: 3 additions & 2 deletions trunk/drivers/usb/atm/usbatm.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/netdevice.h>
#include <linux/proc_fs.h>
#include <linux/sched.h>
#include <linux/signal.h>
Expand Down Expand Up @@ -199,7 +200,7 @@ static inline void usbatm_pop(struct atm_vcc *vcc, struct sk_buff *skb)
if (vcc->pop)
vcc->pop(vcc, skb);
else
dev_kfree_skb(skb);
dev_kfree_skb_any(skb);
}


Expand Down Expand Up @@ -397,7 +398,7 @@ static void usbatm_extract_cells(struct usbatm_data *instance,
if (!atm_charge(vcc, skb->truesize)) {
atm_rldbg(instance, "%s: failed atm_charge (skb->truesize: %u)!\n",
__func__, skb->truesize);
dev_kfree_skb(skb);
dev_kfree_skb_any(skb);
goto out; /* atm_charge increments rx_drop */
}

Expand Down

0 comments on commit 8d460b3

Please sign in to comment.