linux.kernel - 26 new messages in 10 topics - digest
linux.kernel
http://groups.google.com/group/linux.kernel?hl=en
linux.kernel@googlegroups.com
Today's topics:
* driver: net: remove unnecessary skb NULL check before calling dev_kfree_skb_
irq - 1 messages, 1 author
http://groups.google.com/group/linux.kernel/t/206efca8905f3f93?hl=en
* KVM: IOMMU: hva align mapping page size - 1 messages, 1 author
http://groups.google.com/group/linux.kernel/t/fbfd72141d6f63cf?hl=en
* perf probe: Fix typo - 5 messages, 1 author
http://groups.google.com/group/linux.kernel/t/52132f55d4d856d9?hl=en
* perf evsel: Synthesize PERF_SAMPLE_TRANSACTION - 7 messages, 1 author
http://groups.google.com/group/linux.kernel/t/93ed683d89f59248?hl=en
* tools lib traceevent: Add pevent_print_func_field () helper function - 5
messages, 1 author
http://groups.google.com/group/linux.kernel/t/58a7dc7aa860b9e2?hl=en
* perf report: Postpone setting up browser after parsing options - 3 messages,
1 author
http://groups.google.com/group/linux.kernel/t/e56e512fe46f10d4?hl=en
* tools lib traceevent: Handle __print_hex( __get_dynamic_array(fieldname),
len) - 1 messages, 1 author
http://groups.google.com/group/linux.kernel/t/92bbd015fdd5df5c?hl=en
* Linux 3.12 released .. and no merge window yet .. and 4.0 plans? - 1
messages, 1 author
http://groups.google.com/group/linux.kernel/t/c4c3b0f690f8fb8a?hl=en
* Solving M produces N consumers scalability problem - 1 messages, 1 author
http://groups.google.com/group/linux.kernel/t/ded68e3a5e8f041a?hl=en
* tools lib traceevent: Add support for extracting trace_clock in report - 1
messages, 1 author
http://groups.google.com/group/linux.kernel/t/a7453c03d948c61c?hl=en
==============================================================================
TOPIC: driver: net: remove unnecessary skb NULL check before calling dev_kfree_
skb_irq
http://groups.google.com/group/linux.kernel/t/206efca8905f3f93?hl=en
==============================================================================
== 1 of 1 ==
Date: Mon, Nov 4 2013 12:20 pm
From: David Miller
From: Govindarajulu Varadarajan <govindarajulu90@gmail.com>
Date: Sat, 2 Nov 2013 19:17:43 +0530
> @@ -1030,10 +1030,8 @@ static void ni65_xmit_intr(struct net_device *dev,int csr0)
> }
>
> #ifdef XMT_VIA_SKB
> - if(p->tmd_skb[p->tmdlast]) {
> - dev_kfree_skb_irq(p->tmd_skb[p->tmdlast]);
> - p->tmd_skb[p->tmdlast] = NULL;
> - }
> + dev_kfree_skb_irq(p->tmd_skb[p->tmdlast]);
> + p->tmd_skb[p->tmdlast] = NULL;
>
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home