aboutsummaryrefslogtreecommitdiffstats
path: root/net/unix
diff options
context:
space:
mode:
authorEric Dumazet <dada1@cosmosbay.com>2008-11-19 18:48:09 -0500
committerDavid S. Miller <davem@davemloft.net>2008-11-19 18:48:09 -0500
commit6b41e7dd90c6a628ab5fb8d781302d60a243b2ce (patch)
tree87f1d679eb02bae2a9313c872d45729ab9254661 /net/unix
parentd171235e712c11c0a0f47f62619024bf726125e1 (diff)
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>
Diffstat (limited to 'net/unix')
-rw-r--r--net/unix/af_unix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/unix/af_unix.c b/net/unix/af_unix.c
index ebc4a9a4b1f7..e1ca8f744ca5 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)
353 WARN_ON(!sk_unhashed(sk)); 353 WARN_ON(!sk_unhashed(sk));
354 WARN_ON(sk->sk_socket); 354 WARN_ON(sk->sk_socket);
355 if (!sock_flag(sk, SOCK_DEAD)) { 355 if (!sock_flag(sk, SOCK_DEAD)) {
356 printk(KERN_DEBUG "Attempt to release alive unix socket: %p\n", sk); 356 printk(KERN_INFO "Attempt to release alive unix socket: %p\n", sk);
357 return; 357 return;
358 } 358 }
359 359