Commit 99fb19d4 authored by Dan Carpenter's avatar Dan Carpenter Committed by David Teigland

dlm: cleanup remove unused code

Smatch complains because "lkb" is never NULL.  Looking at it, the original
code actually adds the new element to the end of the list fine, so we can
just get rid of the if condition.  This code is four years old and no one
has complained so it must work.
Signed-off-by: default avatarDan Carpenter <error27@gmail.com>
Signed-off-by: default avatarDavid Teigland <teigland@redhat.com>
parent be1066bb
...@@ -733,10 +733,7 @@ static void lkb_add_ordered(struct list_head *new, struct list_head *head, ...@@ -733,10 +733,7 @@ static void lkb_add_ordered(struct list_head *new, struct list_head *head,
if (lkb->lkb_rqmode < mode) if (lkb->lkb_rqmode < mode)
break; break;
if (!lkb) __list_add(new, lkb->lkb_statequeue.prev, &lkb->lkb_statequeue);
list_add_tail(new, head);
else
__list_add(new, lkb->lkb_statequeue.prev, &lkb->lkb_statequeue);
} }
/* add/remove lkb to rsb's grant/convert/wait queue */ /* add/remove lkb to rsb's grant/convert/wait queue */
......
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