diff options
author | Jeremy Fitzhardinge <jeremy@xensource.com> | 2007-07-18 05:37:07 +0400 |
---|---|---|
committer | Jeremy Fitzhardinge <jeremy@goop.org> | 2007-07-18 19:47:46 +0400 |
commit | dfdcdd42fdf63452ddd1bed6f49ae2a35dfb5d6c (patch) | |
tree | 6dacfde0710abc6a3e35b36bf54c5aad579c97e1 /arch | |
parent | 9ec2b804e099e8a326369e6cccab10dee1d172ee (diff) | |
download | linux-dfdcdd42fdf63452ddd1bed6f49ae2a35dfb5d6c.tar.xz |
xen: disable all non-virtual drivers
A domU Xen environment has no non-virtual drivers, so make sure
they're all disabled at once.
Signed-off-by: Jeremy Fitzhardinge <jeremy@xensource.com>
Cc: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/i386/xen/setup.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/i386/xen/setup.c b/arch/i386/xen/setup.c index 3f8684eba62b..2fe6eac510f0 100644 --- a/arch/i386/xen/setup.c +++ b/arch/i386/xen/setup.c @@ -91,4 +91,6 @@ void __init xen_arch_setup(void) /* fill cpus_possible with all available cpus */ xen_fill_possible_map(); #endif + + paravirt_disable_iospace(); } |