Magellan Linux

Contents of /trunk/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 606 - (show annotations) (download)
Thu May 22 23:13:13 2008 UTC (16 years ago) by niro
File size: 830 byte(s)
-ver bump to 2.6.25-magellan-r1:
- linux-2.6.25.4
- fbcondecor-0.9.4
- squashfs-3.3
- unionfs-2.3.3
- tuxonice-3.0-rc7
- linux-phc-0.3.0
- acpi-dstd-0.9a
- reiser4
- xen-3.2.0
. ipw3945-1.2.2

1 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