This commit was manufactured by cvs2svn to create branch 'vserver'.
[linux-2.6.git] / arch / i386 / 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, _args...) printk(KERN_ALERT "  " _f "\n" , ## _args )
39
40 fastcall void do_fixup_4gb_segment(struct pt_regs *regs, long error_code)
41 {
42         static unsigned long printed = 1;
43         char info[100];
44         int i;
45
46         if (test_and_set_bit(0, &printed))
47                 return;
48
49         HYPERVISOR_vm_assist(
50                 VMASST_CMD_disable, VMASST_TYPE_4gb_segments_notify);
51
52         sprintf(info, "%s (pid=%d)", current->comm, current->tgid);
53
54
55         DP("");
56         DP("***************************************************************");
57         DP("***************************************************************");
58         DP("** WARNING: Currently emulating unsupported memory accesses  **");
59         DP("**          in /lib/tls glibc libraries. The emulation is    **");
60         DP("**          slow. To ensure full performance you should      **");
61         DP("**          install a 'xen-friendly' (nosegneg) version of   **");
62         DP("**          the library, or disable tls support by executing **");
63         DP("**          the following as root:                           **");
64         DP("**          mv /lib/tls /lib/tls.disabled                    **");
65         DP("** Offending process: %-38.38s **", info);
66         DP("***************************************************************");
67         DP("***************************************************************");
68         DP("");
69
70         for (i = 5; i > 0; i--) {
71                 touch_softlockup_watchdog();
72                 printk("Pausing... %d", i);
73                 mdelay(1000);
74                 printk("\b\b\b\b\b\b\b\b\b\b\b\b");
75         }
76
77         printk("Continuing...\n\n");
78 }
79
80 static int __init fixup_init(void)
81 {
82         HYPERVISOR_vm_assist(
83                 VMASST_CMD_enable, VMASST_TYPE_4gb_segments_notify);
84         return 0;
85 }
86 __initcall(fixup_init);