From 10fa16e75c70c8e7ec4675c5f985548a6565dca2 Mon Sep 17 00:00:00 2001 From: Eric Van Hensbergen Date: Mon, 16 Jul 2007 16:02:49 -0500 Subject: [PATCH] 9p: fix debug compilation error s/9p/v9fs.c: In function 'v9fs_parse_options': fs/9p/v9fs.c:134: error: 'p9_debug_level' undeclared (first use in this function) Signed-off-by: Dave Jones Acked-by: Eric Van Hensbergen --- fs/9p/v9fs.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fs/9p/v9fs.c b/fs/9p/v9fs.c index 45c3598..0a7068e 100644 --- a/fs/9p/v9fs.c +++ b/fs/9p/v9fs.c @@ -131,7 +131,9 @@ static void v9fs_parse_options(char *options, struct v9fs_session_info *v9ses) switch (token) { case Opt_debug: v9ses->debug = option; +#ifdef CONFIG_NET_9P_DEBUG p9_debug_level = option; +#endif break; case Opt_port: v9ses->port = option; -- 1.7.9.5