Magellan Linux

Annotation of /tags/kernel26-xen-2_6_25_r1-fedora9-patches/kernel26-xen/patches-2.6.25-r1/1103-2.6.25-xen-DEBUG-Don-t-try-to-actually-read-the-page-on-show_.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 608 - (hide annotations) (download)
Fri May 23 12:17:32 2008 UTC (16 years, 1 month ago) by (unknown author)
File size: 830 byte(s)
This commit was manufactured by cvs2svn to create tag
'kernel26-xen-2_6_25_r1-fedora9-patches'.
1 niro 606 From af64d525a3cf617dc261392608fb7747a9379adb Mon Sep 17 00:00:00 2001
2     From: Eduardo Habkost <ehabkost@redhat.com>
3     Date: Fri, 4 Jan 2008 12:23:34 -0200
4     Subject: [PATCH] (DEBUG) Don't try to actually read the page on show_pgtable1()
5    
6     It is crashing.
7    
8     Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
9     ---
10     arch/x86/mm/init_64.c | 2 +-
11     1 files changed, 1 insertions(+), 1 deletions(-)
12    
13     diff --git a/arch/x86/mm/init_64.c b/arch/x86/mm/init_64.c
14     index 9df9ee4..48f9912 100644
15     --- a/arch/x86/mm/init_64.c
16     +++ b/arch/x86/mm/init_64.c
17     @@ -91,7 +91,7 @@ void show_pgtable1(pte_t *tbl, unsigned long addr)
18     page = vvva(pv & PHYSICAL_PAGE_MASK);
19    
20     xprintk("\npage: %p\n", page);
21     - xprintk("\npage val: %lx\n", *page);
22     + //xprintk("\npage val: %lx\n", *page);
23     }
24    
25     void show_pgtable2(pmd_t *tbl, unsigned long addr)
26     --
27     1.5.4.1
28