mirror of
https://github.com/torvalds/linux.git
synced 2026-06-07 05:55:44 +02:00
ping: remove pr_err from ping_lookup
commitcd33bdcbeaupstream. As Jakub noticed, prints should be avoided on the datapath. Also, as packets would never come to the else branch in ping_lookup(), remove pr_err() from ping_lookup(). Fixes:35a79e64de("ping: fix the dif and sdif check in ping_lookup") Reported-by: Jakub Kicinski <kuba@kernel.org> Signed-off-by: Xin Long <lucien.xin@gmail.com> Link: https://lore.kernel.org/r/1ef3f2fcd31bd681a193b1fcf235eee1603819bd.1645674068.git.lucien.xin@gmail.com Signed-off-by: Jakub Kicinski <kuba@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
5da17865c7
commit
5419b5be88
|
|
@ -187,7 +187,6 @@ static struct sock *ping_lookup(struct net *net, struct sk_buff *skb, u16 ident)
|
||||||
(int)ident, &ipv6_hdr(skb)->daddr, dif);
|
(int)ident, &ipv6_hdr(skb)->daddr, dif);
|
||||||
#endif
|
#endif
|
||||||
} else {
|
} else {
|
||||||
pr_err("ping: protocol(%x) is not supported\n", ntohs(skb->protocol));
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user