mm/vmalloc.c: don't reinvent the wheel but use existing llist API
Although llist provides proper APIs, they are not used. Make them used. Link: http://lkml.kernel.org/r/1502095374-16112-1-git-send-email-byungchul.park@lge.com Signed-off-by: Byungchul Park <byungchul.park@lge.com> Cc: zijun_hu <zijun_hu@htc.com> Cc: Michal Hocko <mhocko@suse.com> Cc: Vlastimil Babka <vbabka@suse.cz> Cc: Joel Fernandes <joelaf@google.com> Cc: Andrey Ryabinin <aryabinin@virtuozzo.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
f113e64121
commit
894e58c147
1 changed files with 4 additions and 6 deletions
10
mm/vmalloc.c
10
mm/vmalloc.c
|
@ -49,12 +49,10 @@ static void __vunmap(const void *, int);
|
||||||
static void free_work(struct work_struct *w)
|
static void free_work(struct work_struct *w)
|
||||||
{
|
{
|
||||||
struct vfree_deferred *p = container_of(w, struct vfree_deferred, wq);
|
struct vfree_deferred *p = container_of(w, struct vfree_deferred, wq);
|
||||||
struct llist_node *llnode = llist_del_all(&p->list);
|
struct llist_node *t, *llnode;
|
||||||
while (llnode) {
|
|
||||||
void *p = llnode;
|
llist_for_each_safe(llnode, t, llist_del_all(&p->list))
|
||||||
llnode = llist_next(llnode);
|
__vunmap((void *)llnode, 1);
|
||||||
__vunmap(p, 1);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*** Page table manipulation functions ***/
|
/*** Page table manipulation functions ***/
|
||||||
|
|
Loading…
Reference in a new issue