dev_kfree_skb
Defined in 1 files: include/linux/skbuff.h, line (as a macro). Referenced i...
Defined in 1 files: include/linux/skbuff.h, line (as a macro). Referenced in files: arch/ia64/hp/sim/simeth.c, line · arch/m68k/emu/nfeth.c, line
⬇ Download Full VersionFree a buffer. The kfree_skb call is used internally by the kernel. A drive...
Free a buffer. The kfree_skb call is used internally by the kernel. A driver should use one of the forms of dev_kfree_skb instead: dev_kfree_skb for noninterrupt.
⬇ Download Full VersionFrom: Wei Yongjun Replace dev_kfree_skb with dev_kfree_skb_any in mtk_start...
From: Wei Yongjun Replace dev_kfree_skb with dev_kfree_skb_any in mtk_start_xmit() which can be called.
⬇ Download Full VersionFrom: Wei Yongjun Replace dev_kfree_skb with dev_kfree_skb_any in mtk_start...
From: Wei Yongjun Replace dev_kfree_skb with dev_kfree_skb_any in mtk_start_xmit() which can be called from hard irq context.
⬇ Download Full Versionrtl_tx_interrupt() is used from NAPI context, it can directly free skbs. de...
rtl_tx_interrupt() is used from NAPI context, it can directly free skbs. dev_kfree_skb_irq() is a leftover from pre-NAPI times of this driver. Signed-off-by: Eric.
⬇ Download Full VersionSeveral "Warning: kfree_skb on hard IRQ" messages have been obser...
Several "Warning: kfree_skb on hard IRQ" messages have been observed from the net/ee driver, e_clean_jumbo_rx_irq() routine calling.
⬇ Download Full VersionRomieu Subject: [PATCH 1/2] cp: Use dev_kfree_skb_any() instead of dev_kfre...
Romieu Subject: [PATCH 1/2] cp: Use dev_kfree_skb_any() instead of dev_kfree_skb() in cp_clean_rings() This.
⬇ Download Full Versionvoid kfree_skb(struct sk_buff *skb); void dev_kfree_skb(struct sk_buff *skb...
void kfree_skb(struct sk_buff *skb); void dev_kfree_skb(struct sk_buff *skb); void dev_kfree_skb_irq(struct sk_buff *skb); void dev_kfree_skb_any(struct sk_buff.
⬇ Download Full Versiondev_kfree_skb() simply frees an skb. Hence cant we use it to release an skb...
dev_kfree_skb() simply frees an skb. Hence cant we use it to release an skb in interrupt context? What's special about dev_kfree_skb_irq().
⬇ Download Full VersionHi, with kernels >= dev_kfree_skb() is just an alias for kfree_skb(). Sh...
Hi, with kernels >= dev_kfree_skb() is just an alias for kfree_skb(). Should network device drivers continue to use the dev_kfree_skb().
⬇ Download Full Version[PATCH net-next] mlx4: use dev_kfree_skb() instead of dev_kfree_skb_any() —...
[PATCH net-next] mlx4: use dev_kfree_skb() instead of dev_kfree_skb_any() — Linux Network Development.
⬇ Download Full VersionFreeing memory: kfree_skb and dev_kfree_skb These two functions release a b...
Freeing memory: kfree_skb and dev_kfree_skb These two functions release a buffer, which results in its return to the buffer pool (cache). kfree_skb is both called.
⬇ Download Full VersionHi, what are the possible implications of calling dev_kfree_skb_irq from no...
Hi, what are the possible implications of calling dev_kfree_skb_irq from non-interrupt context or calling dev_kfree_skb from interrupt context?
⬇ Download Full Versionkfree_skb dev_kfree_skb dev_kfree_skb dev_alloc_skb kfree_skb skb->users...
kfree_skb dev_kfree_skb dev_kfree_skb dev_alloc_skb kfree_skb skb->users 1 dev_kfree_skb kfree_skb 33 sk_buff dst_entry reference sk_buff dst_release.
⬇ Download Full Version[PATCH -next] net: ethernet: mediatek: use dev_kfree_skb_any instead of dev...
[PATCH -next] net: ethernet: mediatek: use dev_kfree_skb_any instead of dev_kfree_skb. David Miller davem at dwn.220.v.ua Thu Oct
⬇ Download Full Version