From: Eric Dumazet Date: Wed, 19 Nov 2008 23:48:09 +0000 (-0800) Subject: net: af_unix should use KERN_INFO instead of KERN_DEBUG X-Git-Tag: v2.6.29-rc1~581^2~678 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6b41e7dd90c6a628ab5fb8d781302d60a243b2ce;p=profile%2Fivi%2Fkernel-x86-ivi.git 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 Signed-off-by: David S. Miller --- diff --git a/net/unix/af_unix.c b/net/unix/af_unix.c index ebc4a9a..e1ca8f7 100644 --- a/net/unix/af_unix.c +++ b/net/unix/af_unix.c @@ -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; }