Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 43072
b: refs/heads/master
c: c9ccf30
h: refs/heads/master
v: v3
  • Loading branch information
Rusty Russell authored and Andi Kleen committed Dec 7, 2006
1 parent bfe9453 commit fc29ba8
Show file tree
Hide file tree
Showing 6 changed files with 51 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d7cd56111f30259e1b532a12e06f59f8e0a20355
refs/heads/master: c9ccf30d77f04064fe5436027ab9d2230c7cdd94
2 changes: 2 additions & 0 deletions trunk/arch/i386/kernel/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ obj-$(CONFIG_VM86) += vm86.o
obj-$(CONFIG_EARLY_PRINTK) += early_printk.o
obj-$(CONFIG_HPET_TIMER) += hpet.o
obj-$(CONFIG_K8_NB) += k8.o

# Make sure this is linked after any other paravirt_ops structs: see head.S
obj-$(CONFIG_PARAVIRT) += paravirt.o

EXTRA_AFLAGS := -traditional
Expand Down
33 changes: 33 additions & 0 deletions trunk/arch/i386/kernel/head.S
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,12 @@
*/
ENTRY(startup_32)

#ifdef CONFIG_PARAVIRT
movl %cs, %eax
testl $0x3, %eax
jnz startup_paravirt
#endif

/*
* Set segments to known values.
*/
Expand Down Expand Up @@ -486,6 +492,33 @@ ignore_int:
#endif
iret

#ifdef CONFIG_PARAVIRT
startup_paravirt:
cld
movl $(init_thread_union+THREAD_SIZE),%esp

/* We take pains to preserve all the regs. */
pushl %edx
pushl %ecx
pushl %eax

/* paravirt.o is last in link, and that probe fn never returns */
pushl $__start_paravirtprobe
1:
movl 0(%esp), %eax
pushl (%eax)
movl 8(%esp), %eax
call *(%esp)
popl %eax

movl 4(%esp), %eax
movl 8(%esp), %ecx
movl 12(%esp), %edx

addl $4, (%esp)
jmp 1b
#endif

/*
* Real beginning of normal "text" segment
*/
Expand Down
4 changes: 4 additions & 0 deletions trunk/arch/i386/kernel/paravirt.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
#include <linux/module.h>
#include <linux/efi.h>
#include <linux/bcd.h>
#include <linux/start_kernel.h>

#include <asm/bug.h>
#include <asm/paravirt.h>
Expand Down Expand Up @@ -387,6 +388,9 @@ static int __init print_banner(void)
}
core_initcall(print_banner);

/* We simply declare start_kernel to be the paravirt probe of last resort. */
paravirt_probe(start_kernel);

struct paravirt_ops paravirt_ops = {
.name = "bare hardware",
.paravirt_enabled = 0,
Expand Down
6 changes: 6 additions & 0 deletions trunk/arch/i386/kernel/vmlinux.lds.S
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,12 @@ SECTIONS
CONSTRUCTORS
} :data

__start_paravirtprobe = .;
.paravirtprobe : AT(ADDR(.paravirtprobe) - LOAD_OFFSET) {
*(.paravirtprobe)
}
__stop_paravirtprobe = .;

. = ALIGN(4096);
.data_nosave : AT(ADDR(.data_nosave) - LOAD_OFFSET) {
__nosave_begin = .;
Expand Down
5 changes: 5 additions & 0 deletions trunk/include/asm-i386/paravirt.h
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,11 @@ struct paravirt_ops
void (fastcall *iret)(void);
};

/* Mark a paravirt probe function. */
#define paravirt_probe(fn) \
static asmlinkage void (*__paravirtprobe_##fn)(void) __attribute_used__ \
__attribute__((__section__(".paravirtprobe"))) = fn

extern struct paravirt_ops paravirt_ops;

#define paravirt_enabled() (paravirt_ops.paravirt_enabled)
Expand Down

0 comments on commit fc29ba8

Please sign in to comment.