All of lore.kernel.org
 help / color / mirror / Atom feed
From: Christoph Lameter <clameter@sgi.com>
To: Andrea Arcangeli <andrea@qumranet.com>
Cc: Robin Holt <holt@sgi.com>, Avi Kivity <avi@qumranet.com>,
	Izik Eidus <izike@qumranet.com>
Cc: kvm-devel@lists.sourceforge.net
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: steiner@sgi.com, linux-kernel@vger.kernel.org, linux-mm@kvack.org
Cc: daniel.blueman@quadrics.com
Subject: [patch 2/3] mmu_notifier: Callbacks to invalidate address ranges
Date: Wed, 30 Jan 2008 20:57:52 -0800	[thread overview]
Message-ID: <20080131045812.785269387@sgi.com> (raw)
In-Reply-To: 20080131045750.855008281@sgi.com

[-- Attachment #1: mmu_invalidate_range_callbacks --]
[-- Type: text/plain, Size: 7532 bytes --]

The invalidation of address ranges in a mm_struct needs to be
performed when pages are removed or permissions etc change.

invalidate_range_begin/end() is frequently called with only mmap_sem
held. If invalidate_range_begin() is called with locks held then we
pass a flag into invalidate_range() to indicate that no sleeping is
possible.

In two cases we use invalidate_range_begin/end to invalidate
single pages because the pair allows holding off new references
(idea by Robin Holt).

do_wp_page(): We hold off new references while update the pte.

xip_unmap: We are not taking the PageLock so we cannot
use the invalidate_page mmu_rmap_notifier. invalidate_range_begin/end
stands in.

Comments state that mmap_sem must be held for
remap_pfn_range() but various drivers do not seem to do this.

Signed-off-by: Andrea Arcangeli <andrea@qumranet.com>
Signed-off-by: Robin Holt <holt@sgi.com>
Signed-off-by: Christoph Lameter <clameter@sgi.com>

---
 mm/filemap_xip.c |    4 ++++
 mm/fremap.c      |    3 +++
 mm/hugetlb.c     |    3 +++
 mm/memory.c      |   15 +++++++++++++--
 mm/mmap.c        |    2 ++
 5 files changed, 25 insertions(+), 2 deletions(-)

Index: linux-2.6/mm/fremap.c
===================================================================
--- linux-2.6.orig/mm/fremap.c	2008-01-30 20:03:05.000000000 -0800
+++ linux-2.6/mm/fremap.c	2008-01-30 20:05:39.000000000 -0800
@@ -15,6 +15,7 @@
 #include <linux/rmap.h>
 #include <linux/module.h>
 #include <linux/syscalls.h>
+#include <linux/mmu_notifier.h>
 
 #include <asm/mmu_context.h>
 #include <asm/cacheflush.h>
@@ -211,7 +212,9 @@ asmlinkage long sys_remap_file_pages(uns
 		spin_unlock(&mapping->i_mmap_lock);
 	}
 
+	mmu_notifier(invalidate_range_begin, mm, start, start + size, 0);
 	err = populate_range(mm, vma, start, size, pgoff);
+	mmu_notifier(invalidate_range_end, mm, 0);
 	if (!err && !(flags & MAP_NONBLOCK)) {
 		if (unlikely(has_write_lock)) {
 			downgrade_write(&mm->mmap_sem);
Index: linux-2.6/mm/memory.c
===================================================================
--- linux-2.6.orig/mm/memory.c	2008-01-30 20:03:05.000000000 -0800
+++ linux-2.6/mm/memory.c	2008-01-30 20:07:27.000000000 -0800
@@ -50,6 +50,7 @@
 #include <linux/delayacct.h>
 #include <linux/init.h>
 #include <linux/writeback.h>
+#include <linux/mmu_notifier.h>
 
 #include <asm/pgalloc.h>
 #include <asm/uaccess.h>
@@ -883,13 +884,16 @@ unsigned long zap_page_range(struct vm_a
 	struct mmu_gather *tlb;
 	unsigned long end = address + size;
 	unsigned long nr_accounted = 0;
+	int atomic = details ? (details->i_mmap_lock != 0) : 0;
 
 	lru_add_drain();
 	tlb = tlb_gather_mmu(mm, 0);
 	update_hiwater_rss(mm);
+	mmu_notifier(invalidate_range_begin, mm, address, end, atomic);
 	end = unmap_vmas(&tlb, vma, address, end, &nr_accounted, details);
 	if (tlb)
 		tlb_finish_mmu(tlb, address, end);
+	mmu_notifier(invalidate_range_end, mm, atomic);
 	return end;
 }
 
@@ -1318,7 +1322,7 @@ int remap_pfn_range(struct vm_area_struc
 {
 	pgd_t *pgd;
 	unsigned long next;
-	unsigned long end = addr + PAGE_ALIGN(size);
+	unsigned long start = addr, end = addr + PAGE_ALIGN(size);
 	struct mm_struct *mm = vma->vm_mm;
 	int err;
 
@@ -1352,6 +1356,7 @@ int remap_pfn_range(struct vm_area_struc
 	pfn -= addr >> PAGE_SHIFT;
 	pgd = pgd_offset(mm, addr);
 	flush_cache_range(vma, addr, end);
+	mmu_notifier(invalidate_range_begin, mm, start, end, 0);
 	do {
 		next = pgd_addr_end(addr, end);
 		err = remap_pud_range(mm, pgd, addr, next,
@@ -1359,6 +1364,7 @@ int remap_pfn_range(struct vm_area_struc
 		if (err)
 			break;
 	} while (pgd++, addr = next, addr != end);
+	mmu_notifier(invalidate_range_end, mm, 0);
 	return err;
 }
 EXPORT_SYMBOL(remap_pfn_range);
@@ -1442,10 +1448,11 @@ int apply_to_page_range(struct mm_struct
 {
 	pgd_t *pgd;
 	unsigned long next;
-	unsigned long end = addr + size;
+	unsigned long start = addr, end = addr + size;
 	int err;
 
 	BUG_ON(addr >= end);
+	mmu_notifier(invalidate_range_begin, mm, start, end, 0);
 	pgd = pgd_offset(mm, addr);
 	do {
 		next = pgd_addr_end(addr, end);
@@ -1453,6 +1460,7 @@ int apply_to_page_range(struct mm_struct
 		if (err)
 			break;
 	} while (pgd++, addr = next, addr != end);
+	mmu_notifier(invalidate_range_end, mm, 0);
 	return err;
 }
 EXPORT_SYMBOL_GPL(apply_to_page_range);
@@ -1630,6 +1638,8 @@ gotten:
 		goto oom;
 	cow_user_page(new_page, old_page, address, vma);
 
+	mmu_notifier(invalidate_range_begin, mm, address,
+				address + PAGE_SIZE - 1, 0);
 	/*
 	 * Re-check the pte - we dropped the lock
 	 */
@@ -1668,6 +1678,7 @@ gotten:
 		page_cache_release(old_page);
 unlock:
 	pte_unmap_unlock(page_table, ptl);
+	mmu_notifier(invalidate_range_end, mm, 0);
 	if (dirty_page) {
 		if (vma->vm_file)
 			file_update_time(vma->vm_file);
Index: linux-2.6/mm/mmap.c
===================================================================
--- linux-2.6.orig/mm/mmap.c	2008-01-30 20:03:05.000000000 -0800
+++ linux-2.6/mm/mmap.c	2008-01-30 20:05:39.000000000 -0800
@@ -1744,11 +1744,13 @@ static void unmap_region(struct mm_struc
 	lru_add_drain();
 	tlb = tlb_gather_mmu(mm, 0);
 	update_hiwater_rss(mm);
+	mmu_notifier(invalidate_range_begin, mm, start, end, 0);
 	unmap_vmas(&tlb, vma, start, end, &nr_accounted, NULL);
 	vm_unacct_memory(nr_accounted);
 	free_pgtables(&tlb, vma, prev? prev->vm_end: FIRST_USER_ADDRESS,
 				 next? next->vm_start: 0);
 	tlb_finish_mmu(tlb, start, end);
+	mmu_notifier(invalidate_range_end, mm, 0);
 }
 
 /*
Index: linux-2.6/mm/hugetlb.c
===================================================================
--- linux-2.6.orig/mm/hugetlb.c	2008-01-30 20:03:05.000000000 -0800
+++ linux-2.6/mm/hugetlb.c	2008-01-30 20:05:39.000000000 -0800
@@ -14,6 +14,7 @@
 #include <linux/mempolicy.h>
 #include <linux/cpuset.h>
 #include <linux/mutex.h>
+#include <linux/mmu_notifier.h>
 
 #include <asm/page.h>
 #include <asm/pgtable.h>
@@ -743,6 +744,7 @@ void __unmap_hugepage_range(struct vm_ar
 	BUG_ON(start & ~HPAGE_MASK);
 	BUG_ON(end & ~HPAGE_MASK);
 
+	mmu_notifier(invalidate_range_begin, mm, start, end, 1);
 	spin_lock(&mm->page_table_lock);
 	for (address = start; address < end; address += HPAGE_SIZE) {
 		ptep = huge_pte_offset(mm, address);
@@ -763,6 +765,7 @@ void __unmap_hugepage_range(struct vm_ar
 	}
 	spin_unlock(&mm->page_table_lock);
 	flush_tlb_range(vma, start, end);
+	mmu_notifier(invalidate_range_end, mm, 1);
 	list_for_each_entry_safe(page, tmp, &page_list, lru) {
 		list_del(&page->lru);
 		put_page(page);
Index: linux-2.6/mm/filemap_xip.c
===================================================================
--- linux-2.6.orig/mm/filemap_xip.c	2008-01-30 20:03:05.000000000 -0800
+++ linux-2.6/mm/filemap_xip.c	2008-01-30 20:05:39.000000000 -0800
@@ -13,6 +13,7 @@
 #include <linux/module.h>
 #include <linux/uio.h>
 #include <linux/rmap.h>
+#include <linux/mmu_notifier.h>
 #include <linux/sched.h>
 #include <asm/tlbflush.h>
 
@@ -189,6 +190,8 @@ __xip_unmap (struct address_space * mapp
 		address = vma->vm_start +
 			((pgoff - vma->vm_pgoff) << PAGE_SHIFT);
 		BUG_ON(address < vma->vm_start || address >= vma->vm_end);
+		mmu_notifier(invalidate_range_begin, mm, address,
+					address + PAGE_SIZE - 1, 1);
 		pte = page_check_address(page, mm, address, &ptl);
 		if (pte) {
 			/* Nuke the page table entry. */
@@ -200,6 +203,7 @@ __xip_unmap (struct address_space * mapp
 			pte_unmap_unlock(pte, ptl);
 			page_cache_release(page);
 		}
+		mmu_notifier(invalidate_range_end, mm, 1);
 	}
 	spin_unlock(&mapping->i_mmap_lock);
 }

-- 

WARNING: multiple messages have this Message-ID (diff)
From: Christoph Lameter <clameter-sJ/iWh9BUns@public.gmane.org>
To: Andrea Arcangeli <andrea-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
Cc: Peter Zijlstra
	<a.p.zijlstra-/NLkJaSkS4VmR6Xm/wNWPw@public.gmane.org>,
	linux-mm-Bw31MaZKKs3YtjvyW6yDsg@public.gmane.org,
	steiner-sJ/iWh9BUns@public.gmane.org,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	Avi Kivity <avi-atKUWr5tajBWk0Htik3J/w@public.gmane.org>,
	kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org,
	daniel.blueman-xqY44rlHlBpWk0Htik3J/w@public.gmane.org,
	Robin Holt <holt-sJ/iWh9BUns@public.gmane.org>
Subject: [patch 2/3] mmu_notifier: Callbacks to invalidate address ranges
Date: Wed, 30 Jan 2008 20:57:52 -0800	[thread overview]
Message-ID: <20080131045812.785269387@sgi.com> (raw)
In-Reply-To: 20080131045750.855008281@sgi.com

[-- Attachment #1: mmu_invalidate_range_callbacks --]
[-- Type: text/plain, Size: 7831 bytes --]

The invalidation of address ranges in a mm_struct needs to be
performed when pages are removed or permissions etc change.

invalidate_range_begin/end() is frequently called with only mmap_sem
held. If invalidate_range_begin() is called with locks held then we
pass a flag into invalidate_range() to indicate that no sleeping is
possible.

In two cases we use invalidate_range_begin/end to invalidate
single pages because the pair allows holding off new references
(idea by Robin Holt).

do_wp_page(): We hold off new references while update the pte.

xip_unmap: We are not taking the PageLock so we cannot
use the invalidate_page mmu_rmap_notifier. invalidate_range_begin/end
stands in.

Comments state that mmap_sem must be held for
remap_pfn_range() but various drivers do not seem to do this.

Signed-off-by: Andrea Arcangeli <andrea-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
Signed-off-by: Robin Holt <holt-sJ/iWh9BUns@public.gmane.org>
Signed-off-by: Christoph Lameter <clameter-sJ/iWh9BUns@public.gmane.org>

---
 mm/filemap_xip.c |    4 ++++
 mm/fremap.c      |    3 +++
 mm/hugetlb.c     |    3 +++
 mm/memory.c      |   15 +++++++++++++--
 mm/mmap.c        |    2 ++
 5 files changed, 25 insertions(+), 2 deletions(-)

Index: linux-2.6/mm/fremap.c
===================================================================
--- linux-2.6.orig/mm/fremap.c	2008-01-30 20:03:05.000000000 -0800
+++ linux-2.6/mm/fremap.c	2008-01-30 20:05:39.000000000 -0800
@@ -15,6 +15,7 @@
 #include <linux/rmap.h>
 #include <linux/module.h>
 #include <linux/syscalls.h>
+#include <linux/mmu_notifier.h>
 
 #include <asm/mmu_context.h>
 #include <asm/cacheflush.h>
@@ -211,7 +212,9 @@ asmlinkage long sys_remap_file_pages(uns
 		spin_unlock(&mapping->i_mmap_lock);
 	}
 
+	mmu_notifier(invalidate_range_begin, mm, start, start + size, 0);
 	err = populate_range(mm, vma, start, size, pgoff);
+	mmu_notifier(invalidate_range_end, mm, 0);
 	if (!err && !(flags & MAP_NONBLOCK)) {
 		if (unlikely(has_write_lock)) {
 			downgrade_write(&mm->mmap_sem);
Index: linux-2.6/mm/memory.c
===================================================================
--- linux-2.6.orig/mm/memory.c	2008-01-30 20:03:05.000000000 -0800
+++ linux-2.6/mm/memory.c	2008-01-30 20:07:27.000000000 -0800
@@ -50,6 +50,7 @@
 #include <linux/delayacct.h>
 #include <linux/init.h>
 #include <linux/writeback.h>
+#include <linux/mmu_notifier.h>
 
 #include <asm/pgalloc.h>
 #include <asm/uaccess.h>
@@ -883,13 +884,16 @@ unsigned long zap_page_range(struct vm_a
 	struct mmu_gather *tlb;
 	unsigned long end = address + size;
 	unsigned long nr_accounted = 0;
+	int atomic = details ? (details->i_mmap_lock != 0) : 0;
 
 	lru_add_drain();
 	tlb = tlb_gather_mmu(mm, 0);
 	update_hiwater_rss(mm);
+	mmu_notifier(invalidate_range_begin, mm, address, end, atomic);
 	end = unmap_vmas(&tlb, vma, address, end, &nr_accounted, details);
 	if (tlb)
 		tlb_finish_mmu(tlb, address, end);
+	mmu_notifier(invalidate_range_end, mm, atomic);
 	return end;
 }
 
@@ -1318,7 +1322,7 @@ int remap_pfn_range(struct vm_area_struc
 {
 	pgd_t *pgd;
 	unsigned long next;
-	unsigned long end = addr + PAGE_ALIGN(size);
+	unsigned long start = addr, end = addr + PAGE_ALIGN(size);
 	struct mm_struct *mm = vma->vm_mm;
 	int err;
 
@@ -1352,6 +1356,7 @@ int remap_pfn_range(struct vm_area_struc
 	pfn -= addr >> PAGE_SHIFT;
 	pgd = pgd_offset(mm, addr);
 	flush_cache_range(vma, addr, end);
+	mmu_notifier(invalidate_range_begin, mm, start, end, 0);
 	do {
 		next = pgd_addr_end(addr, end);
 		err = remap_pud_range(mm, pgd, addr, next,
@@ -1359,6 +1364,7 @@ int remap_pfn_range(struct vm_area_struc
 		if (err)
 			break;
 	} while (pgd++, addr = next, addr != end);
+	mmu_notifier(invalidate_range_end, mm, 0);
 	return err;
 }
 EXPORT_SYMBOL(remap_pfn_range);
@@ -1442,10 +1448,11 @@ int apply_to_page_range(struct mm_struct
 {
 	pgd_t *pgd;
 	unsigned long next;
-	unsigned long end = addr + size;
+	unsigned long start = addr, end = addr + size;
 	int err;
 
 	BUG_ON(addr >= end);
+	mmu_notifier(invalidate_range_begin, mm, start, end, 0);
 	pgd = pgd_offset(mm, addr);
 	do {
 		next = pgd_addr_end(addr, end);
@@ -1453,6 +1460,7 @@ int apply_to_page_range(struct mm_struct
 		if (err)
 			break;
 	} while (pgd++, addr = next, addr != end);
+	mmu_notifier(invalidate_range_end, mm, 0);
 	return err;
 }
 EXPORT_SYMBOL_GPL(apply_to_page_range);
@@ -1630,6 +1638,8 @@ gotten:
 		goto oom;
 	cow_user_page(new_page, old_page, address, vma);
 
+	mmu_notifier(invalidate_range_begin, mm, address,
+				address + PAGE_SIZE - 1, 0);
 	/*
 	 * Re-check the pte - we dropped the lock
 	 */
@@ -1668,6 +1678,7 @@ gotten:
 		page_cache_release(old_page);
 unlock:
 	pte_unmap_unlock(page_table, ptl);
+	mmu_notifier(invalidate_range_end, mm, 0);
 	if (dirty_page) {
 		if (vma->vm_file)
 			file_update_time(vma->vm_file);
Index: linux-2.6/mm/mmap.c
===================================================================
--- linux-2.6.orig/mm/mmap.c	2008-01-30 20:03:05.000000000 -0800
+++ linux-2.6/mm/mmap.c	2008-01-30 20:05:39.000000000 -0800
@@ -1744,11 +1744,13 @@ static void unmap_region(struct mm_struc
 	lru_add_drain();
 	tlb = tlb_gather_mmu(mm, 0);
 	update_hiwater_rss(mm);
+	mmu_notifier(invalidate_range_begin, mm, start, end, 0);
 	unmap_vmas(&tlb, vma, start, end, &nr_accounted, NULL);
 	vm_unacct_memory(nr_accounted);
 	free_pgtables(&tlb, vma, prev? prev->vm_end: FIRST_USER_ADDRESS,
 				 next? next->vm_start: 0);
 	tlb_finish_mmu(tlb, start, end);
+	mmu_notifier(invalidate_range_end, mm, 0);
 }
 
 /*
Index: linux-2.6/mm/hugetlb.c
===================================================================
--- linux-2.6.orig/mm/hugetlb.c	2008-01-30 20:03:05.000000000 -0800
+++ linux-2.6/mm/hugetlb.c	2008-01-30 20:05:39.000000000 -0800
@@ -14,6 +14,7 @@
 #include <linux/mempolicy.h>
 #include <linux/cpuset.h>
 #include <linux/mutex.h>
+#include <linux/mmu_notifier.h>
 
 #include <asm/page.h>
 #include <asm/pgtable.h>
@@ -743,6 +744,7 @@ void __unmap_hugepage_range(struct vm_ar
 	BUG_ON(start & ~HPAGE_MASK);
 	BUG_ON(end & ~HPAGE_MASK);
 
+	mmu_notifier(invalidate_range_begin, mm, start, end, 1);
 	spin_lock(&mm->page_table_lock);
 	for (address = start; address < end; address += HPAGE_SIZE) {
 		ptep = huge_pte_offset(mm, address);
@@ -763,6 +765,7 @@ void __unmap_hugepage_range(struct vm_ar
 	}
 	spin_unlock(&mm->page_table_lock);
 	flush_tlb_range(vma, start, end);
+	mmu_notifier(invalidate_range_end, mm, 1);
 	list_for_each_entry_safe(page, tmp, &page_list, lru) {
 		list_del(&page->lru);
 		put_page(page);
Index: linux-2.6/mm/filemap_xip.c
===================================================================
--- linux-2.6.orig/mm/filemap_xip.c	2008-01-30 20:03:05.000000000 -0800
+++ linux-2.6/mm/filemap_xip.c	2008-01-30 20:05:39.000000000 -0800
@@ -13,6 +13,7 @@
 #include <linux/module.h>
 #include <linux/uio.h>
 #include <linux/rmap.h>
+#include <linux/mmu_notifier.h>
 #include <linux/sched.h>
 #include <asm/tlbflush.h>
 
@@ -189,6 +190,8 @@ __xip_unmap (struct address_space * mapp
 		address = vma->vm_start +
 			((pgoff - vma->vm_pgoff) << PAGE_SHIFT);
 		BUG_ON(address < vma->vm_start || address >= vma->vm_end);
+		mmu_notifier(invalidate_range_begin, mm, address,
+					address + PAGE_SIZE - 1, 1);
 		pte = page_check_address(page, mm, address, &ptl);
 		if (pte) {
 			/* Nuke the page table entry. */
@@ -200,6 +203,7 @@ __xip_unmap (struct address_space * mapp
 			pte_unmap_unlock(pte, ptl);
 			page_cache_release(page);
 		}
+		mmu_notifier(invalidate_range_end, mm, 1);
 	}
 	spin_unlock(&mapping->i_mmap_lock);
 }

-- 

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/

  parent reply	other threads:[~2008-01-31  4:58 UTC|newest]

Thread overview: 181+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-01-31  4:57 [patch 0/3] [RFC] MMU Notifiers V4 Christoph Lameter
2008-01-31  4:57 ` Christoph Lameter
2008-01-31  4:57 ` [patch 1/3] mmu_notifier: Core code Christoph Lameter
2008-01-31  4:57   ` Christoph Lameter
2008-02-01  1:56   ` Jack Steiner
2008-02-01  1:56     ` Jack Steiner
2008-02-01  1:56     ` Jack Steiner
2008-02-01  2:24     ` Robin Holt
2008-02-01  2:24       ` Robin Holt
2008-02-01  2:24       ` Robin Holt
2008-02-01  2:37       ` Jack Steiner
2008-02-01  2:37         ` Jack Steiner
2008-02-01  2:37         ` Jack Steiner
2008-02-01  2:39         ` Christoph Lameter
2008-02-01  2:39           ` Christoph Lameter
2008-02-01  2:39           ` Christoph Lameter
2008-02-01  2:31   ` Robin Holt
2008-02-01  2:31     ` Robin Holt
2008-02-01  2:31     ` Robin Holt
2008-02-01  2:39     ` Christoph Lameter
2008-02-01  2:39       ` Christoph Lameter
2008-02-01  2:39       ` Christoph Lameter
2008-02-01  2:47       ` Robin Holt
2008-02-01  2:47         ` Robin Holt
2008-02-01  2:47         ` Robin Holt
2008-02-01  3:01         ` Christoph Lameter
2008-02-01  3:01           ` Christoph Lameter
2008-02-01  3:01           ` Christoph Lameter
2008-02-01  3:01       ` Jack Steiner
2008-02-01  3:01         ` Jack Steiner
2008-02-01  3:01         ` Jack Steiner
2008-02-01  3:03         ` Christoph Lameter
2008-02-01  3:03           ` Christoph Lameter
2008-02-01  3:03           ` Christoph Lameter
2008-02-01  3:52   ` Robin Holt
2008-02-01  3:52     ` Robin Holt
2008-02-01  3:52     ` Robin Holt
2008-02-01  3:58     ` Christoph Lameter
2008-02-01  3:58       ` Christoph Lameter
2008-02-01  3:58       ` Christoph Lameter
2008-02-01  4:15       ` Robin Holt
2008-02-01  4:15         ` Robin Holt
2008-02-01  4:15         ` Robin Holt
2008-02-03  1:33       ` Andrea Arcangeli
2008-02-03  1:33         ` Andrea Arcangeli
2008-02-03  1:33         ` Andrea Arcangeli
2008-02-04 19:13         ` Christoph Lameter
2008-02-04 19:13           ` Christoph Lameter
2008-02-04 19:13           ` Christoph Lameter
2008-01-31  4:57 ` Christoph Lameter [this message]
2008-01-31  4:57   ` [patch 2/3] mmu_notifier: Callbacks to invalidate address ranges Christoph Lameter
2008-01-31 12:31   ` Andrea Arcangeli
2008-01-31 12:31     ` Andrea Arcangeli
2008-01-31 12:31     ` Andrea Arcangeli
2008-01-31 20:07     ` Christoph Lameter
2008-01-31 20:07       ` Christoph Lameter
2008-01-31 20:07       ` Christoph Lameter
2008-01-31 22:01     ` mmu_notifier: close hole in fork Christoph Lameter
2008-01-31 22:01       ` Christoph Lameter
2008-01-31 22:01       ` Christoph Lameter
2008-01-31 22:16       ` mmu_notifier: reduce size of mm_struct if !CONFIG_MMU_NOTIFIER Christoph Lameter
2008-01-31 22:16         ` Christoph Lameter
2008-01-31 22:16         ` Christoph Lameter
2008-01-31 22:21       ` mmu_notifier: Move mmu_notifier_release up to get rid of the invalidat_all() callback Christoph Lameter
2008-01-31 22:21         ` Christoph Lameter
2008-01-31 22:21         ` Christoph Lameter
2008-02-01  0:13         ` Andrea Arcangeli
2008-02-01  0:13           ` Andrea Arcangeli
2008-02-01  0:13           ` Andrea Arcangeli
2008-02-01  1:52           ` Christoph Lameter
2008-02-01  1:52             ` Christoph Lameter
2008-02-01  1:52             ` Christoph Lameter
2008-02-01  1:57           ` mmu_notifier: invalidate_range for move_page_tables Christoph Lameter
2008-02-01  1:57             ` Christoph Lameter
2008-02-01  1:57             ` Christoph Lameter
2008-02-01  2:38             ` Robin Holt
2008-02-01  2:38               ` Robin Holt
2008-02-01  2:38               ` Robin Holt
2008-02-01  2:41               ` Christoph Lameter
2008-02-01  2:41                 ` Christoph Lameter
2008-02-01  2:41                 ` Christoph Lameter
2008-02-01  0:01       ` mmu_notifier: close hole in fork Andrea Arcangeli
2008-02-01  0:01         ` Andrea Arcangeli
2008-02-01  0:01         ` Andrea Arcangeli
2008-02-01  1:48         ` Christoph Lameter
2008-02-01  1:48           ` Christoph Lameter
2008-02-01  1:48           ` Christoph Lameter
2008-02-01  4:24   ` [patch 2/3] mmu_notifier: Callbacks to invalidate address ranges Robin Holt
2008-02-01  4:24     ` Robin Holt
2008-02-01  4:24     ` Robin Holt
2008-02-01  4:43     ` Christoph Lameter
2008-02-01  4:43       ` Christoph Lameter
2008-02-01  4:43       ` Christoph Lameter
2008-02-01 10:32       ` Robin Holt
2008-02-01 10:32         ` Robin Holt
2008-02-01 10:32         ` Robin Holt
2008-02-01 10:37         ` Robin Holt
2008-02-01 10:37           ` Robin Holt
2008-02-01 19:13         ` Christoph Lameter
2008-02-01 19:13           ` Christoph Lameter
2008-02-01 19:13           ` Christoph Lameter
2008-01-31  4:57 ` [patch 3/3] mmu_notifier: invalidate_page callbacks Christoph Lameter
2008-01-31  4:57   ` Christoph Lameter
2008-01-31 17:18 ` [PATCH] mmu notifiers #v5 Andrea Arcangeli
2008-01-31 17:18   ` Andrea Arcangeli
2008-01-31 17:18   ` Andrea Arcangeli
2008-01-31 20:18   ` Christoph Lameter
2008-01-31 20:18     ` Christoph Lameter
2008-01-31 20:18     ` Christoph Lameter
2008-01-31 23:09     ` Christoph Lameter
2008-01-31 23:09       ` Christoph Lameter
2008-01-31 23:41       ` Andrea Arcangeli
2008-01-31 23:41         ` Andrea Arcangeli
2008-01-31 23:41         ` Andrea Arcangeli
2008-02-01  1:44         ` Christoph Lameter
2008-02-01  1:44           ` Christoph Lameter
2008-02-01  1:44           ` Christoph Lameter
2008-02-01 12:09           ` Andrea Arcangeli
2008-02-01 12:09             ` Andrea Arcangeli
2008-02-01 12:09             ` Andrea Arcangeli
2008-02-01 19:23             ` Christoph Lameter
2008-02-01 19:23               ` Christoph Lameter
2008-02-01 19:23               ` Christoph Lameter
2008-02-03  2:17               ` Andrea Arcangeli
2008-02-03  2:17                 ` Andrea Arcangeli
2008-02-03  2:17                 ` Andrea Arcangeli
2008-02-03  3:14                 ` Jack Steiner
2008-02-03  3:14                   ` Jack Steiner
2008-02-03  3:14                   ` Jack Steiner
2008-02-03  3:33                   ` Andrea Arcangeli
2008-02-03  3:33                     ` Andrea Arcangeli
2008-02-03  3:33                     ` Andrea Arcangeli
2008-02-04 19:09                 ` Christoph Lameter
2008-02-04 19:09                   ` Christoph Lameter
2008-02-04 19:09                   ` Christoph Lameter
2008-02-05  5:25                   ` Andrea Arcangeli
2008-02-05  5:25                     ` Andrea Arcangeli
2008-02-05  6:11                     ` Christoph Lameter
2008-02-05  6:11                       ` Christoph Lameter
2008-02-05  6:11                       ` Christoph Lameter
2008-02-05 18:08                       ` Andrea Arcangeli
2008-02-05 18:08                         ` Andrea Arcangeli
2008-02-05 18:08                         ` Andrea Arcangeli
2008-02-05 18:17                         ` Christoph Lameter
2008-02-05 18:17                           ` Christoph Lameter
2008-02-05 18:17                           ` Christoph Lameter
2008-02-05 20:55                           ` Andrea Arcangeli
2008-02-05 20:55                             ` Andrea Arcangeli
2008-02-05 20:55                             ` Andrea Arcangeli
2008-02-05 22:06                             ` Christoph Lameter
2008-02-05 22:06                               ` Christoph Lameter
2008-02-05 22:06                               ` Christoph Lameter
2008-02-05 22:12                               ` Robin Holt
2008-02-05 22:12                                 ` Robin Holt
2008-02-05 22:12                                 ` Robin Holt
2008-02-05 22:26                               ` Andrea Arcangeli
2008-02-05 22:26                                 ` Andrea Arcangeli
2008-02-05 22:26                                 ` Andrea Arcangeli
2008-02-05 23:10                                 ` Christoph Lameter
2008-02-05 23:10                                   ` Christoph Lameter
2008-02-05 23:10                                   ` Christoph Lameter
2008-02-05 23:47                                   ` Andrea Arcangeli
2008-02-05 23:47                                     ` Andrea Arcangeli
2008-02-05 23:47                                     ` Andrea Arcangeli
2008-02-06  0:04                                     ` Christoph Lameter
2008-02-06  0:04                                       ` Christoph Lameter
2008-02-06  0:04                                       ` Christoph Lameter
2008-01-31 23:28     ` Andrea Arcangeli
2008-01-31 23:28       ` Andrea Arcangeli
2008-02-01  1:37       ` Christoph Lameter
2008-02-01  1:37         ` Christoph Lameter
2008-02-01  1:37         ` Christoph Lameter
2008-02-01  2:23         ` Robin Holt
2008-02-01  2:23           ` Robin Holt
2008-02-01  2:23           ` Robin Holt
2008-02-01  2:26           ` Christoph Lameter
2008-02-01  2:26             ` Christoph Lameter
2008-02-01  2:26             ` Christoph Lameter
2008-02-01 12:00         ` Andrea Arcangeli
2008-02-01 12:00           ` Andrea Arcangeli
2008-02-01 12:00           ` Andrea Arcangeli

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20080131045812.785269387@sgi.com \
    --to=clameter@sgi.com \
    --cc=andrea@qumranet.com \
    --cc=avi@qumranet.com \
    --cc=holt@sgi.com \
    --cc=izike@qumranet.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.