ioat: Pull out timer callout delay into a constant

Pull out the timer callout delay into IOAT_INTR_TIMO and shorten it
considerably (5s -> 100ms).  Single operations do not take 5-10 seconds
and when interrupts aren't working, waiting 100ms sucks a lot less than
5s.

Sponsored by:	EMC / Isilon Storage Division
This commit is contained in:
Conrad Meyer 2015-10-24 23:44:58 +00:00
parent 567be5c2fb
commit fe720f5ae0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=289904

View File

@ -50,6 +50,8 @@ __FBSDID("$FreeBSD$");
#include "ioat_hw.h"
#include "ioat_internal.h"
#define IOAT_INTR_TIMO (hz / 10)
static int ioat_probe(device_t device);
static int ioat_attach(device_t device);
static int ioat_detach(device_t device);
@ -271,6 +273,8 @@ ioat_detach(device_t device)
ioat = DEVICE2SOFTC(device);
ioat_test_detach();
ioat_teardown_intr(ioat);
callout_drain(&ioat->timer);
pci_disable_busmaster(device);
@ -294,8 +298,6 @@ ioat_detach(device_t device)
bus_dma_tag_destroy(ioat->hw_desc_tag);
ioat_teardown_intr(ioat);
return (0);
}
@ -586,7 +588,8 @@ ioat_process_events(struct ioat_softc *ioat)
if (ioat->head == ioat->tail) {
ioat->is_completion_pending = FALSE;
callout_reset(&ioat->timer, 5 * hz, ioat_timer_callback, ioat);
callout_reset(&ioat->timer, IOAT_INTR_TIMO,
ioat_timer_callback, ioat);
}
ioat_write_chanctrl(ioat, IOAT_CHANCTRL_RUN);
@ -902,7 +905,7 @@ ioat_timer_callback(void *arg)
uint32_t chanerr;
ioat = arg;
ioat_log_message(2, "%s\n", __func__);
ioat_log_message(1, "%s\n", __func__);
if (ioat->is_completion_pending) {
status = ioat_get_chansts(ioat);
@ -934,7 +937,7 @@ ioat_timer_callback(void *arg)
mtx_unlock(&ioat->submit_lock);
if (ioat->ring_size_order > IOAT_MIN_ORDER)
callout_reset(&ioat->timer, 5 * hz,
callout_reset(&ioat->timer, IOAT_INTR_TIMO,
ioat_timer_callback, ioat);
}
}
@ -950,8 +953,8 @@ ioat_submit_single(struct ioat_softc *ioat)
if (!ioat->is_completion_pending) {
ioat->is_completion_pending = TRUE;
callout_reset(&ioat->timer, 10 * hz, ioat_timer_callback,
ioat);
callout_reset(&ioat->timer, IOAT_INTR_TIMO,
ioat_timer_callback, ioat);
}
}