aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcl349@firebug.cl.cam.ac.uk <cl349@firebug.cl.cam.ac.uk>2005-06-02 13:56:30 +0000
committercl349@firebug.cl.cam.ac.uk <cl349@firebug.cl.cam.ac.uk>2005-06-02 13:56:30 +0000
commita6b2e4dcdb74000962237ec1d2640d55b5bd01b1 (patch)
tree26a34d512ad3bad5566f1e12cedcfef05001fcbb
parent9ed4cfb2cad4fe16f26e37e9aff13f6d8eb63289 (diff)
downloadxen-a6b2e4dcdb74000962237ec1d2640d55b5bd01b1.tar.gz
xen-a6b2e4dcdb74000962237ec1d2640d55b5bd01b1.tar.bz2
xen-a6b2e4dcdb74000962237ec1d2640d55b5bd01b1.zip
bitkeeper revision 1.1637.1.1 (429f100et_8vOZLTej8un3-WOmraFg)
Fix bug #68: x86_64 build break - `pgd_cache' undeclared http://bugzilla.xensource.com/cgi-bin/bugzilla/show_bug.cgi?id=68 reboot.c: Fix x86_64 build. Signed-off-by: Christian Limpach <Christian.Limpach@cl.cam.ac.uk>
-rw-r--r--linux-2.6.11-xen-sparse/arch/xen/kernel/reboot.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/linux-2.6.11-xen-sparse/arch/xen/kernel/reboot.c b/linux-2.6.11-xen-sparse/arch/xen/kernel/reboot.c
index 62c8274895..572b1a71b3 100644
--- a/linux-2.6.11-xen-sparse/arch/xen/kernel/reboot.c
+++ b/linux-2.6.11-xen-sparse/arch/xen/kernel/reboot.c
@@ -103,8 +103,10 @@ static void __do_suspend(void)
__cli();
+#ifdef __i386__
mm_pin_all();
kmem_cache_shrink(pgd_cache);
+#endif
netif_suspend();