Re: [edk2] [PATCH] IntelFsp2Pkg: Align #Pragma in UPD header files to rest of EDK2 Pkgs

2016-09-17 Thread Yao, Jiewen
Reviewed-by: jiewen@intel.com > -Original Message- > From: edk2-devel [mailto:edk2-devel-boun...@lists.01.org] On Behalf Of > Satya Yarlagadda > Sent: Saturday, September 17, 2016 11:25 AM > To: edk2-devel@lists.01.org > Cc: Yao, Jiewen > Subject: [edk2] [PATCH]

[edk2] edk2 compile error

2016-09-17 Thread Chen, Farrah
Hi, When I compile xen with the latest commit in RHEL 6.7, it failed when make tools. Errors showed when running edk2 build for OvmfPkgX64. Bisected and this error occurred from commit 8c8b6fb02342f7aa78e611a5f0f63dcf8fbf48f2. commit 8c8b6fb02342f7aa78e611a5f0f63dcf8fbf48f2 Author: Wei Liu

Re: [edk2] RNG algo question

2016-09-17 Thread Ard Biesheuvel
On 16 September 2016 at 22:33, Palmer, Thomas wrote: > > EDK2 community > > Why is the RngGetRNG sending requests for "gEfiRngAlgorithmRaw" to > "RdRandGenerateEntropy", which does AES operations on RDRAND output, whereas > the requests for

[edk2] how big is the timer event overhead?

2016-09-17 Thread Michael Zimmermann
Hi, if I add a timer with an interval of 1ms, how much will it affect the system performance? The callback only adds +1 to a global variable so I can keep track of the total uptime without the need of a RTC. Thanks Michael ___ edk2-devel mailing list

Re: [edk2] how big is the timer event overhead?

2016-09-17 Thread Andrew Fish
> On Sep 17, 2016, at 8:13 AM, Michael Zimmermann > wrote: > > Hi, > > if I add a timer with an interval of 1ms, how much will it affect the > system performance? > The callback only adds +1 to a global variable so I can keep track of the > total uptime without the

Re: [edk2] RNG algo question

2016-09-17 Thread Long, Qin
Exactly. Thanks, Ard. gEfiRngAlgorithmRaw is designed to provide entropy directly (defined in UEFI spec), which is intended to use the DRNG to seed in an ongoing manner some current software PRNG. Though RDRAND is quite usable as a source of random values. For standards compliance, some may