mirror of
https://git.FreeBSD.org/src.git
synced 2024-11-30 08:19:09 +00:00
Increment total_bounced busdma stat as required.
This commit is contained in:
parent
bbc14adaed
commit
0adedf6d9a
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=187911
@ -1144,6 +1144,7 @@ _bus_dmamap_sync_bp(bus_dma_tag_t dmat, bus_dmamap_t map, bus_dmasync_op_t op)
|
||||
cpu_l2cache_wb_range(bpage->vaddr,
|
||||
bpage->datacount);
|
||||
}
|
||||
dmat->bounce_zone->total_bounced++;
|
||||
}
|
||||
if (op & BUS_DMASYNC_POSTREAD) {
|
||||
if (bpage->vaddr_nocache == 0) {
|
||||
@ -1155,6 +1156,7 @@ _bus_dmamap_sync_bp(bus_dma_tag_t dmat, bus_dmamap_t map, bus_dmasync_op_t op)
|
||||
bcopy((void *)(bpage->vaddr_nocache != 0 ?
|
||||
bpage->vaddr_nocache : bpage->vaddr),
|
||||
(void *)bpage->datavaddr, bpage->datacount);
|
||||
dmat->bounce_zone->total_bounced++;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user