[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
1 changed files with 1 additions and 1 deletions
|
@ -727,7 +727,7 @@ do_get_write_access(handle_t *handle, struct journal_head *jh,
|
|||
|
||||
out:
|
||||
if (unlikely(frozen_buffer)) /* It's usually NULL */
|
||||
kfree(frozen_buffer);
|
||||
jbd_slab_free(frozen_buffer, bh->b_size);
|
||||
|
||||
JBUFFER_TRACE(jh, "exit");
|
||||
return error;
|
||||
|
|
Loading…
Reference in a new issue