Merge branch 'akpm' (patches from Andrew)
Merge misc fixes from Andrew Morton: "Three fixes" * emailed patches from Andrew Morton <akpm@linux-foundation.org>: mm: numa: disable change protection for vma(VM_HUGETLB) include/linux/dmapool.h: declare struct device mm: move zone lock to a different cache line than order-0 free page lists
This commit is contained in:
commit
b97fdef8e6
3 changed files with 8 additions and 5 deletions
|
@ -2165,8 +2165,10 @@ void task_numa_work(struct callback_head *work)
|
|||
vma = mm->mmap;
|
||||
}
|
||||
for (; vma; vma = vma->vm_next) {
|
||||
if (!vma_migratable(vma) || !vma_policy_mof(vma))
|
||||
if (!vma_migratable(vma) || !vma_policy_mof(vma) ||
|
||||
is_vm_hugetlb_page(vma)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
/*
|
||||
* Shared library pages mapped by multiple processes are not
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue