diff options
| author | Andrew Morton <akpm@osdl.org> | 2004-01-18 18:22:50 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.osdl.org> | 2004-01-18 18:22:50 -0800 |
| commit | d4361b6c4ee2dbd5eee1f6932b88532525bb50a7 (patch) | |
| tree | cea6411f86ae383a0d6a4f6bd6797b18637c6cef | |
| parent | 04879b04bf500585d6b015e440be3ee7bdaf9cd4 (diff) | |
[PATCH] ppc64: Fix {pte,pmd}_free vs. hash_page race by relaying actual deallocation with RCU, from Ben Herrenschmidt
From: Anton Blanchard <anton@samba.org>
Fix {pte,pmd}_free vs. hash_page race by relaying actual deallocation with
RCU, from Ben Herrenschmidt
| -rw-r--r-- | arch/ppc64/mm/init.c | 46 | ||||
| -rw-r--r-- | include/asm-ppc64/pgalloc.h | 55 | ||||
| -rw-r--r-- | include/asm-ppc64/tlb.h | 4 |
3 files changed, 99 insertions, 6 deletions
diff --git a/arch/ppc64/mm/init.c b/arch/ppc64/mm/init.c index 5634a9ecffdb..3af02c6645c5 100644 --- a/arch/ppc64/mm/init.c +++ b/arch/ppc64/mm/init.c @@ -94,6 +94,52 @@ unsigned long __max_memory; * include/asm-ppc64/tlb.h file -- tgall */ DEFINE_PER_CPU(struct mmu_gather, mmu_gathers); +DEFINE_PER_CPU(struct pte_freelist_batch *, pte_freelist_cur); +unsigned long pte_freelist_forced_free; + +static void pte_free_smp_sync(void *arg) +{ + /* Do nothing, just ensure we sync with all CPUs */ +} + +/* This is only called when we are critically out of memory + * (and fail to get a page in pte_free_tlb). + */ +void pte_free_now(struct page *ptepage) +{ + pte_freelist_forced_free++; + + smp_call_function(pte_free_smp_sync, NULL, 0, 1); + + pte_free(ptepage); +} + +static void pte_free_rcu_callback(void *arg) +{ + struct pte_freelist_batch *batch = arg; + unsigned int i; + + for (i = 0; i < batch->index; i++) + pte_free(batch->pages[i]); + free_page((unsigned long)batch); +} + +void pte_free_submit(struct pte_freelist_batch *batch) +{ + INIT_RCU_HEAD(&batch->rcu); + call_rcu(&batch->rcu, pte_free_rcu_callback, batch); +} + +void pte_free_finish(void) +{ + /* This is safe as we are holding page_table_lock */ + struct pte_freelist_batch **batchp = &__get_cpu_var(pte_freelist_cur); + + if (*batchp == NULL) + return; + pte_free_submit(*batchp); + *batchp = NULL; +} void show_mem(void) { diff --git a/include/asm-ppc64/pgalloc.h b/include/asm-ppc64/pgalloc.h index 23b0cde55e4e..43c70d211c57 100644 --- a/include/asm-ppc64/pgalloc.h +++ b/include/asm-ppc64/pgalloc.h @@ -3,7 +3,10 @@ #include <linux/mm.h> #include <linux/slab.h> +#include <linux/cpumask.h> +#include <linux/percpu.h> #include <asm/processor.h> +#include <asm/tlb.h> extern kmem_cache_t *zero_cache; @@ -40,8 +43,6 @@ pmd_free(pmd_t *pmd) kmem_cache_free(zero_cache, pmd); } -#define __pmd_free_tlb(tlb, pmd) pmd_free(pmd) - #define pmd_populate_kernel(mm, pmd, pte) pmd_set(pmd, pte) #define pmd_populate(mm, pmd, pte_page) \ pmd_populate_kernel(mm, pmd, page_address(pte_page)) @@ -62,15 +63,57 @@ pte_alloc_one(struct mm_struct *mm, unsigned long address) return NULL; } - -static inline void -pte_free_kernel(pte_t *pte) + +static inline void pte_free_kernel(pte_t *pte) { kmem_cache_free(zero_cache, pte); } #define pte_free(pte_page) pte_free_kernel(page_address(pte_page)) -#define __pte_free_tlb(tlb, pte) pte_free(pte) + +struct pte_freelist_batch +{ + struct rcu_head rcu; + unsigned int index; + struct page * pages[0]; +}; + +#define PTE_FREELIST_SIZE ((PAGE_SIZE - sizeof(struct pte_freelist_batch) / \ + sizeof(struct page *))) + +extern void pte_free_now(struct page *ptepage); +extern void pte_free_submit(struct pte_freelist_batch *batch); + +DECLARE_PER_CPU(struct pte_freelist_batch *, pte_freelist_cur); + +static inline void __pte_free_tlb(struct mmu_gather *tlb, struct page *ptepage) +{ + /* This is safe as we are holding page_table_lock */ + cpumask_t local_cpumask = cpumask_of_cpu(smp_processor_id()); + struct pte_freelist_batch **batchp = &__get_cpu_var(pte_freelist_cur); + + if (atomic_read(&tlb->mm->mm_users) < 2 || + cpus_equal(tlb->mm->cpu_vm_mask, local_cpumask)) { + pte_free(ptepage); + return; + } + + if (*batchp == NULL) { + *batchp = (struct pte_freelist_batch *)__get_free_page(GFP_ATOMIC); + if (*batchp == NULL) { + pte_free_now(ptepage); + return; + } + (*batchp)->index = 0; + } + (*batchp)->pages[(*batchp)->index++] = ptepage; + if ((*batchp)->index == PTE_FREELIST_SIZE) { + pte_free_submit(*batchp); + *batchp = NULL; + } +} + +#define __pmd_free_tlb(tlb, pmd) __pte_free_tlb(tlb, virt_to_page(pmd)) #define check_pgt_cache() do { } while (0) diff --git a/include/asm-ppc64/tlb.h b/include/asm-ppc64/tlb.h index 0a63e2811eee..42c0122d2630 100644 --- a/include/asm-ppc64/tlb.h +++ b/include/asm-ppc64/tlb.h @@ -74,6 +74,8 @@ static inline void __tlb_remove_tlb_entry(struct mmu_gather *tlb, pte_t *ptep, batch->index = i; } +extern void pte_free_finish(void); + static inline void tlb_flush(struct mmu_gather *tlb) { int cpu = smp_processor_id(); @@ -86,6 +88,8 @@ static inline void tlb_flush(struct mmu_gather *tlb) flush_hash_range(tlb->mm->context, batch->index, local); batch->index = 0; + + pte_free_finish(); } #endif /* _PPC64_TLB_H */ |
