Initial revision
[linux-2.6.git] / arch / xen / kernel / fixup.c
1 /******************************************************************************
2  * fixup.c
3  * 
4  * Binary-rewriting of certain IA32 instructions, on notification by Xen.
5  * Used to avoid repeated slow emulation of common instructions used by the
6  * user-space TLS (Thread-Local Storage) libraries.
7  * 
8  * **** NOTE ****
9  *  Issues with the binary rewriting have caused it to be removed. Instead
10  *  we rely on Xen's emulator to boot the kernel, and then print a banner
11  *  message recommending that the user disables /lib/tls.
12  * 
13  * Copyright (c) 2004, K A Fraser
14  * 
15  * This program is free software; you can redistribute it and/or modify
16  * it under the terms of the GNU General Public License as published by
17  * the Free Software Foundation; either version 2 of the License, or
18  * (at your option) any later version.
19  * 
20  * This program is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23  * GNU General Public License for more details.
24  * 
25  * You should have received a copy of the GNU General Public License
26  * along with this program; if not, write to the Free Software
27  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
28  */
29
30 #include <linux/config.h>
31 #include <linux/init.h>
32 #include <linux/sched.h>
33 #include <linux/slab.h>
34 #include <linux/kernel.h>
35 #include <linux/delay.h>
36 #include <linux/version.h>
37
38 #define DP(_f) printk(KERN_ALERT "  " _f "\n")
39
40 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
41 #define __LINKAGE fastcall
42 #else
43 #define __LINKAGE asmlinkage
44 #endif
45
46 __LINKAGE void do_fixup_4gb_segment(struct pt_regs *regs, long error_code)
47 {
48     static unsigned long printed = 0;
49     int i;
50
51     if ( !test_and_set_bit(0, &printed) )
52     {
53         HYPERVISOR_vm_assist(
54             VMASST_CMD_disable, VMASST_TYPE_4gb_segments_notify);
55
56         DP("");
57         DP("***************************************************************");
58         DP("***************************************************************");
59         DP("** WARNING: Currently emulating unsupported memory accesses  **");
60         DP("**          in /lib/tls libraries. The emulation is very     **");
61         DP("**          slow. To ensure full performance you should      **");
62         DP("**          execute the following as root:                   **");
63         DP("**          mv /lib/tls /lib/tls.disabled                    **");
64         DP("***************************************************************");
65         DP("***************************************************************");
66         DP("");
67
68         for ( i = 5; i > 0; i-- )
69         {
70             printk("Pausing... %d", i);
71             mdelay(1000);
72             printk("\b\b\b\b\b\b\b\b\b\b\b\b");
73         }
74         printk("Continuing...\n\n");
75     }
76 }
77
78 static int __init fixup_init(void)
79 {
80     // HYPERVISOR_vm_assist(VMASST_CMD_enable, VMASST_TYPE_4gb_segments_notify);
81     return 0;
82 }
83 __initcall(fixup_init);