Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8cb2a7c1e95e472b5ad8cbde4d5c7bb65c532603
Commit:     8cb2a7c1e95e472b5ad8cbde4d5c7bb65c532603
Parent:     21511abd0a248a3f225d3b611cfabb93124605a7
Author:     Hugh Dickins <[EMAIL PROTECTED]>
AuthorDate: Tue Feb 5 22:26:01 2008 +0000
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Tue Feb 5 14:37:14 2008 -0800

    stop c_p_a corrupting the pds
    
    When change_page_attr splits a large page on x86_32 (without PAE), it is
    currently corrupting every process's page directory: fix that by removing
    the thinko which passes down a physical instead of a virtual address.
    
    Signed-off-by: Hugh Dickins <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 arch/x86/mm/pageattr.c |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/arch/x86/mm/pageattr.c b/arch/x86/mm/pageattr.c
index bb55a78..16ce841 100644
--- a/arch/x86/mm/pageattr.c
+++ b/arch/x86/mm/pageattr.c
@@ -237,7 +237,6 @@ static void __set_pmd_pte(pte_t *kpte, unsigned long 
address, pte_t pte)
        if (!SHARED_KERNEL_PMD) {
                struct page *page;
 
-               address = __pa(address);
                list_for_each_entry(page, &pgd_list, lru) {
                        pgd_t *pgd;
                        pud_t *pud;
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to