mirror of https://github.com/acidanthera/audk.git
Merge Tracker EDK877
The WriteQueueSize in EFI_FAULT_TOLERANT_WORKING_BLOCK_HEADER was changed from UINT32 to UINT64 to fix the unaligned problem with the ftw record on IPF platform. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5513 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
2e95d2b76f
commit
2a958a00c6
|
@ -29,7 +29,7 @@ typedef struct {
|
||||||
#define WORKING_BLOCK_INVALID 0x2
|
#define WORKING_BLOCK_INVALID 0x2
|
||||||
UINT8 Reserved : 6;
|
UINT8 Reserved : 6;
|
||||||
UINT8 Reserved3[3];
|
UINT8 Reserved3[3];
|
||||||
UINT32 WriteQueueSize;
|
UINT64 WriteQueueSize;
|
||||||
//
|
//
|
||||||
// UINT8 WriteQueue[WriteQueueSize];
|
// UINT8 WriteQueue[WriteQueueSize];
|
||||||
//
|
//
|
||||||
|
|
|
@ -93,9 +93,9 @@ DATA = {
|
||||||
0x8D, 0x2B, 0xF1, 0xFF, 0x96, 0x76, 0x8B, 0x4C,
|
0x8D, 0x2B, 0xF1, 0xFF, 0x96, 0x76, 0x8B, 0x4C,
|
||||||
0xA9, 0x85, 0x27, 0x47, 0x07, 0x5B, 0x4F, 0x50,
|
0xA9, 0x85, 0x27, 0x47, 0x07, 0x5B, 0x4F, 0x50,
|
||||||
# Crc:UINT32 #WorkingBlockValid:1, WorkingBlockInvalid:1, Reserved
|
# Crc:UINT32 #WorkingBlockValid:1, WorkingBlockInvalid:1, Reserved
|
||||||
0x85, 0xae, 0x2d, 0xbf, 0xFE, 0xFF, 0xFF, 0xFF,
|
0x77, 0x13, 0x9B, 0xD7, 0xFE, 0xFF, 0xFF, 0xFF,
|
||||||
# WriteQueueSize: UINT32
|
# WriteQueueSize: UINT64
|
||||||
0xE4, 0x1F, 0x00, 0x00
|
0xE0, 0x1F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
|
||||||
}
|
}
|
||||||
|
|
||||||
0x00290000|0x00010000
|
0x00290000|0x00010000
|
||||||
|
|
Loading…
Reference in New Issue