diff mbox

[1/2] ext4 crypto: release crypto resource when module exit

Message ID 002801d099bb$13ec4610$3bc4d230$@samsung.com
State Accepted, archived
Headers show

Commit Message

Chao Yu May 29, 2015, 2:55 a.m. UTC
Crypto resource should be released when ext4 module exits, otherwise
it will cause memory leak.

Signed-off-by: Chao Yu <chao2.yu@samsung.com>
---
 fs/ext4/super.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Theodore Ts'o May 31, 2015, 5:38 p.m. UTC | #1
On Fri, May 29, 2015 at 10:55:37AM +0800, Chao Yu wrote:
> Crypto resource should be released when ext4 module exits, otherwise
> it will cause memory leak.
> 
> Signed-off-by: Chao Yu <chao2.yu@samsung.com>

Thanks, applied.

						- Ted
--
To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/fs/ext4/super.c b/fs/ext4/super.c
index aa7621f..e0952b9 100644
--- a/fs/ext4/super.c
+++ b/fs/ext4/super.c
@@ -5640,6 +5640,7 @@  out7:
 
 static void __exit ext4_exit_fs(void)
 {
+	ext4_exit_crypto();
 	ext4_destroy_lazyinit_thread();
 	unregister_as_ext2();
 	unregister_as_ext3();