Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 96d49225 authored by Rick Jones's avatar Rick Jones Committed by David S. Miller
Browse files

be2net: Use dev_consume_skb_any() in the non-drop path



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: default avatarRick Jones <rick.jones2@hp.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 56daf66d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
}