public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Zeng, Star" <star.zeng@intel.com>
To: Laszlo Ersek <lersek@redhat.com>,
	"Wang, Jian J" <jian.j.wang@intel.com>,
	 "edk2-devel@lists.01.org" <edk2-devel@lists.01.org>
Cc: "Wu, Hao A" <hao.a.wu@intel.com>, star.zeng@intel.com
Subject: Re: [PATCH V2 06/15] MdeModulePkg Variable: Remove CacheOffset in UpdateVariable()
Date: Tue, 15 Jan 2019 18:10:38 +0800	[thread overview]
Message-ID: <98b6a8a5-2586-890a-b9a9-5540396090a7@intel.com> (raw)
In-Reply-To: <6d46ce75-4a17-dc89-373e-84b4891034ec@redhat.com>

On 2019/1/15 17:58, Laszlo Ersek wrote:
> On 01/15/19 09:04, Wang, Jian J wrote:
>> Star,
>>
>> Just a tiny comment below. With it's addressed,
>>
>> Reviewed-by: Jian J Wang <jian.j.wang@intel.com>
>>
>>> -----Original Message-----
>>> From: Zeng, Star
>>> Sent: Monday, January 14, 2019 11:20 PM
>>> To: edk2-devel@lists.01.org
>>> Cc: Zeng, Star <star.zeng@intel.com>; Wang, Jian J <jian.j.wang@intel.com>;
>>> Wu, Hao A <hao.a.wu@intel.com>; Laszlo Ersek <lersek@redhat.com>
>>> Subject: [PATCH V2 06/15] MdeModulePkg Variable: Remove CacheOffset in
>>> UpdateVariable()
>>>
>>> REF: https://bugzilla.tianocore.org/show_bug.cgi?id=1323
>>> Merge EmuVariable and Real variable driver.
>>>
>>> CacheOffset could be removed in UpdateVariable() after
>>> //
>>> // update the memory copy of Flash region.
>>> //
>>> CopyMem (
>>>    (UINT8 *)mNvVariableCache + CacheOffset,
>>>    (UINT8 *)NextVariable, VarSize
>>>     );
>>>
>>> is moved to be before mVariableModuleGlobal->NonVolatileLastVariableOffset
>>> value is updated, like right before
>>>
>>> mVariableModuleGlobal->NonVolatileLastVariableOffset +=
>>>    HEADER_ALIGN (VarSize);
>>>
>>> This patch prepares for adding emulated variable NV mode
>>> support in VariableRuntimeDxe.
>>>
>>> Cc: Jian J Wang <jian.j.wang@intel.com>
>>> Cc: Hao Wu <hao.a.wu@intel.com>
>>> Cc: Laszlo Ersek <lersek@redhat.com>
>>> Contributed-under: TianoCore Contribution Agreement 1.1
>>> Signed-off-by: Star Zeng <star.zeng@intel.com>
>>> ---
>>>   MdeModulePkg/Universal/Variable/RuntimeDxe/Variable.c | 11 +++++------
>>>   1 file changed, 5 insertions(+), 6 deletions(-)
>>>
>>> diff --git a/MdeModulePkg/Universal/Variable/RuntimeDxe/Variable.c
>>> b/MdeModulePkg/Universal/Variable/RuntimeDxe/Variable.c
>>> index 424f92a53757..4d524db30fec 100644
>>> --- a/MdeModulePkg/Universal/Variable/RuntimeDxe/Variable.c
>>> +++ b/MdeModulePkg/Universal/Variable/RuntimeDxe/Variable.c
>>> @@ -2139,7 +2139,6 @@ UpdateVariable (
>>>     VARIABLE_POINTER_TRACK              *Variable;
>>>     VARIABLE_POINTER_TRACK              NvVariable;
>>>     VARIABLE_STORE_HEADER               *VariableStoreHeader;
>>> -  UINTN                               CacheOffset;
>>>     UINT8                               *BufferForMerge;
>>>     UINTN                               MergedBufSize;
>>>     BOOLEAN                             DataReady;
>>> @@ -2577,7 +2576,6 @@ UpdateVariable (
>>>       //
>>>       // Step 1:
>>>       //
>>> -    CacheOffset = mVariableModuleGlobal->NonVolatileLastVariableOffset;
>>>       Status = UpdateVariableStore (
>>>                  &mVariableModuleGlobal->VariableGlobal,
>>>                  FALSE,
>>> @@ -2643,6 +2641,11 @@ UpdateVariable (
>>>         goto Done;
>>>       }
>>>
>>> +    //
>>> +    // update the memory copy of Flash region.
>>> +    //
>>
>> The first character of comment is not capitalized.
> 
> In this particular case, I agree that such a change can be added to the
> patch. While it does not pertain to the actual work done here, the patch
> itself is so small (which is a good thing!) that the comment
> capitalization would not cause confusion.
> 
> Still I suggest mentioning it briefly in the commit message too.

Make sense, I can do that.

Thanks,
Star

> 
> Thanks
> Laszlo
> 
> 
>>
>>> +    CopyMem ((UINT8 *)mNvVariableCache + mVariableModuleGlobal-
>>>> NonVolatileLastVariableOffset, (UINT8 *)NextVariable, VarSize);
>>> +
>>>       mVariableModuleGlobal->NonVolatileLastVariableOffset += HEADER_ALIGN
>>> (VarSize);
>>>
>>>       if ((Attributes & EFI_VARIABLE_HARDWARE_ERROR_RECORD) != 0) {
>>> @@ -2653,10 +2656,6 @@ UpdateVariable (
>>>           mVariableModuleGlobal->CommonUserVariableTotalSize +=
>>> HEADER_ALIGN (VarSize);
>>>         }
>>>       }
>>> -    //
>>> -    // update the memory copy of Flash region.
>>> -    //
>>> -    CopyMem ((UINT8 *)mNvVariableCache + CacheOffset, (UINT8
>>> *)NextVariable, VarSize);
>>>     } else {
>>>       //
>>>       // Create a volatile variable.
>>> --
>>> 2.7.0.windows.1
>>



  reply	other threads:[~2019-01-15 10:11 UTC|newest]

Thread overview: 59+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-14 15:19 [PATCH V2 00/15] Merge EmuVariable and Real variable driver Star Zeng
2019-01-14 15:19 ` [PATCH V2 01/15] MdeModulePkg Variable: Add some missing changes for 9b18845 Star Zeng
2019-01-15  6:36   ` Wu, Hao A
2019-01-15  8:06   ` Laszlo Ersek
2019-01-14 15:19 ` [PATCH V2 02/15] MdeModulePkg Variable: Abstract InitRealNonVolatileVariableStore Star Zeng
2019-01-15  6:37   ` Wu, Hao A
2019-01-14 15:19 ` [PATCH V2 03/15] MdeModulePkg Variable: Not get NV PCD in VariableWriteServiceInitialize Star Zeng
2019-01-15  5:48   ` Wu, Hao A
2019-01-15  5:53     ` Zeng, Star
2019-01-15  6:37   ` Wang, Jian J
2019-01-15 10:13     ` Zeng, Star
2019-01-14 15:19 ` [PATCH V2 04/15] MdeModulePkg Variable: Abstract VariableWriteServiceInitializeDxe/Smm Star Zeng
2019-01-15  6:37   ` Wu, Hao A
2019-01-15  8:05   ` Wang, Jian J
2019-01-14 15:19 ` [PATCH V2 05/15] MdeModulePkg: Add PcdEmuVariableNvModeEnable in dec Star Zeng
2019-01-15  5:05   ` Wang, Jian J
2019-01-15  5:55     ` Zeng, Star
2019-01-15  6:37   ` Wu, Hao A
2019-01-14 15:19 ` [PATCH V2 06/15] MdeModulePkg Variable: Remove CacheOffset in UpdateVariable() Star Zeng
2019-01-15  6:37   ` Wu, Hao A
2019-01-15  8:04   ` Wang, Jian J
2019-01-15  9:58     ` Laszlo Ersek
2019-01-15 10:10       ` Zeng, Star [this message]
2019-01-15  8:15   ` Laszlo Ersek
2019-01-14 15:19 ` [PATCH V2 07/15] MdeModulePkg Variable: type case VolatileBase to UINTN directly Star Zeng
2019-01-15  6:37   ` Wu, Hao A
2019-01-15  8:06   ` Wang, Jian J
2019-01-15  8:18   ` Laszlo Ersek
2019-01-14 15:19 ` [PATCH V2 08/15] MdeModulePkg Variable: Add emulated variable NV mode support Star Zeng
2019-01-15  6:01   ` Wang, Jian J
2019-01-15  6:16     ` Zeng, Star
2019-01-15  9:53       ` Laszlo Ersek
2019-01-15  9:33   ` Laszlo Ersek
2019-01-15  9:52     ` Zeng, Star
2019-01-14 15:19 ` [PATCH V2 09/15] MdeModulePkg VariablePei: Don't check BOOT_IN_RECOVERY_MODE Star Zeng
2019-01-14 15:19 ` [PATCH V2 10/15] ArmVirtXen: Use merged variable driver for emulated NV mode Star Zeng
2019-01-15  9:37   ` Laszlo Ersek
2019-01-16 14:26     ` Julien Grall
2019-01-17  1:26       ` Zeng, Star
2019-01-17 18:59         ` Julien Grall
2019-01-21 10:46           ` Zeng, Star
2019-01-21 13:36             ` Julien Grall
2019-01-21 19:40               ` Ard Biesheuvel
2019-01-22  4:30                 ` Zeng, Star
2019-01-23  1:41                   ` Zeng, Star
2019-01-23 12:15                     ` Julien Grall
2019-01-23 14:20                       ` Zeng, Star
2019-01-21 21:15               ` Laszlo Ersek
2019-01-21 21:22                 ` Ard Biesheuvel
2019-01-21 21:25                   ` Ard Biesheuvel
2019-01-14 15:19 ` [PATCH V2 11/15] ArmVirtXen: Link VarCheckUefiLib NULL class library instance Star Zeng
2019-01-15  9:39   ` Laszlo Ersek
2019-01-14 15:19 ` [PATCH V2 12/15] BeagleBoardPkg: Use merged variable driver for emulated NV mode Star Zeng
2019-01-14 22:11   ` Leif Lindholm
2019-01-15  1:32     ` Zeng, Star
2019-01-15  9:48       ` Leif Lindholm
2019-01-14 15:19 ` [PATCH V2 13/15] QuarkMin: " Star Zeng
2019-01-14 15:19 ` [PATCH V2 14/15] CorebootPayloadPkg: " Star Zeng
2019-01-14 15:19 ` [PATCH V2 15/15] MdeModulePkg: Remove EmuVariableRuntimeDxe Star Zeng

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=98b6a8a5-2586-890a-b9a9-5540396090a7@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