[PATCH 08/12] x86/mm: Remove pgd_list use from vmalloc_sync_all()

From: Ingo Molnar
Date: Thu Jun 11 2015 - 10:08:21 EST


The vmalloc() code uses vmalloc_sync_all() to synchronize changes to
the global reference kernel PGD to task PGDs.

This uses pgd_list currently, but we don't need the global list,
as we can walk the task list under RCU.

Cc: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx>
Cc: Andy Lutomirski <luto@xxxxxxxxxxxxxx>
Cc: Borislav Petkov <bp@xxxxxxxxx>
Cc: Brian Gerst <brgerst@xxxxxxxxx>
Cc: Denys Vlasenko <dvlasenk@xxxxxxxxxx>
Cc: H. Peter Anvin <hpa@xxxxxxxxx>
Cc: Linus Torvalds <torvalds@xxxxxxxxxxxxxxxxxxxx>
Cc: Peter Zijlstra <peterz@xxxxxxxxxxxxx>
Cc: Rik van Riel <riel@xxxxxxxxxx>
Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx>
Cc: Waiman Long <Waiman.Long@xxxxxx>
Cc: linux-mm@xxxxxxxxxxxxxxx
Signed-off-by: Ingo Molnar <mingo@xxxxxxxxxx>
---
arch/x86/mm/fault.c | 21 ++++++++++++++-------
arch/x86/mm/init_64.c | 3 ++-
2 files changed, 16 insertions(+), 8 deletions(-)

diff --git a/arch/x86/mm/fault.c b/arch/x86/mm/fault.c
index 50342825f221..2d587e548b59 100644
--- a/arch/x86/mm/fault.c
+++ b/arch/x86/mm/fault.c
@@ -235,24 +235,31 @@ void vmalloc_sync_all(void)
for (address = VMALLOC_START & PMD_MASK;
address >= TASK_SIZE && address < FIXADDR_TOP;
address += PMD_SIZE) {
- struct page *page;

+ struct task_struct *g, *p;
+
+ rcu_read_lock();
spin_lock(&pgd_lock);
- list_for_each_entry(page, &pgd_list, lru) {
+
+ for_each_process_thread(g, p) {
spinlock_t *pgt_lock;
- pmd_t *ret;
+ pmd_t *pmd_ret;

- /* the pgt_lock only for Xen */
- pgt_lock = &pgd_page_get_mm(page)->page_table_lock;
+ if (!p->mm)
+ continue;

+ /* The pgt_lock is only used on Xen: */
+ pgt_lock = &p->mm->page_table_lock;
spin_lock(pgt_lock);
- ret = vmalloc_sync_one(page_address(page), address);
+ pmd_ret = vmalloc_sync_one(p->mm->pgd, address);
spin_unlock(pgt_lock);

- if (!ret)
+ if (!pmd_ret)
break;
}
+
spin_unlock(&pgd_lock);
+ rcu_read_unlock();
}
}

diff --git a/arch/x86/mm/init_64.c b/arch/x86/mm/init_64.c
index beee532b76a7..730560c4873e 100644
--- a/arch/x86/mm/init_64.c
+++ b/arch/x86/mm/init_64.c
@@ -184,11 +184,12 @@ void sync_global_pgds(unsigned long start, unsigned long end)
spin_lock(&pgd_lock);

for_each_process_thread(g, p) {
- pgd_t *pgd = p->mm->pgd;
+ pgd_t *pgd;
spinlock_t *pgt_lock;

if (!p->mm)
continue;
+ pgd = p->mm->pgd;

/* The pgt_lock is only used by Xen: */
pgt_lock = &p->mm->page_table_lock;
--
2.1.4

--
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/