Skip to content

Commit 6b41e7d

Browse files
Eric Dumazetdavem330
authored andcommitted
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 <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent d171235 commit 6b41e7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

net/unix/af_unix.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ static void unix_sock_destructor(struct sock *sk)
353353
WARN_ON(!sk_unhashed(sk));
354354
WARN_ON(sk->sk_socket);
355355
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);
357357
return;
358358
}
359359

0 commit comments

Comments
 (0)