Commit b2f4edb3 authored by Wanlong Gao's avatar Wanlong Gao Committed by Theodore Ts'o

jbd2: use kmem_cache_zalloc wrapper instead of flag

Use kmem_cache_zalloc wrapper instead of flag __GFP_ZERO.
Signed-off-by: default avatarWanlong Gao <gaowanlong@cn.fujitsu.com>
Signed-off-by: default avatar"Theodore Ts'o" <tytso@mit.edu>
parent 95599968
...@@ -162,8 +162,8 @@ static int start_this_handle(journal_t *journal, handle_t *handle, ...@@ -162,8 +162,8 @@ static int start_this_handle(journal_t *journal, handle_t *handle,
alloc_transaction: alloc_transaction:
if (!journal->j_running_transaction) { if (!journal->j_running_transaction) {
new_transaction = kmem_cache_alloc(transaction_cache, new_transaction = kmem_cache_zalloc(transaction_cache,
gfp_mask | __GFP_ZERO); gfp_mask);
if (!new_transaction) { if (!new_transaction) {
/* /*
* If __GFP_FS is not present, then we may be * If __GFP_FS is not present, then we may be
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment