mirror of https://gitee.com/openkylin/linux.git
nfc: remove noisy message from llcp_sock_sendmsg
This is easily triggerable when fuzz-testing as an unprivileged user. We could rate-limit it, but given we don't print similar messages for other protocols, I just removed it. Signed-off-by: Dave Jones <davej@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
6be35c700f
commit
026e43def7
|
@ -614,10 +614,6 @@ static int llcp_sock_sendmsg(struct kiocb *iocb, struct socket *sock,
|
|||
|
||||
if (msg->msg_namelen < sizeof(*addr)) {
|
||||
release_sock(sk);
|
||||
|
||||
pr_err("Invalid socket address length %d\n",
|
||||
msg->msg_namelen);
|
||||
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue