]> www.infradead.org Git - users/jedix/linux-maple.git/commit
mlxsw: pci: Use napi_consume_skb() to free SKB as part of Tx completion
authorAmit Cohen <amcohen@nvidia.com>
Tue, 18 Jun 2024 11:34:46 +0000 (13:34 +0200)
committerJakub Kicinski <kuba@kernel.org>
Thu, 20 Jun 2024 00:38:11 +0000 (17:38 -0700)
commitd94ae6415becdf437d58e60d1f153af39dddb247
treee61b2ac5d84e4c508b502e28de081708a27cd100
parente8441b1f6b64e7157b9e7777a2f7b79c2215cba1
mlxsw: pci: Use napi_consume_skb() to free SKB as part of Tx completion

Currently, as part of Tx completion, the driver calls dev_kfree_skb_any()
to free the SKB. For this flow, the correct function is napi_consume_skb().
This function and dev_consume_skb_any() were added to be used for consumed
SKBs, which were not dropped, so the skb:kfree_skb tracepoint is not
triggered, and we can get better diagnostics about dropped packets.

Signed-off-by: Amit Cohen <amcohen@nvidia.com>
Reviewed-by: Ido Schimmel <idosch@nvidia.com>
Signed-off-by: Petr Machata <petrm@nvidia.com>
Reviewed-by: Jiri Pirko <jiri@nvidia.com>
Link: https://lore.kernel.org/r/a9f9f3dc884c0d1be4bd4c9d72030c88c7ac004f.1718709196.git.petrm@nvidia.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/ethernet/mellanox/mlxsw/pci.c