Commit 308533b4 authored by Alexander Aring's avatar Alexander Aring Committed by David Teigland
Browse files

dlm: remove schedule in receive path



Remove an explicit schedule() call in the message processing path,
in preparation for softirq message processing.

Signed-off-by: default avatarAlexander Aring <aahringo@redhat.com>
Signed-off-by: default avatarDavid Teigland <teigland@redhat.com>
parent d52c9b8f
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -2543,7 +2543,6 @@ static void process_lookup_list(struct dlm_rsb *r)
	list_for_each_entry_safe(lkb, safe, &r->res_lookup, lkb_rsb_lookup) {
		list_del_init(&lkb->lkb_rsb_lookup);
		_request_lock(r, lkb);
		schedule();
	}
}