aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
Diffstat (limited to 'arch')
-rw-r--r--arch/i386/kernel/Makefile2
-rw-r--r--arch/i386/kernel/head.S7
-rw-r--r--arch/i386/kernel/paravirt.c3
3 files changed, 6 insertions, 6 deletions
diff --git a/arch/i386/kernel/Makefile b/arch/i386/kernel/Makefile
index 97f1e961d684..223969377de4 100644
--- a/arch/i386/kernel/Makefile
+++ b/arch/i386/kernel/Makefile
@@ -41,8 +41,6 @@ obj-$(CONFIG_HPET_TIMER) += hpet.o
41obj-$(CONFIG_K8_NB) += k8.o 41obj-$(CONFIG_K8_NB) += k8.o
42 42
43obj-$(CONFIG_VMI) += vmi.o vmitime.o 43obj-$(CONFIG_VMI) += vmi.o vmitime.o
44
45# Make sure this is linked after any other paravirt_ops structs: see head.S
46obj-$(CONFIG_PARAVIRT) += paravirt.o 44obj-$(CONFIG_PARAVIRT) += paravirt.o
47 45
48EXTRA_AFLAGS := -traditional 46EXTRA_AFLAGS := -traditional
diff --git a/arch/i386/kernel/head.S b/arch/i386/kernel/head.S
index 734be5572eb9..b322f72ffaad 100644
--- a/arch/i386/kernel/head.S
+++ b/arch/i386/kernel/head.S
@@ -513,10 +513,11 @@ startup_paravirt:
513 pushl %ecx 513 pushl %ecx
514 pushl %eax 514 pushl %eax
515 515
516 /* paravirt.o is last in link, and that probe fn never returns */
517 pushl $__start_paravirtprobe 516 pushl $__start_paravirtprobe
5181: 5171:
519 movl 0(%esp), %eax 518 movl 0(%esp), %eax
519 cmpl $__stop_paravirtprobe, %eax
520 je unhandled_paravirt
520 pushl (%eax) 521 pushl (%eax)
521 movl 8(%esp), %eax 522 movl 8(%esp), %eax
522 call *(%esp) 523 call *(%esp)
@@ -528,6 +529,10 @@ startup_paravirt:
528 529
529 addl $4, (%esp) 530 addl $4, (%esp)
530 jmp 1b 531 jmp 1b
532
533unhandled_paravirt:
534 /* Nothing wanted us: we're screwed. */
535 ud2
531#endif 536#endif
532 537
533/* 538/*
diff --git a/arch/i386/kernel/paravirt.c b/arch/i386/kernel/paravirt.c
index ebe82552ad30..c156ecfa3872 100644
--- a/arch/i386/kernel/paravirt.c
+++ b/arch/i386/kernel/paravirt.c
@@ -482,9 +482,6 @@ static int __init print_banner(void)
482} 482}
483core_initcall(print_banner); 483core_initcall(print_banner);
484 484
485/* We simply declare start_kernel to be the paravirt probe of last resort. */
486paravirt_probe(start_kernel);
487
488struct paravirt_ops paravirt_ops = { 485struct paravirt_ops paravirt_ops = {
489 .name = "bare hardware", 486 .name = "bare hardware",
490 .paravirt_enabled = 0, 487 .paravirt_enabled = 0,