Commit 926c5126 authored by Joe Perches's avatar Joe Perches Committed by David S. Miller
Browse files

sock.h: Remove unused NETDEBUG macro



It's unused now, just delete it.

Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 45083497
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -2280,9 +2280,6 @@ bool sk_net_capable(const struct sock *sk, int cap);
 *	Enable debug/info messages
 */
extern int net_msg_warn;
#define NETDEBUG(fmt, args...) \
	do { if (net_msg_warn) printk(fmt,##args); } while (0)

#define LIMIT_NETDEBUG(fmt, args...) \
	do { if (net_msg_warn && net_ratelimit()) printk(fmt,##args); } while(0)