Re: [edk2] [PATCH v5 1/3] EmulatorPkg/Mpservice: fix wrong unsigned to signed variable transition

2014-11-23 Thread Chen, Fan
On Fri, 2014-11-21 at 15:01 -0800, Jordan Justen wrote: > On 2014-11-20 21:09:03, Chen Fan wrote: > > Because TimeoutInMicrosecsond is a unsigned value, converting it to > > signed value will cause the data region changed. so this patch fix > > that. > > > > Contributed-under: TianoCore Contribut

Re: [edk2] [PATCH v5 1/3] EmulatorPkg/Mpservice: fix wrong unsigned to signed variable transition

2014-11-21 Thread Jordan Justen
On 2014-11-20 21:09:03, Chen Fan wrote: > Because TimeoutInMicrosecsond is a unsigned value, converting it to > signed value will cause the data region changed. so this patch fix > that. > > Contributed-under: TianoCore Contribution Agreement 1.0 > Signed-off-by: Chen Fan > --- > EmulatorPkg/Cpu

[edk2] [PATCH v5 1/3] EmulatorPkg/Mpservice: fix wrong unsigned to signed variable transition

2014-11-20 Thread Chen Fan
Because TimeoutInMicrosecsond is a unsigned value, converting it to signed value will cause the data region changed. so this patch fix that. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Chen Fan --- EmulatorPkg/CpuRuntimeDxe/MpService.c | 41 ++--