diff options
author | Glauber Costa <gcosta@redhat.com> | 2008-02-11 14:16:05 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-04-17 11:40:47 -0400 |
commit | bc7c314d7048017caa0725b41cc577cccf4fc53b (patch) | |
tree | 91ed579fb7b9fe1ff98d7d7e9a72cfec89d878cf /arch/x86 | |
parent | 96597fd2be7070631ad0776cd8bced21415fd5e3 (diff) |
x86, vsmp: use the paravirt helpers
Signed-off-by: Glauber Costa <gcosta@redhat.com>
Signed-off-by: Ravikiran Thirumalai <kiran@scalemp.com>
Acked-by: Shai Fultheim <shai@scalemp.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/kernel/vsmp_64.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/x86/kernel/vsmp_64.c b/arch/x86/kernel/vsmp_64.c index b93ed66c754f..54202b1805da 100644 --- a/arch/x86/kernel/vsmp_64.c +++ b/arch/x86/kernel/vsmp_64.c | |||
@@ -87,6 +87,13 @@ void __init vsmp_init(void) | |||
87 | PCI_DEVICE_ID_SCALEMP_VSMP_CTL)) | 87 | PCI_DEVICE_ID_SCALEMP_VSMP_CTL)) |
88 | return; | 88 | return; |
89 | 89 | ||
90 | /* If we are, use the distinguished irq functions */ | ||
91 | pv_irq_ops.irq_disable = vsmp_irq_disable; | ||
92 | pv_irq_ops.irq_enable = vsmp_irq_enable; | ||
93 | pv_irq_ops.save_fl = vsmp_save_fl; | ||
94 | pv_irq_ops.restore_fl = vsmp_restore_fl; | ||
95 | pv_init_ops.patch = vsmp_patch; | ||
96 | |||
90 | /* set vSMP magic bits to indicate vSMP capable kernel */ | 97 | /* set vSMP magic bits to indicate vSMP capable kernel */ |
91 | cfg = read_pci_config(0, 0x1f, 0, PCI_BASE_ADDRESS_0); | 98 | cfg = read_pci_config(0, 0x1f, 0, PCI_BASE_ADDRESS_0); |
92 | address = early_ioremap(cfg, 8); | 99 | address = early_ioremap(cfg, 8); |