projects
/
platform
/
kernel
/
linux-3.10.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d171235
)
net: af_unix should use KERN_INFO instead of KERN_DEBUG
author
Eric Dumazet
<dada1@cosmosbay.com>
Wed, 19 Nov 2008 23:48:09 +0000
(15:48 -0800)
committer
David S. Miller
<davem@davemloft.net>
Wed, 19 Nov 2008 23:48:09 +0000
(15:48 -0800)
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>
net/unix/af_unix.c
patch
|
blob
|
history
diff --git
a/net/unix/af_unix.c
b/net/unix/af_unix.c
index
ebc4a9a
..
e1ca8f7
100644
(file)
--- 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;
}