diff options
author | Jan Kara <jack@suse.cz> | 2013-05-03 11:41:39 +0200 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2013-05-03 11:41:39 +0200 |
commit | fb1c2d8294a60184a151ff12182446d7b930ed95 (patch) | |
tree | 4414bcf352831d84ff0ed40f694e96016ffb98cc /include | |
parent | 35e5cbc0af240778e61113286c019837e06aeec6 (diff) | |
parent | 8bb9da943a62f4ffaabba1ad745990260fbb39df (diff) |
Merge branch 'for_next' into for_linus
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/jbd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/jbd.h b/include/linux/jbd.h index c8f32975f0e4..7e0b622503c4 100644 --- a/include/linux/jbd.h +++ b/include/linux/jbd.h @@ -887,7 +887,7 @@ extern struct kmem_cache *jbd_handle_cache; static inline handle_t *jbd_alloc_handle(gfp_t gfp_flags) { - return kmem_cache_alloc(jbd_handle_cache, gfp_flags); + return kmem_cache_zalloc(jbd_handle_cache, gfp_flags); } static inline void jbd_free_handle(handle_t *handle) |