JBD2/Ext4: Convert kmalloc to kzalloc in jbd2/ext4
Convert kmalloc to kzalloc() and get rid of the memset(). Signed-off-by: Mingming Cao <cmm@us.ibm.com>
This commit is contained in:

committed by
Theodore Ts'o

parent
2d917969bc
commit
d802ffa885
@@ -654,10 +654,9 @@ static journal_t * journal_init_common (void)
|
||||
journal_t *journal;
|
||||
int err;
|
||||
|
||||
journal = kmalloc(sizeof(*journal), GFP_KERNEL);
|
||||
journal = kzalloc(sizeof(*journal), GFP_KERNEL|__GFP_NOFAIL);
|
||||
if (!journal)
|
||||
goto fail;
|
||||
memset(journal, 0, sizeof(*journal));
|
||||
|
||||
init_waitqueue_head(&journal->j_wait_transaction_locked);
|
||||
init_waitqueue_head(&journal->j_wait_logspace);
|
||||
|
Reference in New Issue
Block a user