mirror of
https://github.com/torvalds/linux.git
synced 2024-12-26 04:42:12 +00:00
[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>
This commit is contained in:
parent
3b98b087fc
commit
4cfb04a9d3
@ -727,7 +727,7 @@ done:
|
|||||||
|
|
||||||
out:
|
out:
|
||||||
if (unlikely(frozen_buffer)) /* It's usually NULL */
|
if (unlikely(frozen_buffer)) /* It's usually NULL */
|
||||||
kfree(frozen_buffer);
|
jbd_slab_free(frozen_buffer, bh->b_size);
|
||||||
|
|
||||||
JBUFFER_TRACE(jh, "exit");
|
JBUFFER_TRACE(jh, "exit");
|
||||||
return error;
|
return error;
|
||||||
|
Loading…
Reference in New Issue
Block a user