]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/commitdiff
mm/zbud.c: use list_last_entry() instead of list_tail_entry()
authorGeliang Tang <geliangtang@163.com>
Thu, 14 Jan 2016 23:22:38 +0000 (15:22 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 15 Jan 2016 19:40:52 +0000 (11:40 -0800)
list_last_entry*( has been defined in list.h, so replace
list_tail_entry() with it.

Signed-off-by: Geliang Tang <geliangtang@163.com>
Cc: Seth Jennings <sjennings@variantweb.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
mm/zbud.c

index d8a181fd779bf7344e390476d7d46819dc51c05a..b42322e50f6308f9445fe83380f29973e99864b3 100644 (file)
--- a/mm/zbud.c
+++ b/mm/zbud.c
@@ -463,9 +463,6 @@ void zbud_free(struct zbud_pool *pool, unsigned long handle)
        spin_unlock(&pool->lock);
 }
 
-#define list_tail_entry(ptr, type, member) \
-       list_entry((ptr)->prev, type, member)
-
 /**
  * zbud_reclaim_page() - evicts allocations from a pool page and frees it
  * @pool:      pool from which a page will attempt to be evicted
@@ -514,7 +511,7 @@ int zbud_reclaim_page(struct zbud_pool *pool, unsigned int retries)
                return -EINVAL;
        }
        for (i = 0; i < retries; i++) {
-               zhdr = list_tail_entry(&pool->lru, struct zbud_header, lru);
+               zhdr = list_last_entry(&pool->lru, struct zbud_header, lru);
                list_del(&zhdr->lru);
                list_del(&zhdr->buddy);
                /* Protect zbud page against free */