Ard: Now, we enter into Hard Feature Freeze phase until edk2-stable202108 tag is created at 2021-08-27.
In this phase, the bug fix is still allowed to be merged. This patch is a clear bug fix. I am OK to merge it for this stable tag. I suggest we wait for 1 day to collect the feedback from edk2 community. If no objection, you can merge it. Thanks Liming > -----邮件原件----- > 发件人: devel@edk2.groups.io <devel@edk2.groups.io> 代表 Ard > Biesheuvel > 发送时间: 2021年8月16日 15:11 > 收件人: Jeremy Linton <jeremy.lin...@arm.com>; Liming Gao (Byosoft > address) <gaolim...@byosoft.com.cn> > 抄送: edk2-devel-groups-io <devel@edk2.groups.io>; Peter Batard > <p...@akeo.ie>; Ard Biesheuvel <ardb+tianoc...@kernel.org>; Leif > Lindholm <l...@nuviainc.com>; Andrei Warkentin > <awarken...@vmware.com>; Sunny Wang <sunny.w...@arm.com>; Samer > El-Haj-Mahmoud <samer.el-haj-mahm...@arm.com> > 主题: Re: [edk2-devel] [PATCH] EmbeddedPkg/NonCoherentDmaLib: Avoid > dereferencing unset Map field > > On Fri, 13 Aug 2021 at 07:05, Jeremy Linton <jeremy.lin...@arm.com> wrote: > > > > Map->Operation is used to select whether a DMA region that > > is being bounced has the source buffer copied to it. Except > > Map->Operation isn't yet set, so the behavior is somewhat > > random. Instead use the passed in Operation parameter. > > > > Signed-off-by: Jeremy Linton <jeremy.lin...@arm.com> > > Thanks for fixing this. > > Liming, I am not sure what stage of the release cycle we are currently > in, but this fix should go in right away anyway. Unless any objections > are raised, I will merge it later today. I will leave it to you to > decide how this affects the stable tag release schedule. > > -- > Ard. > > > > --- > > EmbeddedPkg/Library/NonCoherentDmaLib/NonCoherentDmaLib.c | 2 > +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git > a/EmbeddedPkg/Library/NonCoherentDmaLib/NonCoherentDmaLib.c > b/EmbeddedPkg/Library/NonCoherentDmaLib/NonCoherentDmaLib.c > > index 9c8ef5bfb5..1aec86fffd 100644 > > --- a/EmbeddedPkg/Library/NonCoherentDmaLib/NonCoherentDmaLib.c > > +++ b/EmbeddedPkg/Library/NonCoherentDmaLib/NonCoherentDmaLib.c > > @@ -224,7 +224,7 @@ DmaMap ( > > goto FreeMapInfo; > > } > > > > - if (Map->Operation == MapOperationBusMasterRead) { > > + if (Operation == MapOperationBusMasterRead) { > > CopyMem (Map->BufferAddress, (VOID *)(UINTN)HostAddress, > *NumberOfBytes); > > } > > mCpu->FlushDataCache (mCpu, (UINTN)Map->BufferAddress, > AllocSize, > > -- > > 2.13.7 > > > > > > -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#79343): https://edk2.groups.io/g/devel/message/79343 Mute This Topic: https://groups.io/mt/84919320/21656 Group Owner: devel+ow...@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [arch...@mail-archive.com] -=-=-=-=-=-=-=-=-=-=-=-