summaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorEric Sandeen <sandeen@redhat.com>2013-07-26 15:21:11 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-08-14 22:59:05 -0700
commit9aff080cc65e4eb6af8909d2efc1dc0b72fbbc9c (patch)
tree79f681062546079292231ca9ba86e750f1ed19b7 /fs
parentab9530578e03d7fc00f41f4c406d213d81579de0 (diff)
downloadlinux-3.10-9aff080cc65e4eb6af8909d2efc1dc0b72fbbc9c.tar.gz
linux-3.10-9aff080cc65e4eb6af8909d2efc1dc0b72fbbc9c.tar.bz2
linux-3.10-9aff080cc65e4eb6af8909d2efc1dc0b72fbbc9c.zip
ext4: destroy ext4_es_cachep on module unload
commit dd12ed144e9797094c04736f97aa27d5fe401476 upstream. Without this, module can't be reloaded. [ 500.521980] kmem_cache_sanity_check (ext4_extent_status): Cache name already exists. Signed-off-by: Eric Sandeen <sandeen@redhat.com> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'fs')
-rw-r--r--fs/ext4/super.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/ext4/super.c b/fs/ext4/super.c
index 6681c037b99..2bf2f33107d 100644
--- a/fs/ext4/super.c
+++ b/fs/ext4/super.c
@@ -5400,6 +5400,7 @@ static void __exit ext4_exit_fs(void)
kset_unregister(ext4_kset);
ext4_exit_system_zone();
ext4_exit_pageio();
+ ext4_exit_es();
}
MODULE_AUTHOR("Remy Card, Stephen Tweedie, Andrew Morton, Andreas Dilger, Theodore Ts'o and others");