Reviewed-by: Hao Wu <[email protected]> Best Regards, Hao Wu
> -----Original Message----- > From: Wang, Jian J > Sent: Tuesday, December 12, 2017 11:28 AM > To: [email protected] > Cc: Dong, Eric; Wu, Hao A > Subject: [PATCH] UefiCpuPkg/CpuDxe: Add initialization to local variable > > The purpose of the patch is just to avoid complaining from compiler and > static check tool. > > Cc: Eric Dong <[email protected]> > Cc: Wu Hao <[email protected]> > Contributed-under: TianoCore Contribution Agreement 1.1 > Signed-off-by: Jian J Wang <[email protected]> > --- > UefiCpuPkg/CpuDxe/CpuMp.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/UefiCpuPkg/CpuDxe/CpuMp.c b/UefiCpuPkg/CpuDxe/CpuMp.c > index 56ba026152..61018c9950 100644 > --- a/UefiCpuPkg/CpuDxe/CpuMp.c > +++ b/UefiCpuPkg/CpuDxe/CpuMp.c > @@ -695,6 +695,8 @@ InitializeMpExceptionStackSwitchHandlers ( > EssData.Ia32.StackSwitchExceptionNumber = ExceptionNumber; > EssData.Ia32.KnownGoodStackSize = > FixedPcdGet32(PcdCpuKnownGoodStackSize); > > + Gdtr.Base = 0; > + Gdtr.Limit = 0; > MpInitLibWhoAmI (&Bsp); > for (Index = 0; Index < mNumberOfProcessors; ++Index) { > // > -- > 2.15.1.windows.2 _______________________________________________ edk2-devel mailing list [email protected] https://lists.01.org/mailman/listinfo/edk2-devel

