You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 1, 2023. It is now read-only.
The current project uses net_dev_xmit and netif_receive_skb to trace network usage. However; my machine (4.19.0-6-amd64 #1 SMP Debian 4.19.67-2+deb10u1 (2019-09-20) x86_64 GNU/Linux) reports net_if_receive_skb.
I've solved this for my self by replacing all string occurrences of netif_receive_skb by net_if_receive_skb.
The current project uses
net_dev_xmit
andnetif_receive_skb
to trace network usage. However; my machine (4.19.0-6-amd64 #1 SMP Debian 4.19.67-2+deb10u1 (2019-09-20) x86_64 GNU/Linux
) reportsnet_if_receive_skb
.I've solved this for my self by replacing all string occurrences of
netif_receive_skb
bynet_if_receive_skb
.I think it would be desired to fix this in this repo as well. Is this solution sufficient? Would all functions need to be renamed as well?
The text was updated successfully, but these errors were encountered: