With 9P but no 9P debug options, this error occurs: CC [M] fs/9p/v9fs.o fs/9p/v9fs.c: In function 'v9fs_parse_options': fs/9p/v9fs.c:134: error: 'p9_debug_level' undeclared (first use in this function)
The following patch moves the definition of p9_debug_level out of #ifdef and seems to fix the compilation. Signed-off-by: Meelis Roos <[EMAIL PROTECTED]> diff --git a/include/net/9p/9p.h b/include/net/9p/9p.h index 88884d3..8fc3796 100644 --- a/include/net/9p/9p.h +++ b/include/net/9p/9p.h @@ -27,6 +27,8 @@ #ifndef NET_9P_H #define NET_9P_H +extern unsigned int p9_debug_level; + #ifdef CONFIG_NET_9P_DEBUG #define P9_DEBUG_ERROR (1<<0) @@ -38,8 +40,6 @@ #define P9_DEBUG_SLABS (1<<7) #define P9_DEBUG_FCALL (1<<8) -extern unsigned int p9_debug_level; - #define P9_DPRINTK(level, format, arg...) \ do { \ if ((p9_debug_level & level) == level) \ -- Meelis Roos ([EMAIL PROTECTED]) - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/