public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Gao, Liming" <liming.gao@intel.com>
To: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Cc: Jeff Brasen <jbrasen@nvidia.com>,
	"Carsey, Jaben" <jaben.carsey@intel.com>,
	"edk2-devel@lists.01.org" <edk2-devel@lists.01.org>,
	"Dong, Eric" <eric.dong@intel.com>,
	"Zeng, Star" <star.zeng@intel.com>,
	Leif Lindholm <leif.lindholm@linaro.org>
Subject: Re: [PATCH v3 0/2] SortLib for UEFI SEC
Date: Thu, 29 Nov 2018 00:38:25 +0000	[thread overview]
Message-ID: <4A89E2EF3DFEDB4C8BFDE51014F606A14E37E2C4@SHSMSX104.ccr.corp.intel.com> (raw)
In-Reply-To: <CAKv+Gu_962SqWFyuxtmDMcySrTeN-qgw2FDM9Zy8je4uRatmJw@mail.gmail.com>

Push them at 864cba9598a934ae3f7ae744b75d60e07dbd9fe9.. ae960002fe7cb50bf5bd9741abc5a1aa92718fe6

>-----Original Message-----
>From: Ard Biesheuvel [mailto:ard.biesheuvel@linaro.org]
>Sent: Thursday, November 29, 2018 8:28 AM
>To: Gao, Liming <liming.gao@intel.com>
>Cc: Jeff Brasen <jbrasen@nvidia.com>; Carsey, Jaben
><jaben.carsey@intel.com>; edk2-devel@lists.01.org; Dong, Eric
><eric.dong@intel.com>; Zeng, Star <star.zeng@intel.com>; Leif Lindholm
><leif.lindholm@linaro.org>
>Subject: Re: [edk2] [PATCH v3 0/2] SortLib for UEFI SEC
>
>On Thu, 29 Nov 2018 at 01:26, Gao, Liming <liming.gao@intel.com> wrote:
>>
>> Jeff:
>>   I have given R-B on MdeModulePkg change. If EmbeddedPkg maintainer
>has no comments on the change in EmbeddedPkg, I will help push your
>patches.
>>
>
>Looks fine to me
>
>Reviewed-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
>
>> >-----Original Message-----
>> >From: edk2-devel [mailto:edk2-devel-bounces@lists.01.org] On Behalf Of
>Jeff
>> >Brasen
>> >Sent: Thursday, November 29, 2018 1:56 AM
>> >To: Carsey, Jaben <jaben.carsey@intel.com>; edk2-devel@lists.01.org
>> >Cc: Dong, Eric <eric.dong@intel.com>; Zeng, Star <star.zeng@intel.com>
>> >Subject: Re: [edk2] [PATCH v3 0/2] SortLib for UEFI SEC
>> >
>> >+cc package maintainers
>> >
>> >
>> >
>> >________________________________
>> >From: Jeff Brasen
>> >Sent: Wednesday, November 28, 2018 10:17 AM
>> >To: Carsey, Jaben; edk2-devel@lists.01.org
>> >Subject: Re: [edk2] [PATCH v3 0/2] SortLib for UEFI SEC
>> >
>> >
>> >Any additional updates on this patch series?
>> >
>> >
>> >Thanks,
>> >
>> >Jeff
>> >
>> >________________________________
>> >From: Carsey, Jaben <jaben.carsey@intel.com>
>> >Sent: Thursday, November 8, 2018 4:46:15 PM
>> >To: Jeff Brasen; edk2-devel@lists.01.org
>> >Subject: RE: [edk2] [PATCH v3 0/2] SortLib for UEFI SEC
>> >
>> >For the series.
>> >Reviewed-by: Jaben Carsey <jaben.carsey@intel.com>
>> >
>> >> -----Original Message-----
>> >> From: edk2-devel [mailto:edk2-devel-bounces@lists.01.org] On Behalf
>Of
>> >> Jeff Brasen
>> >> Sent: Thursday, November 08, 2018 11:04 AM
>> >> To: edk2-devel@lists.01.org
>> >> Cc: Jeff Brasen <jbrasen@nvidia.com>
>> >> Subject: [edk2] [PATCH v3 0/2] SortLib for UEFI SEC
>> >>
>> >> This patch series enables support for BaseSortLib in UEFI SEC Phase.
>> >> This requires the addition of the AllocateZeroPool which is implemented
>> >> in the PrePiMemoryAllocationLib.
>> >>
>> >> Changelog:
>> >> v1 - Initial version
>> >> v2 - Update order of NULL check in MemoryAllocationLib
>> >> v3 - Switch to ZeroMem from SetMem
>> >>
>> >> Jeff Brasen (2):
>> >>   EmbeddedPkg/PrePiMemoryAllocationLib: Added AllocateZeroPool()
>> >>   MdeModulePkg/BaseSortLib: Enable for all module types
>> >>
>> >>  .../PrePiMemoryAllocationLib/MemoryAllocationLib.c | 32
>> >> ++++++++++++++++++++++
>> >>  MdeModulePkg/Library/BaseSortLib/BaseSortLib.inf   |  4 +--
>> >>  2 files changed, 34 insertions(+), 2 deletions(-)
>> >>
>> >> --
>> >> 2.7.4
>> >>
>> >> _______________________________________________
>> >> edk2-devel mailing list
>> >> edk2-devel@lists.01.org
>> >> https://lists.01.org/mailman/listinfo/edk2-devel
>> >
>> >-----------------------------------------------------------------------------------
>> >This email message is for the sole use of the intended recipient(s) and may
>> >contain
>> >confidential information.  Any unauthorized review, use, disclosure or
>> >distribution
>> >is prohibited.  If you are not the intended recipient, please contact the
>sender
>> >by
>> >reply email and destroy all copies of the original message.
>> >-----------------------------------------------------------------------------------
>> >_______________________________________________
>> >edk2-devel mailing list
>> >edk2-devel@lists.01.org
>> >https://lists.01.org/mailman/listinfo/edk2-devel

      reply	other threads:[~2018-11-29  0:38 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-11-08 19:04 [PATCH v3 0/2] SortLib for UEFI SEC Jeff Brasen
2018-11-08 19:04 ` [PATCH v3 1/2] EmbeddedPkg/PrePiMemoryAllocationLib: Added AllocateZeroPool() Jeff Brasen
2018-11-08 19:04 ` [PATCH v3 2/2] MdeModulePkg/BaseSortLib: Enable for all module types Jeff Brasen
2018-11-09  2:38   ` Zeng, Star
2018-11-08 23:46 ` [PATCH v3 0/2] SortLib for UEFI SEC Carsey, Jaben
2018-11-28 17:17   ` Jeff Brasen
2018-11-28 17:55     ` Jeff Brasen
2018-11-29  0:26       ` Gao, Liming
2018-11-29  0:27         ` Ard Biesheuvel
2018-11-29  0:38           ` Gao, Liming [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4A89E2EF3DFEDB4C8BFDE51014F606A14E37E2C4@SHSMSX104.ccr.corp.intel.com \
    --to=devel@edk2.groups.io \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox