[PATCH] llist: Use for conditional in llist_del_first()

From: Pranith Kumar
Date: Wed Oct 28 2015 - 23:53:08 EST


Simplify the code a bit by using the initializer and conditional
check in for() instead of a separate if() statement in the loop.

Signed-off-by: Pranith Kumar <bobby.prani@xxxxxxxxx>
---
lib/llist.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/lib/llist.c b/lib/llist.c
index 0b0e977..03d7aad 100644
--- a/lib/llist.c
+++ b/lib/llist.c
@@ -66,10 +66,7 @@ struct llist_node *llist_del_first(struct llist_head *head)
{
struct llist_node *entry, *old_entry, *next;

- entry = head->first;
- for (;;) {
- if (entry == NULL)
- return NULL;
+ for (entry = head->first; entry ;) {
old_entry = entry;
next = entry->next;
entry = cmpxchg(&head->first, old_entry, next);
--
2.6.2

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/