[dahdi-commits] sruffell: linux/trunk r10485 - /linux/trunk/drivers/dahdi/xpp/xproto.c
SVN commits to the DAHDI project
dahdi-commits at lists.digium.com
Thu Mar 15 10:41:44 CDT 2012
Author: sruffell
Date: Thu Mar 15 10:41:40 2012
New Revision: 10485
URL: http://svnview.digium.com/svn/dahdi?view=rev&rev=10485
Log:
xpp: '%d' -> '%lu' when displaying module_refcount on kernel versions >= 3.3
Upstream commit bd77c047 "module: struct module_ref should contains long
fields" changed the return of module_refcount from int to unsigned long. This
change eliminates a warning from the string format specifier.
Signed-off-by: Shaun Ruffell <sruffell at digium.com>
Acked-by: Tzafrir Cohen <tzafrir.cohen at xorcom.com>
Modified:
linux/trunk/drivers/dahdi/xpp/xproto.c
Modified: linux/trunk/drivers/dahdi/xpp/xproto.c
URL: http://svnview.digium.com/svn/dahdi/linux/trunk/drivers/dahdi/xpp/xproto.c?view=diff&rev=10485&r1=10484&r2=10485
==============================================================================
--- linux/trunk/drivers/dahdi/xpp/xproto.c (original)
+++ linux/trunk/drivers/dahdi/xpp/xproto.c Thu Mar 15 10:41:40 2012
@@ -80,6 +80,12 @@
return xprotocol_tables[cardtype];
}
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3, 3, 0)
+#define MODULE_REFCOUNT_FORMAT "%s refcount was %d\n"
+#else
+#define MODULE_REFCOUNT_FORMAT "%s refcount was %lu\n"
+#endif
+
const xproto_table_t *xproto_get(xpd_type_t cardtype)
{
const xproto_table_t *xtable;
@@ -100,7 +106,7 @@
if (xtable) {
BUG_ON(!xtable->owner);
#ifdef CONFIG_MODULE_UNLOAD
- DBG(GENERAL, "%s refcount was %d\n", xtable->name,
+ DBG(GENERAL, MODULE_REFCOUNT_FORMAT, xtable->name,
module_refcount(xtable->owner));
#endif
if (!try_module_get(xtable->owner)) {
@@ -116,7 +122,7 @@
{
BUG_ON(!xtable);
#ifdef CONFIG_MODULE_UNLOAD
- DBG(GENERAL, "%s refcount was %d\n", xtable->name,
+ DBG(GENERAL, MODULE_REFCOUNT_FORMAT, xtable->name,
module_refcount(xtable->owner));
BUG_ON(module_refcount(xtable->owner) <= 0);
#endif
More information about the dahdi-commits
mailing list