Changeset 45796 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Apr 28, 2013 10:23:18 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 85364
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DevLsiLogicSCSI.cpp
r45795 r45796 286 286 R3PTRTYPE(PMptConfigurationPagesSupported) pConfigurationPages; 287 287 288 #if HC_ARCH_BITS == 64289 uint32_t Alignment7;290 #endif291 292 288 /** Indicates that PDMDevHlpAsyncNotificationCompleted should be called when 293 289 * a port is entering the idle state. */ … … 295 291 /** Flag whether we have tasks which need to be processed again- */ 296 292 bool volatile fRedo; 293 /** Alignment padding. */ 294 bool afPAdding2[HC_ARCH_BITS == 32 ? 2 : 6]; 297 295 /** List of tasks which can be redone. */ 298 296 R3PTRTYPE(volatile PLSILOGICTASKSTATE) pTasksRedoHead; -
trunk/src/VBox/Devices/testcase/tstDeviceStructSize.cpp
r44892 r45796 296 296 CHECK_MEMBER_ALIGNMENT(IOAPIC, StatMMIOReadGC, 8); 297 297 #endif 298 CHECK_MEMBER_ALIGNMENT(LSILOGISCSI, GCPhysMMIOBase, 8); 299 CHECK_MEMBER_ALIGNMENT(LSILOGISCSI, aMessage, 8); 298 300 CHECK_MEMBER_ALIGNMENT(LSILOGISCSI, ReplyPostQueueCritSect, 8); 299 301 CHECK_MEMBER_ALIGNMENT(LSILOGISCSI, ReplyFreeQueueCritSect, 8); 302 CHECK_MEMBER_ALIGNMENT(LSILOGISCSI, uReplyFreeQueueNextEntryFreeWrite, 8); 303 CHECK_MEMBER_ALIGNMENT(LSILOGISCSI, VBoxSCSI, 8); 300 304 #ifdef VBOX_WITH_USB 301 305 CHECK_MEMBER_ALIGNMENT(OHCI, RootHub, 8);
Note:
See TracChangeset
for help on using the changeset viewer.