mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 03:36:19 +00:00
net: af_unix should use KERN_INFO instead of KERN_DEBUG
As spotted by Joe Perches, we should use KERN_INFO in unix_sock_destructor() Signed-off-by: Eric Dumazet <dada1@cosmosbay.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
d171235e71
commit
6b41e7dd90
1 changed files with 1 additions and 1 deletions
|
@ -353,7 +353,7 @@ static void unix_sock_destructor(struct sock *sk)
|
|||
WARN_ON(!sk_unhashed(sk));
|
||||
WARN_ON(sk->sk_socket);
|
||||
if (!sock_flag(sk, SOCK_DEAD)) {
|
||||
printk(KERN_DEBUG "Attempt to release alive unix socket: %p\n", sk);
|
||||
printk(KERN_INFO "Attempt to release alive unix socket: %p\n", sk);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue