forked from Minki/linux
dlm: fix kmalloc args
The gfp and size args were switched. Signed-off-by: David Teigland <teigland@redhat.com>
This commit is contained in:
parent
5d70828a77
commit
a22ca48068
@ -4129,7 +4129,7 @@ void dlm_recover_waiters_pre(struct dlm_ls *ls)
|
||||
struct dlm_message *ms_stub;
|
||||
int wait_type, stub_unlock_result, stub_cancel_result;
|
||||
|
||||
ms_stub = kmalloc(GFP_KERNEL, sizeof(struct dlm_message));
|
||||
ms_stub = kmalloc(sizeof(struct dlm_message), GFP_KERNEL);
|
||||
if (!ms_stub) {
|
||||
log_error(ls, "dlm_recover_waiters_pre no mem");
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user