]> bbs.cooldavid.org Git - net-next-2.6.git/blame - arch/x86/kernel/alternative.c
x86-64: Modify copy_user_generic() alternatives mechanism
[net-next-2.6.git] / arch / x86 / kernel / alternative.c
CommitLineData
9a0b5817 1#include <linux/module.h>
f6a57033 2#include <linux/sched.h>
2f1dafe5 3#include <linux/mutex.h>
9a0b5817 4#include <linux/list.h>
8b5a10fc 5#include <linux/stringify.h>
19d36ccd
AK
6#include <linux/kprobes.h>
7#include <linux/mm.h>
8#include <linux/vmalloc.h>
3945dab4 9#include <linux/memory.h>
9a0b5817
GH
10#include <asm/alternative.h>
11#include <asm/sections.h>
19d36ccd 12#include <asm/pgtable.h>
8f4e956b
AK
13#include <asm/mce.h>
14#include <asm/nmi.h>
b097976e 15#include <asm/vsyscall.h>
e587cadd 16#include <asm/cacheflush.h>
78ff7fae 17#include <asm/tlbflush.h>
e587cadd 18#include <asm/io.h>
78ff7fae 19#include <asm/fixmap.h>
9a0b5817 20
ab144f5e
AK
21#define MAX_PATCH_LEN (255-1)
22
09488165
JB
23#ifdef CONFIG_HOTPLUG_CPU
24static int smp_alt_once;
9a0b5817 25
d167a518
GH
26static int __init bootonly(char *str)
27{
28 smp_alt_once = 1;
29 return 1;
30}
b7fb4af0 31__setup("smp-alt-boot", bootonly);
09488165
JB
32#else
33#define smp_alt_once 1
34#endif
35
8b5a10fc 36static int __initdata_or_module debug_alternative;
b7fb4af0 37
d167a518
GH
38static int __init debug_alt(char *str)
39{
40 debug_alternative = 1;
41 return 1;
42}
d167a518
GH
43__setup("debug-alternative", debug_alt);
44
09488165
JB
45static int noreplace_smp;
46
b7fb4af0
JF
47static int __init setup_noreplace_smp(char *str)
48{
49 noreplace_smp = 1;
50 return 1;
51}
52__setup("noreplace-smp", setup_noreplace_smp);
53
959b4fdf 54#ifdef CONFIG_PARAVIRT
8b5a10fc 55static int __initdata_or_module noreplace_paravirt = 0;
959b4fdf
JF
56
57static int __init setup_noreplace_paravirt(char *str)
58{
59 noreplace_paravirt = 1;
60 return 1;
61}
62__setup("noreplace-paravirt", setup_noreplace_paravirt);
63#endif
b7fb4af0 64
d167a518
GH
65#define DPRINTK(fmt, args...) if (debug_alternative) \
66 printk(KERN_DEBUG fmt, args)
67
8b5a10fc 68#if defined(GENERIC_NOP1) && !defined(CONFIG_X86_64)
9a0b5817
GH
69/* Use inline assembly to define this because the nops are defined
70 as inline assembly strings in the include files and we cannot
71 get them easily into strings. */
8b5a10fc 72asm("\t" __stringify(__INITRODATA_OR_MODULE) "\nintelnops: "
9a0b5817 73 GENERIC_NOP1 GENERIC_NOP2 GENERIC_NOP3 GENERIC_NOP4 GENERIC_NOP5 GENERIC_NOP6
f4be31ec
SR
74 GENERIC_NOP7 GENERIC_NOP8
75 "\t.previous");
121d7bf5 76extern const unsigned char intelnops[];
8b5a10fc
JB
77static const unsigned char *const __initconst_or_module
78intel_nops[ASM_NOP_MAX+1] = {
9a0b5817
GH
79 NULL,
80 intelnops,
81 intelnops + 1,
82 intelnops + 1 + 2,
83 intelnops + 1 + 2 + 3,
84 intelnops + 1 + 2 + 3 + 4,
85 intelnops + 1 + 2 + 3 + 4 + 5,
86 intelnops + 1 + 2 + 3 + 4 + 5 + 6,
87 intelnops + 1 + 2 + 3 + 4 + 5 + 6 + 7,
88};
d167a518
GH
89#endif
90
91#ifdef K8_NOP1
8b5a10fc 92asm("\t" __stringify(__INITRODATA_OR_MODULE) "\nk8nops: "
d167a518 93 K8_NOP1 K8_NOP2 K8_NOP3 K8_NOP4 K8_NOP5 K8_NOP6
f4be31ec
SR
94 K8_NOP7 K8_NOP8
95 "\t.previous");
121d7bf5 96extern const unsigned char k8nops[];
8b5a10fc
JB
97static const unsigned char *const __initconst_or_module
98k8_nops[ASM_NOP_MAX+1] = {
9a0b5817
GH
99 NULL,
100 k8nops,
101 k8nops + 1,
102 k8nops + 1 + 2,
103 k8nops + 1 + 2 + 3,
104 k8nops + 1 + 2 + 3 + 4,
105 k8nops + 1 + 2 + 3 + 4 + 5,
106 k8nops + 1 + 2 + 3 + 4 + 5 + 6,
107 k8nops + 1 + 2 + 3 + 4 + 5 + 6 + 7,
108};
d167a518
GH
109#endif
110
8b5a10fc
JB
111#if defined(K7_NOP1) && !defined(CONFIG_X86_64)
112asm("\t" __stringify(__INITRODATA_OR_MODULE) "\nk7nops: "
d167a518 113 K7_NOP1 K7_NOP2 K7_NOP3 K7_NOP4 K7_NOP5 K7_NOP6
f4be31ec
SR
114 K7_NOP7 K7_NOP8
115 "\t.previous");
121d7bf5 116extern const unsigned char k7nops[];
8b5a10fc
JB
117static const unsigned char *const __initconst_or_module
118k7_nops[ASM_NOP_MAX+1] = {
9a0b5817
GH
119 NULL,
120 k7nops,
121 k7nops + 1,
122 k7nops + 1 + 2,
123 k7nops + 1 + 2 + 3,
124 k7nops + 1 + 2 + 3 + 4,
125 k7nops + 1 + 2 + 3 + 4 + 5,
126 k7nops + 1 + 2 + 3 + 4 + 5 + 6,
127 k7nops + 1 + 2 + 3 + 4 + 5 + 6 + 7,
128};
d167a518
GH
129#endif
130
32c464f5 131#ifdef P6_NOP1
8b5a10fc 132asm("\t" __stringify(__INITRODATA_OR_MODULE) "\np6nops: "
32c464f5 133 P6_NOP1 P6_NOP2 P6_NOP3 P6_NOP4 P6_NOP5 P6_NOP6
f4be31ec
SR
134 P6_NOP7 P6_NOP8
135 "\t.previous");
32c464f5 136extern const unsigned char p6nops[];
8b5a10fc
JB
137static const unsigned char *const __initconst_or_module
138p6_nops[ASM_NOP_MAX+1] = {
32c464f5
JB
139 NULL,
140 p6nops,
141 p6nops + 1,
142 p6nops + 1 + 2,
143 p6nops + 1 + 2 + 3,
144 p6nops + 1 + 2 + 3 + 4,
145 p6nops + 1 + 2 + 3 + 4 + 5,
146 p6nops + 1 + 2 + 3 + 4 + 5 + 6,
147 p6nops + 1 + 2 + 3 + 4 + 5 + 6 + 7,
148};
149#endif
150
d167a518
GH
151#ifdef CONFIG_X86_64
152
153extern char __vsyscall_0;
8b5a10fc 154static const unsigned char *const *__init_or_module find_nop_table(void)
d167a518 155{
f31d731e
PA
156 if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL &&
157 boot_cpu_has(X86_FEATURE_NOPL))
158 return p6_nops;
159 else
160 return k8_nops;
d167a518
GH
161}
162
163#else /* CONFIG_X86_64 */
164
8b5a10fc 165static const unsigned char *const *__init_or_module find_nop_table(void)
9a0b5817 166{
f31d731e
PA
167 if (boot_cpu_has(X86_FEATURE_K8))
168 return k8_nops;
169 else if (boot_cpu_has(X86_FEATURE_K7))
170 return k7_nops;
171 else if (boot_cpu_has(X86_FEATURE_NOPL))
172 return p6_nops;
173 else
174 return intel_nops;
9a0b5817
GH
175}
176
d167a518
GH
177#endif /* CONFIG_X86_64 */
178
ab144f5e 179/* Use this to add nops to a buffer, then text_poke the whole buffer. */
8b5a10fc 180static void __init_or_module add_nops(void *insns, unsigned int len)
139ec7c4 181{
121d7bf5 182 const unsigned char *const *noptable = find_nop_table();
139ec7c4
RR
183
184 while (len > 0) {
185 unsigned int noplen = len;
186 if (noplen > ASM_NOP_MAX)
187 noplen = ASM_NOP_MAX;
ab144f5e 188 memcpy(insns, noptable[noplen], noplen);
139ec7c4
RR
189 insns += noplen;
190 len -= noplen;
191 }
192}
193
d167a518 194extern struct alt_instr __alt_instructions[], __alt_instructions_end[];
d167a518 195extern u8 *__smp_locks[], *__smp_locks_end[];
8b5a10fc 196static void *text_poke_early(void *addr, const void *opcode, size_t len);
d167a518 197
9a0b5817
GH
198/* Replace instructions with better alternatives for this CPU type.
199 This runs before SMP is initialized to avoid SMP problems with
200 self modifying code. This implies that assymetric systems where
201 APs have less capabilities than the boot processor are not handled.
202 Tough. Make sure you disable such features by hand. */
203
8b5a10fc
JB
204void __init_or_module apply_alternatives(struct alt_instr *start,
205 struct alt_instr *end)
9a0b5817 206{
9a0b5817 207 struct alt_instr *a;
1b1d9258 208 u8 insnbuf[MAX_PATCH_LEN];
9a0b5817 209
77bf90ed 210 DPRINTK("%s: alt table %p -> %p\n", __func__, start, end);
9a0b5817 211 for (a = start; a < end; a++) {
ab144f5e 212 u8 *instr = a->instr;
9a0b5817 213 BUG_ON(a->replacementlen > a->instrlen);
ab144f5e 214 BUG_ON(a->instrlen > sizeof(insnbuf));
9a0b5817
GH
215 if (!boot_cpu_has(a->cpuid))
216 continue;
d167a518
GH
217#ifdef CONFIG_X86_64
218 /* vsyscall code is not mapped yet. resolve it manually. */
219 if (instr >= (u8 *)VSYSCALL_START && instr < (u8*)VSYSCALL_END) {
220 instr = __va(instr - (u8*)VSYSCALL_START + (u8*)__pa_symbol(&__vsyscall_0));
221 DPRINTK("%s: vsyscall fixup: %p => %p\n",
77bf90ed 222 __func__, a->instr, instr);
d167a518
GH
223 }
224#endif
ab144f5e 225 memcpy(insnbuf, a->replacement, a->replacementlen);
1b1d9258
JB
226 if (*insnbuf == 0xe8 && a->replacementlen == 5)
227 *(s32 *)(insnbuf + 1) += a->replacement - a->instr;
ab144f5e
AK
228 add_nops(insnbuf + a->replacementlen,
229 a->instrlen - a->replacementlen);
e587cadd 230 text_poke_early(instr, insnbuf, a->instrlen);
9a0b5817
GH
231 }
232}
233
8ec4d41f
GH
234#ifdef CONFIG_SMP
235
9a0b5817
GH
236static void alternatives_smp_lock(u8 **start, u8 **end, u8 *text, u8 *text_end)
237{
238 u8 **ptr;
239
3945dab4 240 mutex_lock(&text_mutex);
9a0b5817
GH
241 for (ptr = start; ptr < end; ptr++) {
242 if (*ptr < text)
243 continue;
244 if (*ptr > text_end)
245 continue;
f88f07e0
MD
246 /* turn DS segment override prefix into lock prefix */
247 text_poke(*ptr, ((unsigned char []){0xf0}), 1);
9a0b5817 248 };
3945dab4 249 mutex_unlock(&text_mutex);
9a0b5817
GH
250}
251
252static void alternatives_smp_unlock(u8 **start, u8 **end, u8 *text, u8 *text_end)
253{
9a0b5817
GH
254 u8 **ptr;
255
b7fb4af0
JF
256 if (noreplace_smp)
257 return;
258
3945dab4 259 mutex_lock(&text_mutex);
9a0b5817
GH
260 for (ptr = start; ptr < end; ptr++) {
261 if (*ptr < text)
262 continue;
263 if (*ptr > text_end)
264 continue;
f88f07e0
MD
265 /* turn lock prefix into DS segment override prefix */
266 text_poke(*ptr, ((unsigned char []){0x3E}), 1);
9a0b5817 267 };
3945dab4 268 mutex_unlock(&text_mutex);
9a0b5817
GH
269}
270
271struct smp_alt_module {
272 /* what is this ??? */
273 struct module *mod;
274 char *name;
275
276 /* ptrs to lock prefixes */
277 u8 **locks;
278 u8 **locks_end;
279
280 /* .text segment, needed to avoid patching init code ;) */
281 u8 *text;
282 u8 *text_end;
283
284 struct list_head next;
285};
286static LIST_HEAD(smp_alt_modules);
2f1dafe5 287static DEFINE_MUTEX(smp_alt);
ca74a6f8 288static int smp_mode = 1; /* protected by smp_alt */
9a0b5817 289
8b5a10fc
JB
290void __init_or_module alternatives_smp_module_add(struct module *mod,
291 char *name,
292 void *locks, void *locks_end,
293 void *text, void *text_end)
9a0b5817
GH
294{
295 struct smp_alt_module *smp;
9a0b5817 296
b7fb4af0
JF
297 if (noreplace_smp)
298 return;
299
9a0b5817
GH
300 if (smp_alt_once) {
301 if (boot_cpu_has(X86_FEATURE_UP))
302 alternatives_smp_unlock(locks, locks_end,
303 text, text_end);
304 return;
305 }
306
307 smp = kzalloc(sizeof(*smp), GFP_KERNEL);
308 if (NULL == smp)
309 return; /* we'll run the (safe but slow) SMP code then ... */
310
311 smp->mod = mod;
312 smp->name = name;
313 smp->locks = locks;
314 smp->locks_end = locks_end;
315 smp->text = text;
316 smp->text_end = text_end;
317 DPRINTK("%s: locks %p -> %p, text %p -> %p, name %s\n",
77bf90ed 318 __func__, smp->locks, smp->locks_end,
9a0b5817
GH
319 smp->text, smp->text_end, smp->name);
320
2f1dafe5 321 mutex_lock(&smp_alt);
9a0b5817
GH
322 list_add_tail(&smp->next, &smp_alt_modules);
323 if (boot_cpu_has(X86_FEATURE_UP))
324 alternatives_smp_unlock(smp->locks, smp->locks_end,
325 smp->text, smp->text_end);
2f1dafe5 326 mutex_unlock(&smp_alt);
9a0b5817
GH
327}
328
8b5a10fc 329void __init_or_module alternatives_smp_module_del(struct module *mod)
9a0b5817
GH
330{
331 struct smp_alt_module *item;
9a0b5817 332
b7fb4af0 333 if (smp_alt_once || noreplace_smp)
9a0b5817
GH
334 return;
335
2f1dafe5 336 mutex_lock(&smp_alt);
9a0b5817
GH
337 list_for_each_entry(item, &smp_alt_modules, next) {
338 if (mod != item->mod)
339 continue;
340 list_del(&item->next);
2f1dafe5 341 mutex_unlock(&smp_alt);
77bf90ed 342 DPRINTK("%s: %s\n", __func__, item->name);
9a0b5817
GH
343 kfree(item);
344 return;
345 }
2f1dafe5 346 mutex_unlock(&smp_alt);
9a0b5817
GH
347}
348
349void alternatives_smp_switch(int smp)
350{
351 struct smp_alt_module *mod;
9a0b5817 352
3047e99e
IM
353#ifdef CONFIG_LOCKDEP
354 /*
17abecfe
IM
355 * Older binutils section handling bug prevented
356 * alternatives-replacement from working reliably.
357 *
358 * If this still occurs then you should see a hang
359 * or crash shortly after this line:
3047e99e 360 */
17abecfe 361 printk("lockdep: fixing up alternatives.\n");
3047e99e
IM
362#endif
363
b7fb4af0 364 if (noreplace_smp || smp_alt_once)
9a0b5817
GH
365 return;
366 BUG_ON(!smp && (num_online_cpus() > 1));
367
2f1dafe5 368 mutex_lock(&smp_alt);
ca74a6f8
AK
369
370 /*
371 * Avoid unnecessary switches because it forces JIT based VMs to
372 * throw away all cached translations, which can be quite costly.
373 */
374 if (smp == smp_mode) {
375 /* nothing */
376 } else if (smp) {
9a0b5817 377 printk(KERN_INFO "SMP alternatives: switching to SMP code\n");
53756d37
JF
378 clear_cpu_cap(&boot_cpu_data, X86_FEATURE_UP);
379 clear_cpu_cap(&cpu_data(0), X86_FEATURE_UP);
9a0b5817
GH
380 list_for_each_entry(mod, &smp_alt_modules, next)
381 alternatives_smp_lock(mod->locks, mod->locks_end,
382 mod->text, mod->text_end);
383 } else {
384 printk(KERN_INFO "SMP alternatives: switching to UP code\n");
53756d37
JF
385 set_cpu_cap(&boot_cpu_data, X86_FEATURE_UP);
386 set_cpu_cap(&cpu_data(0), X86_FEATURE_UP);
9a0b5817
GH
387 list_for_each_entry(mod, &smp_alt_modules, next)
388 alternatives_smp_unlock(mod->locks, mod->locks_end,
389 mod->text, mod->text_end);
390 }
ca74a6f8 391 smp_mode = smp;
2f1dafe5 392 mutex_unlock(&smp_alt);
9a0b5817
GH
393}
394
8ec4d41f
GH
395#endif
396
139ec7c4 397#ifdef CONFIG_PARAVIRT
8b5a10fc
JB
398void __init_or_module apply_paravirt(struct paravirt_patch_site *start,
399 struct paravirt_patch_site *end)
139ec7c4 400{
98de032b 401 struct paravirt_patch_site *p;
ab144f5e 402 char insnbuf[MAX_PATCH_LEN];
139ec7c4 403
959b4fdf
JF
404 if (noreplace_paravirt)
405 return;
406
139ec7c4
RR
407 for (p = start; p < end; p++) {
408 unsigned int used;
409
ab144f5e 410 BUG_ON(p->len > MAX_PATCH_LEN);
d34fda4a
CW
411 /* prep the buffer with the original instructions */
412 memcpy(insnbuf, p->instr, p->len);
93b1eab3
JF
413 used = pv_init_ops.patch(p->instrtype, p->clobbers, insnbuf,
414 (unsigned long)p->instr, p->len);
7f63c41c 415
63f70270
JF
416 BUG_ON(used > p->len);
417
139ec7c4 418 /* Pad the rest with nops */
ab144f5e 419 add_nops(insnbuf + used, p->len - used);
e587cadd 420 text_poke_early(p->instr, insnbuf, p->len);
139ec7c4 421 }
139ec7c4 422}
98de032b 423extern struct paravirt_patch_site __start_parainstructions[],
139ec7c4
RR
424 __stop_parainstructions[];
425#endif /* CONFIG_PARAVIRT */
426
9a0b5817
GH
427void __init alternative_instructions(void)
428{
8f4e956b
AK
429 /* The patching is not fully atomic, so try to avoid local interruptions
430 that might execute the to be patched code.
431 Other CPUs are not running. */
432 stop_nmi();
123aa76e
AK
433
434 /*
435 * Don't stop machine check exceptions while patching.
436 * MCEs only happen when something got corrupted and in this
437 * case we must do something about the corruption.
438 * Ignoring it is worse than a unlikely patching race.
439 * Also machine checks tend to be broadcast and if one CPU
440 * goes into machine check the others follow quickly, so we don't
441 * expect a machine check to cause undue problems during to code
442 * patching.
443 */
8f4e956b 444
9a0b5817
GH
445 apply_alternatives(__alt_instructions, __alt_instructions_end);
446
447 /* switch to patch-once-at-boottime-only mode and free the
448 * tables in case we know the number of CPUs will never ever
449 * change */
450#ifdef CONFIG_HOTPLUG_CPU
451 if (num_possible_cpus() < 2)
452 smp_alt_once = 1;
9a0b5817
GH
453#endif
454
8ec4d41f 455#ifdef CONFIG_SMP
9a0b5817
GH
456 if (smp_alt_once) {
457 if (1 == num_possible_cpus()) {
458 printk(KERN_INFO "SMP alternatives: switching to UP code\n");
53756d37
JF
459 set_cpu_cap(&boot_cpu_data, X86_FEATURE_UP);
460 set_cpu_cap(&cpu_data(0), X86_FEATURE_UP);
461
9a0b5817
GH
462 alternatives_smp_unlock(__smp_locks, __smp_locks_end,
463 _text, _etext);
464 }
9a0b5817 465 } else {
9a0b5817
GH
466 alternatives_smp_module_add(NULL, "core kernel",
467 __smp_locks, __smp_locks_end,
468 _text, _etext);
ca74a6f8
AK
469
470 /* Only switch to UP mode if we don't immediately boot others */
649c6653 471 if (num_present_cpus() == 1 || setup_max_cpus <= 1)
ca74a6f8 472 alternatives_smp_switch(0);
9a0b5817 473 }
8ec4d41f 474#endif
441d40dc 475 apply_paravirt(__parainstructions, __parainstructions_end);
8f4e956b 476
f68fd5f4
FW
477 if (smp_alt_once)
478 free_init_pages("SMP alternatives",
479 (unsigned long)__smp_locks,
480 (unsigned long)__smp_locks_end);
481
8f4e956b 482 restart_nmi();
9a0b5817 483}
19d36ccd 484
e587cadd
MD
485/**
486 * text_poke_early - Update instructions on a live kernel at boot time
487 * @addr: address to modify
488 * @opcode: source of the copy
489 * @len: length to copy
490 *
19d36ccd
AK
491 * When you use this code to patch more than one byte of an instruction
492 * you need to make sure that other CPUs cannot execute this code in parallel.
e587cadd
MD
493 * Also no thread must be currently preempted in the middle of these
494 * instructions. And on the local CPU you need to be protected again NMI or MCE
495 * handlers seeing an inconsistent instruction while you patch.
19d36ccd 496 */
8b5a10fc
JB
497static void *__init_or_module text_poke_early(void *addr, const void *opcode,
498 size_t len)
19d36ccd 499{
e587cadd
MD
500 unsigned long flags;
501 local_irq_save(flags);
19d36ccd 502 memcpy(addr, opcode, len);
e587cadd 503 sync_core();
5367b688 504 local_irq_restore(flags);
e587cadd
MD
505 /* Could also do a CLFLUSH here to speed up CPU recovery; but
506 that causes hangs on some VIA CPUs. */
507 return addr;
508}
509
510/**
511 * text_poke - Update instructions on a live kernel
512 * @addr: address to modify
513 * @opcode: source of the copy
514 * @len: length to copy
515 *
516 * Only atomic text poke/set should be allowed when not doing early patching.
517 * It means the size must be writable atomically and the address must be aligned
518 * in a way that permits an atomic write. It also makes sure we fit on a single
519 * page.
78ff7fae
MH
520 *
521 * Note: Must be called under text_mutex.
e587cadd
MD
522 */
523void *__kprobes text_poke(void *addr, const void *opcode, size_t len)
524{
78ff7fae 525 unsigned long flags;
e587cadd 526 char *vaddr;
b7b66baa
MD
527 struct page *pages[2];
528 int i;
e587cadd 529
b7b66baa
MD
530 if (!core_kernel_text((unsigned long)addr)) {
531 pages[0] = vmalloc_to_page(addr);
532 pages[1] = vmalloc_to_page(addr + PAGE_SIZE);
15a601eb 533 } else {
b7b66baa 534 pages[0] = virt_to_page(addr);
00c6b2d5 535 WARN_ON(!PageReserved(pages[0]));
b7b66baa 536 pages[1] = virt_to_page(addr + PAGE_SIZE);
e587cadd 537 }
b7b66baa 538 BUG_ON(!pages[0]);
7cf49427 539 local_irq_save(flags);
78ff7fae
MH
540 set_fixmap(FIX_TEXT_POKE0, page_to_phys(pages[0]));
541 if (pages[1])
542 set_fixmap(FIX_TEXT_POKE1, page_to_phys(pages[1]));
543 vaddr = (char *)fix_to_virt(FIX_TEXT_POKE0);
b7b66baa 544 memcpy(&vaddr[(unsigned long)addr & ~PAGE_MASK], opcode, len);
78ff7fae
MH
545 clear_fixmap(FIX_TEXT_POKE0);
546 if (pages[1])
547 clear_fixmap(FIX_TEXT_POKE1);
548 local_flush_tlb();
19d36ccd 549 sync_core();
a534b679
AK
550 /* Could also do a CLFLUSH here to speed up CPU recovery; but
551 that causes hangs on some VIA CPUs. */
b7b66baa
MD
552 for (i = 0; i < len; i++)
553 BUG_ON(((char *)addr)[i] != ((char *)opcode)[i]);
7cf49427 554 local_irq_restore(flags);
e587cadd 555 return addr;
19d36ccd 556}