Magellan Linux

Annotation of /trunk/kernel26-xen/patches-2.6.25-r1/1081-2.6.25-xen-Call-paravirt_pagetable_setup_-start-done-REVIEW.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 606 - (hide annotations) (download)
Thu May 22 23:13:13 2008 UTC (16 years, 1 month ago) by niro
File size: 862 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 niro 606 From d049728e9303ec5240a26c94fa3fd151728b0fa3 Mon Sep 17 00:00:00 2001
2     From: Eduardo Habkost <ehabkost@redhat.com>
3     Date: Fri, 21 Dec 2007 11:57:55 -0200
4     Subject: [PATCH] Call paravirt_pagetable_setup_{start,done} (REVIEW)
5    
6     These paravirt_ops functions were not being called
7     on x86_64.
8    
9     Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
10     ---
11     arch/x86/kernel/setup_64.c | 2 ++
12     1 files changed, 2 insertions(+), 0 deletions(-)
13    
14     diff --git a/arch/x86/kernel/setup_64.c b/arch/x86/kernel/setup_64.c
15     index 5efffe8..5c44c2e 100644
16     --- a/arch/x86/kernel/setup_64.c
17     +++ b/arch/x86/kernel/setup_64.c
18     @@ -447,7 +447,9 @@ void __init setup_arch(char **cmdline_p)
19     }
20     #endif
21     reserve_crashkernel();
22     + paravirt_pagetable_setup_start(swapper_pg_dir);
23     paging_init();
24     + paravirt_pagetable_setup_done(swapper_pg_dir);
25     map_vsyscall();
26    
27     early_quirks();
28     --
29     1.5.4.1
30