be2net: Use dev_consume_skb_any() in the non-drop path
authorRick Jones <rick.jones2@hp.com>
Thu, 28 Aug 2014 15:53:16 +0000 (08:53 -0700)
committerDavid S. Miller <davem@davemloft.net>
Sat, 30 Aug 2014 03:36:33 +0000 (20:36 -0700)
The be2net driver was still using dev_kfree_skb_any() in a "normal"
skb freeing path.  This rather clutters perf top -G -e skb_kfree_skb
profiling.

Signed-off-by: Rick Jones <rick.jones2@hp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/emulex/benet/be_main.c

index 93ff8ef3935227c348d5bc8b20a6f0c4248ca570..42e9cea52bdcc58ff0837fc2418d68ab10233566 100644 (file)
@@ -1991,7 +1991,7 @@ static u16 be_tx_compl_process(struct be_adapter *adapter,
                queue_tail_inc(txq);
        } while (cur_index != last_index);
 
-       dev_kfree_skb_any(sent_skb);
+       dev_consume_skb_any(sent_skb);
        return num_wrbs;
 }
 
This page took 0.029223 seconds and 5 git commands to generate.