mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-04-16 15:37:46 +07:00
packet: make packet too small warning match condition
The expression in ll_header_truncated() tests less than or equal, but the warning prints less than. Update the warning. Reported-by: Jouni Malinen <jkmalinen@gmail.com> Signed-off-by: Willem de Bruijn <willemb@google.com> Acked-by: Daniel Borkmann <dborkman@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
20d14a5d37
commit
eee2f04b80
@ -2102,7 +2102,7 @@ static bool ll_header_truncated(const struct net_device *dev, int len)
|
|||||||
{
|
{
|
||||||
/* net device doesn't like empty head */
|
/* net device doesn't like empty head */
|
||||||
if (unlikely(len <= dev->hard_header_len)) {
|
if (unlikely(len <= dev->hard_header_len)) {
|
||||||
net_warn_ratelimited("%s: packet size is too short (%d < %d)\n",
|
net_warn_ratelimited("%s: packet size is too short (%d <= %d)\n",
|
||||||
current->comm, len, dev->hard_header_len);
|
current->comm, len, dev->hard_header_len);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user