From: Star Zeng Date: Fri, 2 Feb 2018 07:34:48 +0000 (+0800) Subject: SourceLevelDebugPkg DebugAgentLib: Rename IsBsp to DebugAgentIsBsp X-Git-Tag: edk2-stable201903~2427 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=a2acb04ca67853519a514a986de11b6bc468d564 SourceLevelDebugPkg DebugAgentLib: Rename IsBsp to DebugAgentIsBsp For avoiding function name confliction, rename IsBsp to DebugAgentIsBsp. Cc: Ruiyu Ni Cc: Hao Wu Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Star Zeng Reviewed-by: Hao Wu Reviewed-by: Ruiyu Ni --- diff --git a/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/DebugAgent.c b/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/DebugAgent.c index 36b1ef924c..0a021307dc 100644 --- a/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/DebugAgent.c +++ b/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/DebugAgent.c @@ -4,7 +4,7 @@ read/write debug packet to communication with HOST based on transfer protocol. - Copyright (c) 2010 - 2017, Intel Corporation. All rights reserved.
+ Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved.
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 @@ -2485,7 +2485,7 @@ InterruptProcess ( AcquireMpSpinLock (&mDebugMpContext.DebugPortSpinLock); if (MultiProcessorDebugSupport()) { - if (IsBsp (ProcessorIndex)) { + if (DebugAgentIsBsp (ProcessorIndex)) { // // If current processor is BSP, check Apic timer's init count if changed, // it may be re-written when switching BSP. @@ -2498,7 +2498,7 @@ InterruptProcess ( } } - if (!IsBsp (ProcessorIndex) || mDebugMpContext.IpiSentByAp) { + if (!DebugAgentIsBsp (ProcessorIndex) || mDebugMpContext.IpiSentByAp) { ReleaseMpSpinLock (&mDebugMpContext.DebugPortSpinLock); // // If current processor is not BSP or this is one IPI sent by AP diff --git a/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/DebugMp.c b/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/DebugMp.c index d49d4ee323..e3ed08db49 100644 --- a/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/DebugMp.c +++ b/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/DebugMp.c @@ -1,7 +1,7 @@ /** @file Multi-Processor support functions implementation. - Copyright (c) 2010 - 2016, Intel Corporation. All rights reserved.
+ Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved.
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 @@ -75,7 +75,7 @@ HaltOtherProcessors ( ) { DebugAgentMsgPrint (DEBUG_AGENT_INFO, "processor[%x]:Try to halt other processors.\n", CurrentProcessorIndex); - if (!IsBsp (CurrentProcessorIndex)) { + if (!DebugAgentIsBsp (CurrentProcessorIndex)) { SetIpiSentByApFlag (TRUE);; } @@ -137,7 +137,7 @@ GetProcessorIndex ( **/ BOOLEAN -IsBsp ( +DebugAgentIsBsp ( IN UINT32 ProcessorIndex ) { diff --git a/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/DebugMp.h b/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/DebugMp.h index 5bb50960ca..f0cb3f6c1d 100644 --- a/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/DebugMp.h +++ b/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/DebugMp.h @@ -1,7 +1,7 @@ /** @file Header file for Multi-Processor support. - Copyright (c) 2010 - 2013, Intel Corporation. All rights reserved.
+ Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved.
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 @@ -96,7 +96,7 @@ ReleaseMpSpinLock ( **/ BOOLEAN -IsBsp ( +DebugAgentIsBsp ( IN UINT32 ProcessorIndex );