Pushed as bcad50b
<https://github.com/tianocore/edk2-platforms/commit/bcad50b813efc0552163ca76441bbe8221afb68c>

On Mon, Sep 5, 2022 at 7:19 AM Marvin Häuser <mhaeu...@posteo.de> wrote:

>
>
> > On 5. Sep 2022, at 03:58, Pedro Falcato <pedro.falc...@gmail.com> wrote:
> >
> > Catched when running clang-tidy on this code. Also tidies up some logic
> > in BlockGroup.c
>
> Caught
>
> Reviewed-by: Marvin Häuser <mhaeu...@posteo.de>
>
> >
> > Cc: Marvin Häuser <mhaeu...@posteo.de>
> > Signed-off-by: Pedro Falcato <pedro.falc...@gmail.com>
> > ---
> > Features/Ext4Pkg/Ext4Dxe/BlockGroup.c | 4 ++--
> > Features/Ext4Pkg/Ext4Dxe/Ext4Dxe.h    | 2 +-
> > 2 files changed, 3 insertions(+), 3 deletions(-)
> >
> > diff --git a/Features/Ext4Pkg/Ext4Dxe/BlockGroup.c
> b/Features/Ext4Pkg/Ext4Dxe/BlockGroup.c
> > index 572e8f60ab92..cba96cd95afc 100644
> > --- a/Features/Ext4Pkg/Ext4Dxe/BlockGroup.c
> > +++ b/Features/Ext4Pkg/Ext4Dxe/BlockGroup.c
> > @@ -218,9 +218,9 @@ Ext4CalculateBlockGroupDescChecksum (
> >   IN UINT32                       BlockGroupNum
> >   )
> > {
> > -  if ((Partition->FeaturesRoCompat &
> EXT4_FEATURE_RO_COMPAT_METADATA_CSUM) != 0) {
> > +  if (EXT4_HAS_METADATA_CSUM (Partition)) {
> >     return Ext4CalculateBlockGroupDescChecksumMetadataCsum (Partition,
> BlockGroupDesc, BlockGroupNum);
> > -  } else if ((Partition->FeaturesRoCompat &
> EXT4_FEATURE_RO_COMPAT_GDT_CSUM) != 0) {
> > +  } else if (EXT4_HAS_GDT_CSUM (Partition)) {
> >     return Ext4CalculateBlockGroupDescChecksumGdtCsum (Partition,
> BlockGroupDesc, BlockGroupNum);
> >   }
> >
> > diff --git a/Features/Ext4Pkg/Ext4Dxe/Ext4Dxe.h
> b/Features/Ext4Pkg/Ext4Dxe/Ext4Dxe.h
> > index b446488b2112..81e59a4babc9 100644
> > --- a/Features/Ext4Pkg/Ext4Dxe/Ext4Dxe.h
> > +++ b/Features/Ext4Pkg/Ext4Dxe/Ext4Dxe.h
> > @@ -1095,7 +1095,7 @@ Ext4CalculateBlockGroupDescChecksum (
> >    @return TRUE if the gdt_csum is supported, else FALSE.
> > **/
> > #define EXT4_HAS_GDT_CSUM(Partition)
>        \
> > -  EXT4_HAS_RO_COMPAT(Partition, EXT4_FEATURE_RO_COMPAT_METADATA_CSUM)
> > +  EXT4_HAS_RO_COMPAT(Partition, EXT4_FEATURE_RO_COMPAT_GDT_CSUM)
> >
> > /**
> >    Retrieves the volume name.
> > --
> > 2.37.3
> >
>
>

-- 
Pedro Falcato


-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#93168): https://edk2.groups.io/g/devel/message/93168
Mute This Topic: https://groups.io/mt/93470689/21656
Group Owner: devel+ow...@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-


Reply via email to