lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-ID: <7dceaec046d54e8db9cefb2e3b198f25765f6d8e.camel@infinera.com> Date: Thu, 3 Nov 2022 14:08:19 +0000 From: Joakim Tjernlund <Joakim.Tjernlund@...inera.com> To: "netdev@...r.kernel.org" <netdev@...r.kernel.org> Subject: NET_RX_DROP question In our ethernet drivers RX path we have: if (netif_receive_skb(skb) == NET_RX_DROP) priv->stats.rx_dropped++; Now we can see dropped counter counting dropped pkgs but we don't see any corrupt pkgs etc. Is NET_RX_DROP really meant to be used like this? It gives the impression that there is something wrong with the driver. Jocke