ioat(4): De-spam ioat_process_events KTR logs

Sponsored by:	Dell EMC Isilon
This commit is contained in:
Conrad Meyer 2016-09-11 20:14:19 +00:00
parent e64f232fb2
commit dc46505973
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=305710

View File

@ -663,8 +663,6 @@ ioat_process_events(struct ioat_softc *ioat)
boolean_t pending;
int error;
CTR2(KTR_IOAT, "%s channel=%u", __func__, ioat->chan_idx);
mtx_lock(&ioat->cleanup_lock);
/*
@ -679,8 +677,6 @@ ioat_process_events(struct ioat_softc *ioat)
completed = 0;
comp_update = ioat_get_chansts(ioat);
CTR4(KTR_IOAT, "%s channel=%u hw_status=0x%lx last_seen=0x%lx",
__func__, ioat->chan_idx, comp_update, ioat->last_seen);
status = comp_update & IOAT_CHANSTS_COMPLETED_DESCRIPTOR_MASK;
if (status == ioat->last_seen) {
@ -690,6 +686,8 @@ ioat_process_events(struct ioat_softc *ioat)
*/
goto out;
}
CTR4(KTR_IOAT, "%s channel=%u hw_status=0x%lx last_seen=0x%lx",
__func__, ioat->chan_idx, comp_update, ioat->last_seen);
desc = ioat_get_ring_entry(ioat, ioat->tail - 1);
while (desc->hw_desc_bus_addr != status && ioat_get_active(ioat) > 0) {