summaryrefslogtreecommitdiffstats
path: root/ShellPkg/Library/UefiShellDebug1CommandsLib
diff options
context:
space:
mode:
authorHuajingLi <huajing.li@intel.com>2017-08-01 12:30:18 +0800
committerRuiyu Ni <ruiyu.ni@intel.com>2017-08-03 12:16:33 +0800
commitf11a7a555269f469b609ceb77221b59ec9b93ba9 (patch)
treee243e7a8b23f34ec3d724b084565c5bc3ac85ba8 /ShellPkg/Library/UefiShellDebug1CommandsLib
parent91ec57c44875754375c8c59fed224e541511b4f7 (diff)
downloadedk2-f11a7a555269f469b609ceb77221b59ec9b93ba9.tar.gz
edk2-f11a7a555269f469b609ceb77221b59ec9b93ba9.tar.bz2
edk2-f11a7a555269f469b609ceb77221b59ec9b93ba9.zip
ShellPkg/dblk: Honor the BlockIo alignment requirement.
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Huajing Li <huajing.li@intel.com> Reviewed-by: Ruiyu Ni <ruiyu.ni@intel.com>
Diffstat (limited to 'ShellPkg/Library/UefiShellDebug1CommandsLib')
-rw-r--r--ShellPkg/Library/UefiShellDebug1CommandsLib/Dblk.c17
1 files changed, 12 insertions, 5 deletions
diff --git a/ShellPkg/Library/UefiShellDebug1CommandsLib/Dblk.c b/ShellPkg/Library/UefiShellDebug1CommandsLib/Dblk.c
index 32e5917523..3632ca8a7a 100644
--- a/ShellPkg/Library/UefiShellDebug1CommandsLib/Dblk.c
+++ b/ShellPkg/Library/UefiShellDebug1CommandsLib/Dblk.c
@@ -2,7 +2,7 @@
Main file for Dblk shell Debug1 function.
(C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR>
- Copyright (c) 2005 - 2011, Intel Corporation. All rights reserved.<BR>
+ Copyright (c) 2005 - 2017, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
@@ -37,6 +37,7 @@ DisplayTheBlocks(
EFI_STATUS Status;
SHELL_STATUS ShellStatus;
UINT8 *Buffer;
+ UINT8 *OriginalBuffer;
UINTN BufferSize;
ShellStatus = SHELL_SUCCESS;
@@ -52,11 +53,17 @@ DisplayTheBlocks(
}
BufferSize = BlockIo->Media->BlockSize * BlockCount;
+ if(BlockIo->Media->IoAlign == 0) {
+ BlockIo->Media->IoAlign = 1;
+ }
+
if (BufferSize > 0) {
- Buffer = AllocateZeroPool(BufferSize);
+ OriginalBuffer = AllocateZeroPool(BufferSize + BlockIo->Media->IoAlign);
+ Buffer = ALIGN_POINTER (OriginalBuffer,BlockIo->Media->IoAlign);
} else {
ShellPrintEx(-1,-1,L" BlockSize: 0x%08x, BlockCount: 0x%08x\r\n", BlockIo->Media->BlockSize, BlockCount);
- Buffer = NULL;
+ OriginalBuffer = NULL;
+ Buffer = NULL;
}
Status = BlockIo->ReadBlocks(BlockIo, BlockIo->Media->MediaId, Lba, BufferSize, Buffer);
@@ -78,8 +85,8 @@ DisplayTheBlocks(
ShellStatus = SHELL_DEVICE_ERROR;
}
- if (Buffer != NULL) {
- FreePool(Buffer);
+ if (OriginalBuffer != NULL) {
+ FreePool (OriginalBuffer);
}
gBS->CloseProtocol(BlockIoHandle, &gEfiBlockIoProtocolGuid, gImageHandle, NULL);