All of lore.kernel.org
 help / color / mirror / Atom feed
* [patch 1] Xen core patch : ptep_establish_new
@ 2004-11-17 23:46 Ian Pratt
  2004-11-18  2:56 ` Andrew Morton
  2004-11-18 10:11 ` Christoph Hellwig
  0 siblings, 2 replies; 6+ messages in thread
From: Ian Pratt @ 2004-11-17 23:46 UTC (permalink / raw)
  To: linux-kernel; +Cc: Ian.Pratt, akpm, Keir.Fraser, Christian.Limpach


This patch adds 'ptep_establish_new', in keeping with the
existing 'ptep_establish', but for use where a mapping is being
established where there was previously none present. This
function is useful (rather than just using set_pte) because
having the virtual address available enables a very important
optimisation for arch-xen. We introduce
HAVE_ARCH_PTEP_ESTABLISH_NEW and define a generic implementation
in asm-generic/pgtable.h, following the pattern of the existing
ptep_establish.

Signed-off-by: ian.pratt@cl.cam.ac.uk

---

diff -Nurp pristine-linux-2.6.9/include/asm-generic/pgtable.h tmp-linux-2.6.9-xen.patch/include/asm-generic/pgtable.h
--- pristine-linux-2.6.9/include/asm-generic/pgtable.h	2004-10-18 22:53:46.000000000 +0100
+++ tmp-linux-2.6.9-xen.patch/include/asm-generic/pgtable.h	2004-11-04 23:27:24.000000000 +0000
@@ -42,6 +42,13 @@ do {				  					  \
 } while (0)
 #endif
 
+#ifndef __HAVE_ARCH_PTEP_ESTABLISH_NEW
+/*
+ * Establish a mapping where none previously existed
+ */
+#define ptep_establish_new(__vma, __address, __ptep, __entry)		\
+do {									\
+	set_pte(__ptep, __entry);					\
+} while (0)
+#endif
+
 #ifndef __HAVE_ARCH_PTEP_TEST_AND_CLEAR_YOUNG
 static inline int ptep_test_and_clear_young(pte_t *ptep)
 {
diff -Nurp pristine-linux-2.6.9/mm/memory.c tmp-linux-2.6.9-xen.patch/mm/memory.c
--- pristine-linux-2.6.9/mm/memory.c	2004-10-18 22:54:07.000000000 +0100
+++ tmp-linux-2.6.9-xen.patch/mm/memory.c	2004-11-04 23:27:25.000000000 +0000
@@ -1452,7 +1452,7 @@ do_anonymous_page(struct mm_struct *mm, 
 		page_add_anon_rmap(page, vma, addr);
 	}
 
-	set_pte(page_table, entry);
+	ptep_establish_new(vma, addr, page_table, entry);
 	pte_unmap(page_table);
 
 	/* No need to invalidate - it was non-present before */
@@ -1557,7 +1557,7 @@ retry:
 		entry = mk_pte(new_page, vma->vm_page_prot);
 		if (write_access)
 			entry = maybe_mkwrite(pte_mkdirty(entry), vma);
-		set_pte(page_table, entry);
+		ptep_establish_new(vma, address, page_table, entry);
 		if (anon) {
 			lru_cache_add_active(new_page);
 			page_add_anon_rmap(new_page, vma, address);



^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2004-11-18 22:09 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-11-17 23:46 [patch 1] Xen core patch : ptep_establish_new Ian Pratt
2004-11-18  2:56 ` Andrew Morton
2004-11-18 10:11 ` Christoph Hellwig
2004-11-18 10:26   ` Ian Pratt
2004-11-18 10:29     ` Keir Fraser
2004-11-18 22:06   ` Paul Mackerras

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.