summaryrefslogtreecommitdiff
path: root/include/linux
diff options
context:
space:
mode:
authorLinux Build Service Account <lnxbuild@quicinc.com>2017-07-03 15:52:29 -0700
committerGerrit - the friendly Code Review server <code-review@localhost>2017-07-03 15:52:28 -0700
commitd4d87115fdce7f59fb636f1e76dc3e091b1caa0b (patch)
tree7e8abe5abb15b9ea5a85a079d2b733b2549fde4b /include/linux
parent3aa63aa4e4ec56676cb9b5b2952f23c96f5aca75 (diff)
parent0818bc7a05abb152c7c65e231edaecd9e95e3b8f (diff)
Merge "mm: refactor __purge_vmap_area_lazy()"
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/vmalloc.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/vmalloc.h b/include/linux/vmalloc.h
index 30f88955c661..cb3b51947ddd 100644
--- a/include/linux/vmalloc.h
+++ b/include/linux/vmalloc.h
@@ -4,6 +4,7 @@
#include <linux/spinlock.h>
#include <linux/init.h>
#include <linux/list.h>
+#include <linux/llist.h>
#include <asm/page.h> /* pgprot_t */
#include <linux/rbtree.h>
@@ -47,7 +48,7 @@ struct vmap_area {
unsigned long flags;
struct rb_node rb_node; /* address sorted rbtree */
struct list_head list; /* address sorted list */
- struct list_head purge_list; /* "lazy purge" list */
+ struct llist_node purge_list; /* "lazy purge" list */
struct vm_struct *vm;
struct rcu_head rcu_head;
};