[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <201109011657.02407.arnd@arndb.de>
Date: Thu, 1 Sep 2011 16:57:02 +0200
From: Arnd Bergmann <arnd@...db.de>
To: Jason Baron <jbaron@...hat.com>
Cc: gregkh@...e.de, joe@...ches.com, jim.cromie@...il.com,
bvanassche@....org, linux-kernel@...r.kernel.org,
davem@...emloft.net, aloisio.almeida@...nbossa.org,
netdev@...r.kernel.org
Subject: [PATCH ] dynamic_debug: call __netdev_printk only for CONFIG_NET
__netdev_printk is only defined when CONFIG_NET is set. Since we only need
__dynamic_netdev_dbg for network drivers, we can make it conditional on the
same Kconfig symbol.
Signed-off-by: Arnd Bergmann <arnd@...db.de>
---
On Thursday 11 August 2011, Jason Baron wrote:
>
> From: Jason Baron <jbaron@...hat.com>
>
> Previously, if dynamic debug was enabled netdev_dbg() was using
> dynamic_dev_dbg() to print out the underlying msg. Fix this by making
> sure netdev_dbg() uses __netdev_printk().
>
> Cc: David S. Miller <davem@...emloft.net>
> Signed-off-by: Jason Baron <jbaron@...hat.com>
> ---
--- a/lib/dynamic_debug.c
+++ b/lib/dynamic_debug.c
@@ -504,6 +504,7 @@ int __dynamic_dev_dbg(struct _ddebug *descriptor,
}
EXPORT_SYMBOL(__dynamic_dev_dbg);
+#ifdef CONFIG_NET
int __dynamic_netdev_dbg(struct _ddebug *descriptor,
const struct net_device *dev, const char *fmt, ...)
{
@@ -527,6 +528,7 @@ int __dynamic_netdev_dbg(struct _ddebug *descriptor,
return res;
}
EXPORT_SYMBOL(__dynamic_netdev_dbg);
+#endif
static __initdata char ddebug_setup_string[1024];
static __init int ddebug_setup_query(char *str)
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists