Changeset 56715 in vbox for trunk/src/VBox/Devices/Storage
- Timestamp:
- Jun 30, 2015 11:48:17 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 101360
- Location:
- trunk/src/VBox/Devices/Storage
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DevAHCI.cpp
r56676 r56715 575 575 R3PTRTYPE(PRTLISTANCHOR) pListReqsFree; 576 576 577 /** Align to a multiple of 8. */ 578 #if HC_ARCH_BITS == 32 579 uint32_t u32Alignment6; 580 #endif 581 577 582 } AHCIPort; 578 583 /** Pointer to the state of an AHCI port. */ 579 584 typedef AHCIPort *PAHCIPort; 585 586 AssertCompileMemberAlignment(AHCIPort, StatDMA, 8); 587 AssertCompileSizeAlignment(AHCIPort, 8); 580 588 581 589 /** … … 723 731 /** Pointer to the state of an AHCI device. */ 724 732 typedef AHCI *PAHCI; 733 734 AssertCompileMemberAlignment(AHCI, ahciPort[0], 8); 725 735 726 736 /** -
trunk/src/VBox/Devices/Storage/DevATA.cpp
r56579 r56715 441 441 /** Magic delay before triggering interrupts in DMA mode. */ 442 442 uint32_t DelayIRQMillies; 443 /** The event semaphore the thread is waiting on during suspended I/O. */ 444 RTSEMEVENT SuspendIOSem; 443 445 /** The lock protecting the request queue. */ 444 446 PDMCRITSECT AsyncIORequestLock; 445 /** The event semaphore the thread is waiting on during suspended I/O. */446 RTSEMEVENT SuspendIOSem;447 447 #if 0 /*HC_ARCH_BITS == 32*/ 448 448 uint32_t Alignment0; … … 464 464 AssertCompileMemberAlignment(ATACONTROLLER, u64ResetTime, 8); 465 465 AssertCompileMemberAlignment(ATACONTROLLER, StatAsyncOps, 8); 466 AssertCompileMemberAlignment(ATACONTROLLER, AsyncIORequestLock, 8); 467 AssertCompileSizeAlignment(ATACONTROLLER, 8); 466 468 467 469 typedef enum CHIPSET
Note:
See TracChangeset
for help on using the changeset viewer.