Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6b41e7dd authored by Eric Dumazet's avatar Eric Dumazet Committed by David S. Miller
Browse files

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: default avatarEric Dumazet <dada1@cosmosbay.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent d171235e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
	}