Magellan Linux

Contents of /tags/kernel26-xen-2_6_25_r1-fedora9-patches/kernel26-xen/patches-2.6.25-r1/1025-2.6.25-xen-Handle-VSYSCALL_FIRST_PAGE-on-xen_set_pte.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 608 - (show annotations) (download)
Fri May 23 12:17:32 2008 UTC (16 years ago) by (unknown author)
File size: 813 byte(s)
This commit was manufactured by cvs2svn to create tag
'kernel26-xen-2_6_25_r1-fedora9-patches'.
1 From 98731e0f114220a90541120ffce6bf72555e0c8e Mon Sep 17 00:00:00 2001
2 From: Eduardo Habkost <ehabkost@redhat.com>
3 Date: Fri, 7 Mar 2008 18:53:28 -0300
4 Subject: [PATCH] Handle VSYSCALL_FIRST_PAGE on xen_set_pte()
5
6 Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
7 ---
8 arch/x86/xen/enlighten.c | 3 +++
9 1 files changed, 3 insertions(+), 0 deletions(-)
10
11 diff --git a/arch/x86/xen/enlighten.c b/arch/x86/xen/enlighten.c
12 index 22e0d41..bcb8835 100644
13 --- a/arch/x86/xen/enlighten.c
14 +++ b/arch/x86/xen/enlighten.c
15 @@ -980,6 +980,9 @@ static void xen_set_fixmap(unsigned idx, unsigned long phys, pgprot_t prot)
16 #ifdef CONFIG_X86_LOCAL_APIC
17 case FIX_APIC_BASE: /* maps dummy local APIC */
18 #endif
19 +#ifdef CONFIG_X86_64
20 + case VSYSCALL_FIRST_PAGE:
21 +#endif
22 pte = pfn_pte(phys, prot);
23 break;
24
25 --
26 1.5.4.1
27