diff options
author | Jian J Wang <jian.j.wang@intel.com> | 2017-11-14 10:52:31 +0800 |
---|---|---|
committer | Star Zeng <star.zeng@intel.com> | 2017-11-17 11:03:12 +0800 |
commit | 105d0c1f9d4903a91e56d587706dba4be85cf42f (patch) | |
tree | 5546c7e79d49d1aa657b4ef0ae65a2e390b6e370 /UefiCpuPkg/CpuDxe/CpuPageTable.c | |
parent | f1f4eab4e5b74639c714eac6314cc0b502149413 (diff) | |
download | edk2-105d0c1f9d4903a91e56d587706dba4be85cf42f.tar.gz edk2-105d0c1f9d4903a91e56d587706dba4be85cf42f.tar.bz2 edk2-105d0c1f9d4903a91e56d587706dba4be85cf42f.zip |
UefiCpuPkg/CpuDxe: Reduce debug message
Heap guard feature will frequently update page attributes. The debug message
in CpuDxe driver will slow down the boot performance noticeably. Changing the
debug level to DEBUG_VERBOSE to reduce the message output for normal debug
configuration.
Cc: Eric Dong <eric.dong@intel.com>
Cc: Jiewen Yao <jiewen.yao@intel.com>
Suggested-by: Ayellet Wolman <ayellet.wolman@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Jian J Wang <jian.j.wang@intel.com>
Reviewed-by: Jiewen Yao <jiewen.yao@intel.com>
Regression-tested-by: Laszlo Ersek <lersek@redhat.com>
Diffstat (limited to 'UefiCpuPkg/CpuDxe/CpuPageTable.c')
-rw-r--r-- | UefiCpuPkg/CpuDxe/CpuPageTable.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/UefiCpuPkg/CpuDxe/CpuPageTable.c b/UefiCpuPkg/CpuDxe/CpuPageTable.c index d312eb66f8..309f448a83 100644 --- a/UefiCpuPkg/CpuDxe/CpuPageTable.c +++ b/UefiCpuPkg/CpuDxe/CpuPageTable.c @@ -442,8 +442,8 @@ ConvertPageEntryAttribute ( *PageEntry = NewPageEntry;
if (CurrentPageEntry != NewPageEntry) {
*IsModified = TRUE;
- DEBUG ((DEBUG_INFO, "ConvertPageEntryAttribute 0x%lx", CurrentPageEntry));
- DEBUG ((DEBUG_INFO, "->0x%lx\n", NewPageEntry));
+ DEBUG ((DEBUG_VERBOSE, "ConvertPageEntryAttribute 0x%lx", CurrentPageEntry)); + DEBUG ((DEBUG_VERBOSE, "->0x%lx\n", NewPageEntry)); } else {
*IsModified = FALSE;
}
|