Changeset 2945 in vbox for trunk/src/VBox/Devices
- Timestamp:
- May 30, 2007 5:36:51 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DevATA.cpp
r2944 r2945 4128 4128 if (s->fATAPI) 4129 4129 { 4130 if (s->fDMA) 4131 STAM_REL_COUNTER_INC(&s->StatATAPIDMA); 4132 else 4133 STAM_REL_COUNTER_INC(&s->StatATAPIPIO); 4130 if (pCtl->fChainedTransfer) 4131 { 4132 /* Only count the actual transfers, not the PIO 4133 * transfer of the ATAPI command bytes. */ 4134 if (s->fDMA) 4135 STAM_REL_COUNTER_INC(&s->StatATAPIDMA); 4136 else 4137 STAM_REL_COUNTER_INC(&s->StatATAPIPIO); 4138 } 4134 4139 } 4135 4140 else
Note:
See TracChangeset
for help on using the changeset viewer.