Changeset 15508 in vbox for trunk/src/VBox/Devices/Storage/DevATA.cpp
- Timestamp:
- Dec 15, 2008 3:05:16 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DevATA.cpp
r15252 r15508 201 201 /** Pointer to the I/O buffer. */ 202 202 RCPTRTYPE(uint8_t *) pbIOBufferRC; 203 203 204 204 RTRCPTR Aligmnent1; /**< Align the statistics at an 8-byte boundrary. */ 205 205 … … 5588 5588 pIf->cbIOBuffer = ATA_MAX_MULT_SECTORS * 512; 5589 5589 Assert(!pIf->pbIOBufferR3); 5590 rc = MM HyperAlloc(pVM, pIf->cbIOBuffer, 1, MM_TAG_PDM_DEVICE_USER, (void **)&pIf->pbIOBufferR3); /** @todo rainy day: change to MMR3HyperAllocOnceNoRel */5590 rc = MMR3HyperAllocOnceNoRel(pVM, pIf->cbIOBuffer, 0, MM_TAG_PDM_DEVICE_USER, (void **)&pIf->pbIOBufferR3); 5591 5591 if (RT_FAILURE(rc)) 5592 5592 return VERR_NO_MEMORY;
Note:
See TracChangeset
for help on using the changeset viewer.