dlm: fix kmalloc args
authorDavid Teigland <teigland@redhat.com>
Mon, 11 Jul 2011 13:40:53 +0000 (08:40 -0500)
committerDavid Teigland <teigland@redhat.com>
Mon, 11 Jul 2011 13:40:53 +0000 (08:40 -0500)
The gfp and size args were switched.

Signed-off-by: David Teigland <teigland@redhat.com>
fs/dlm/lock.c

index 84c52e6..3c72348 100644 (file)
@@ -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;