diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2013-09-17 08:10:18 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-09-17 22:31:01 -0400 |
commit | 8061a6fa564fe0e71601632758b78d2ba737663c (patch) | |
tree | ffcf3cbd15d8b7a906d05644acd216c4a3a64200 /fs/9p | |
parent | 03da633aa7b08bdc4d86e9c2780bb89277b65cd6 (diff) |
9p: don't forget to destroy inode cache if fscache registration fails
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/9p')
-rw-r--r-- | fs/9p/v9fs.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/fs/9p/v9fs.c b/fs/9p/v9fs.c index 58e6cbce4156..08f2e1e9a7e6 100644 --- a/fs/9p/v9fs.c +++ b/fs/9p/v9fs.c | |||
@@ -603,10 +603,11 @@ static int v9fs_cache_register(void) | |||
603 | if (ret < 0) | 603 | if (ret < 0) |
604 | return ret; | 604 | return ret; |
605 | #ifdef CONFIG_9P_FSCACHE | 605 | #ifdef CONFIG_9P_FSCACHE |
606 | return fscache_register_netfs(&v9fs_cache_netfs); | 606 | ret = fscache_register_netfs(&v9fs_cache_netfs); |
607 | #else | 607 | if (ret < 0) |
608 | return ret; | 608 | v9fs_destroy_inode_cache(); |
609 | #endif | 609 | #endif |
610 | return ret; | ||
610 | } | 611 | } |
611 | 612 | ||
612 | static void v9fs_cache_unregister(void) | 613 | static void v9fs_cache_unregister(void) |