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:
Eric Dumazet 2008-11-19 15:48:09 -08:00 committed by David S. Miller
parent d171235e71
commit 6b41e7dd90
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}