summaryrefslogtreecommitdiffstats
path: root/sys/dev/pst/pst-raid.c
diff options
context:
space:
mode:
authorsos <sos@FreeBSD.org>2002-08-18 12:20:33 +0000
committersos <sos@FreeBSD.org>2002-08-18 12:20:33 +0000
commit6da980591b6309b8a6764e2727a485f5d32023cb (patch)
treef643ddf5578f35bca199b39427fe8b8aac49fe32 /sys/dev/pst/pst-raid.c
parent0e0e2230b6cde1ee4eb206ae06221f6898357cb4 (diff)
downloadFreeBSD-src-6da980591b6309b8a6764e2727a485f5d32023cb.zip
FreeBSD-src-6da980591b6309b8a6764e2727a485f5d32023cb.tar.gz
Fix args for contigmalloc, cosmetics.
Diffstat (limited to 'sys/dev/pst/pst-raid.c')
-rw-r--r--sys/dev/pst/pst-raid.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/sys/dev/pst/pst-raid.c b/sys/dev/pst/pst-raid.c
index 9964dd2..2382576 100644
--- a/sys/dev/pst/pst-raid.c
+++ b/sys/dev/pst/pst-raid.c
@@ -72,15 +72,15 @@ static struct cdevsw pst_cdevsw = {
static struct cdevsw pstdisk_cdevsw;
struct pst_softc {
- struct iop_softc *iop;
- struct i2o_lct_entry *lct;
- struct i2o_bsa_device *info;
- dev_t device;
- struct devstat stats;
- struct disk disk;
- struct bio_queue_head queue;
- struct mtx mtx;
- int outstanding;
+ struct iop_softc *iop;
+ struct i2o_lct_entry *lct;
+ struct i2o_bsa_device *info;
+ dev_t device;
+ struct devstat stats;
+ struct disk disk;
+ struct bio_queue_head queue;
+ struct mtx mtx;
+ int outstanding;
};
struct pst_request {
@@ -254,7 +254,7 @@ pst_start(struct pst_softc *psc)
request->timeout_handle.callout = NULL;
else
request->timeout_handle =
- timeout((timeout_t*)pst_timeout, request, 20 * hz);
+ timeout((timeout_t*)pst_timeout, request, 10 * hz);
bioq_remove(&psc->queue, bp);
devstat_start_transaction(&psc->stats);
if (pst_rw(request)) {
OpenPOWER on IntegriCloud