summaryrefslogtreecommitdiff
path: root/sys/src/9/pc/mp.c
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@gmx.de>2012-07-25 23:18:26 +0200
committercinap_lenrek <cinap_lenrek@gmx.de>2012-07-25 23:18:26 +0200
commit81d43b6f9dd7f52fdfd44cc3861d8be78fa96ecb (patch)
tree69da11c9829fac309be19bc85177a1be7150b370 /sys/src/9/pc/mp.c
parentdc544a34625603602db7788156a9b4b45bd33cd8 (diff)
kernel: make mp mode and msi interrupts the default. *msi -> *nomsi
Diffstat (limited to 'sys/src/9/pc/mp.c')
-rw-r--r--sys/src/9/pc/mp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/9/pc/mp.c b/sys/src/9/pc/mp.c
index b392c6a46..7c5dcaa37 100644
--- a/sys/src/9/pc/mp.c
+++ b/sys/src/9/pc/mp.c
@@ -579,7 +579,7 @@ msiintrenable(Vctl *v)
int tbdf, vno, cap, cpu, ok64;
Pcidev *pci;
- if(getconf("*msi") == nil)
+ if(getconf("*nomsi") != nil)
return -1;
tbdf = v->tbdf;
if(tbdf == BUSUNKNOWN || BUSTYPE(tbdf) != BusPCI)