diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-17 15:23:50 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-17 15:23:50 -0700 |
commit | 6dfce901a450534d046b7950682243d5fb665783 (patch) | |
tree | 896572d34cc4c5149dcd83a260018d22d7f58dce | |
parent | 96a6099d2fb448cc06401386c7703a6ca015ac3d (diff) | |
parent | 10fa16e75c70c8e7ec4675c5f985548a6565dca2 (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs:
9p: fix debug compilation error
-rw-r--r-- | fs/9p/v9fs.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/9p/v9fs.c b/fs/9p/v9fs.c index 45c35986d49..0a7068e30ec 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; |