summaryrefslogtreecommitdiffstats
path: root/sys/pccard
diff options
context:
space:
mode:
authortanimura <tanimura@FreeBSD.org>2003-11-09 09:17:26 +0000
committertanimura <tanimura@FreeBSD.org>2003-11-09 09:17:26 +0000
commit7eade05dfa5c79c8765c89ae76635f31451fe886 (patch)
tree19de3ca43ba82c3cf15a4a6c7fba917e0f7e416b /sys/pccard
parent9cbd7fa025947081790184770a6c74511b0b0a44 (diff)
downloadFreeBSD-src-7eade05dfa5c79c8765c89ae76635f31451fe886.zip
FreeBSD-src-7eade05dfa5c79c8765c89ae76635f31451fe886.tar.gz
- Implement selwakeuppri() which allows raising the priority of a
thread being waken up. The thread waken up can run at a priority as high as after tsleep(). - Replace selwakeup()s with selwakeuppri()s and pass appropriate priorities. - Add cv_broadcastpri() which raises the priority of the broadcast threads. Used by selwakeuppri() if collision occurs. Not objected in: -arch, -current
Diffstat (limited to 'sys/pccard')
-rw-r--r--sys/pccard/mecia.c2
-rw-r--r--sys/pccard/pccard.c2
-rw-r--r--sys/pccard/pcic.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/sys/pccard/mecia.c b/sys/pccard/mecia.c
index 59ef5b1..f3c5b11 100644
--- a/sys/pccard/mecia.c
+++ b/sys/pccard/mecia.c
@@ -499,7 +499,7 @@ mecia_reset(void *chan)
#endif
outb(MECIA_REG1, 0);
- selwakeup(&slt->selp);
+ selwakeuppri(&slt->selp, PZERO);
}
static void
diff --git a/sys/pccard/pccard.c b/sys/pccard/pccard.c
index 16f3a51..b1ef84a 100644
--- a/sys/pccard/pccard.c
+++ b/sys/pccard/pccard.c
@@ -162,7 +162,7 @@ disable_slot_to(struct slot *slt)
else
printf("pccard: card deactivated, slot %d\n", slt->slotnum);
pccard_remove_beep();
- selwakeup(&slt->selp);
+ selwakeuppri(&slt->selp, PZERO);
}
/*
diff --git a/sys/pccard/pcic.c b/sys/pccard/pcic.c
index 8e6677c..10271c9 100644
--- a/sys/pccard/pcic.c
+++ b/sys/pccard/pcic.c
@@ -980,7 +980,7 @@ pcic_reset(void *chan)
sp->putb(sp, PCIC_TIME_CMD1, 0xf);
sp->putb(sp, PCIC_TIME_RECOV1, 0);
}
- selwakeup(&slt->selp);
+ selwakeuppri(&slt->selp, PZERO);
}
/*
OpenPOWER on IntegriCloud