Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

[PATCH] manage-jbd-its-own-slab fix

Missed a place where I forgot to convert kfree() to kmem_cache_free() as
part of jbd-manage-its-own-slab changes.

Signed-off-by: Badari Pulavarty <pbadari@us.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by

Badari Pulavarty and committed by
Linus Torvalds
4cfb04a9 3b98b087

+1 -1
+1 -1
fs/jbd/transaction.c
··· 727 727 728 728 out: 729 729 if (unlikely(frozen_buffer)) /* It's usually NULL */ 730 - kfree(frozen_buffer); 730 + jbd_slab_free(frozen_buffer, bh->b_size); 731 731 732 732 JBUFFER_TRACE(jh, "exit"); 733 733 return error;