* [PATCH] OvmfPkg: Make use of ARRAY_SIZE()
@ 2016-10-27 10:16 Gary Lin
2016-10-27 16:23 ` Laszlo Ersek
0 siblings, 1 reply; 2+ messages in thread
From: Gary Lin @ 2016-10-27 10:16 UTC (permalink / raw)
To: edk2-devel; +Cc: Justen Jordan, Laszlo Ersek
Convert the remaining pieces to make the code shorter and more readable.
Cc: Justen Jordan <jordan.l.justen@intel.com>
Cc: Laszlo Ersek <lersek@redhat.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Gary Lin <glin@suse.com>
---
OvmfPkg/Csm/CsmSupportLib/LegacyRegion.c | 8 ++++----
OvmfPkg/Library/LoadLinuxLib/Linux.c | 2 +-
OvmfPkg/Library/PciHostBridgeLib/PciHostBridgeLib.c | 4 +---
OvmfPkg/VirtioGpuDxe/Gop.c | 7 +++----
4 files changed, 9 insertions(+), 12 deletions(-)
diff --git a/OvmfPkg/Csm/CsmSupportLib/LegacyRegion.c b/OvmfPkg/Csm/CsmSupportLib/LegacyRegion.c
index b929db0..8d5d2e5 100644
--- a/OvmfPkg/Csm/CsmSupportLib/LegacyRegion.c
+++ b/OvmfPkg/Csm/CsmSupportLib/LegacyRegion.c
@@ -130,18 +130,18 @@ LegacyRegionManipulationInternal (
// Loop to find the start PAM.
//
StartIndex = 0;
- for (Index = 0; Index < (sizeof(mSectionArray) / sizeof (mSectionArray[0])); Index++) {
+ for (Index = 0; Index < ARRAY_SIZE (mSectionArray); Index++) {
if ((Start >= mSectionArray[Index].Start) && (Start < (mSectionArray[Index].Start + mSectionArray[Index].Length))) {
StartIndex = Index;
break;
}
}
- ASSERT (Index < (sizeof(mSectionArray) / sizeof (mSectionArray[0])));
+ ASSERT (Index < ARRAY_SIZE (mSectionArray));
//
// Program PAM until end PAM is encountered
//
- for (Index = StartIndex; Index < (sizeof(mSectionArray) / sizeof (mSectionArray[0])); Index++) {
+ for (Index = StartIndex; Index < ARRAY_SIZE (mSectionArray); Index++) {
if (ReadEnable != NULL) {
if (*ReadEnable) {
PciOr8 (
@@ -177,7 +177,7 @@ LegacyRegionManipulationInternal (
break;
}
}
- ASSERT (Index < (sizeof(mSectionArray) / sizeof (mSectionArray[0])));
+ ASSERT (Index < ARRAY_SIZE (mSectionArray));
return EFI_SUCCESS;
}
diff --git a/OvmfPkg/Library/LoadLinuxLib/Linux.c b/OvmfPkg/Library/LoadLinuxLib/Linux.c
index 9c996ad..68d1537 100644
--- a/OvmfPkg/Library/LoadLinuxLib/Linux.c
+++ b/OvmfPkg/Library/LoadLinuxLib/Linux.c
@@ -357,7 +357,7 @@ SetupLinuxMemmap (
LastE820->size += EFI_PAGES_TO_SIZE ((UINTN) MemoryMap->NumberOfPages);
LastEndAddr += EFI_PAGES_TO_SIZE ((UINTN) MemoryMap->NumberOfPages);
} else {
- if (E820EntryCount >= (sizeof (Bp->e820_map) / sizeof (Bp->e820_map[0]))) {
+ if (E820EntryCount >= ARRAY_SIZE (Bp->e820_map)) {
break;
}
E820->type = (UINT32) E820Type;
diff --git a/OvmfPkg/Library/PciHostBridgeLib/PciHostBridgeLib.c b/OvmfPkg/Library/PciHostBridgeLib/PciHostBridgeLib.c
index 6ba0ca6..ff83703 100644
--- a/OvmfPkg/Library/PciHostBridgeLib/PciHostBridgeLib.c
+++ b/OvmfPkg/Library/PciHostBridgeLib/PciHostBridgeLib.c
@@ -419,9 +419,7 @@ PciHostBridgeResourceConflict (
DEBUG ((EFI_D_ERROR, "RootBridge[%d]:\n", RootBridgeIndex++));
for (; Descriptor->Desc == ACPI_ADDRESS_SPACE_DESCRIPTOR; Descriptor++) {
ASSERT (Descriptor->ResType <
- (sizeof (mPciHostBridgeLibAcpiAddressSpaceTypeStr) /
- sizeof (mPciHostBridgeLibAcpiAddressSpaceTypeStr[0])
- )
+ ARRAY_SIZE (mPciHostBridgeLibAcpiAddressSpaceTypeStr)
);
DEBUG ((EFI_D_ERROR, " %s: Length/Alignment = 0x%lx / 0x%lx\n",
mPciHostBridgeLibAcpiAddressSpaceTypeStr[Descriptor->ResType],
diff --git a/OvmfPkg/VirtioGpuDxe/Gop.c b/OvmfPkg/VirtioGpuDxe/Gop.c
index c6ff9ed..3438bd0 100644
--- a/OvmfPkg/VirtioGpuDxe/Gop.c
+++ b/OvmfPkg/VirtioGpuDxe/Gop.c
@@ -204,7 +204,7 @@ GopQueryMode (
{
EFI_GRAPHICS_OUTPUT_MODE_INFORMATION *GopModeInfo;
- if (ModeNumber >= sizeof mGopResolutions / sizeof mGopResolutions[0]) {
+ if (ModeNumber >= ARRAY_SIZE (mGopResolutions)) {
return EFI_INVALID_PARAMETER;
}
@@ -239,7 +239,7 @@ GopSetMode (
EFI_STATUS Status;
EFI_STATUS Status2;
- if (ModeNumber >= sizeof mGopResolutions / sizeof mGopResolutions[0]) {
+ if (ModeNumber >= ARRAY_SIZE (mGopResolutions)) {
return EFI_UNSUPPORTED;
}
@@ -258,8 +258,7 @@ GopSetMode (
//
VgpuGop->Gop.Mode = &VgpuGop->GopMode;
- VgpuGop->GopMode.MaxMode = (UINT32)(sizeof mGopResolutions /
- sizeof mGopResolutions[0]);
+ VgpuGop->GopMode.MaxMode = (UINT32)(ARRAY_SIZE (mGopResolutions));
VgpuGop->GopMode.Info = &VgpuGop->GopModeInfo;
VgpuGop->GopMode.SizeOfInfo = sizeof VgpuGop->GopModeInfo;
--
2.10.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] OvmfPkg: Make use of ARRAY_SIZE()
2016-10-27 10:16 [PATCH] OvmfPkg: Make use of ARRAY_SIZE() Gary Lin
@ 2016-10-27 16:23 ` Laszlo Ersek
0 siblings, 0 replies; 2+ messages in thread
From: Laszlo Ersek @ 2016-10-27 16:23 UTC (permalink / raw)
To: Gary Lin, edk2-devel; +Cc: Justen Jordan
On 10/27/16 12:16, Gary Lin wrote:
> Convert the remaining pieces to make the code shorter and more readable.
>
> Cc: Justen Jordan <jordan.l.justen@intel.com>
> Cc: Laszlo Ersek <lersek@redhat.com>
> Contributed-under: TianoCore Contribution Agreement 1.0
> Signed-off-by: Gary Lin <glin@suse.com>
> ---
> OvmfPkg/Csm/CsmSupportLib/LegacyRegion.c | 8 ++++----
> OvmfPkg/Library/LoadLinuxLib/Linux.c | 2 +-
> OvmfPkg/Library/PciHostBridgeLib/PciHostBridgeLib.c | 4 +---
> OvmfPkg/VirtioGpuDxe/Gop.c | 7 +++----
> 4 files changed, 9 insertions(+), 12 deletions(-)
>
> diff --git a/OvmfPkg/Csm/CsmSupportLib/LegacyRegion.c b/OvmfPkg/Csm/CsmSupportLib/LegacyRegion.c
> index b929db0..8d5d2e5 100644
> --- a/OvmfPkg/Csm/CsmSupportLib/LegacyRegion.c
> +++ b/OvmfPkg/Csm/CsmSupportLib/LegacyRegion.c
> @@ -130,18 +130,18 @@ LegacyRegionManipulationInternal (
> // Loop to find the start PAM.
> //
> StartIndex = 0;
> - for (Index = 0; Index < (sizeof(mSectionArray) / sizeof (mSectionArray[0])); Index++) {
> + for (Index = 0; Index < ARRAY_SIZE (mSectionArray); Index++) {
> if ((Start >= mSectionArray[Index].Start) && (Start < (mSectionArray[Index].Start + mSectionArray[Index].Length))) {
> StartIndex = Index;
> break;
> }
> }
> - ASSERT (Index < (sizeof(mSectionArray) / sizeof (mSectionArray[0])));
> + ASSERT (Index < ARRAY_SIZE (mSectionArray));
>
> //
> // Program PAM until end PAM is encountered
> //
> - for (Index = StartIndex; Index < (sizeof(mSectionArray) / sizeof (mSectionArray[0])); Index++) {
> + for (Index = StartIndex; Index < ARRAY_SIZE (mSectionArray); Index++) {
> if (ReadEnable != NULL) {
> if (*ReadEnable) {
> PciOr8 (
> @@ -177,7 +177,7 @@ LegacyRegionManipulationInternal (
> break;
> }
> }
> - ASSERT (Index < (sizeof(mSectionArray) / sizeof (mSectionArray[0])));
> + ASSERT (Index < ARRAY_SIZE (mSectionArray));
>
> return EFI_SUCCESS;
> }
> diff --git a/OvmfPkg/Library/LoadLinuxLib/Linux.c b/OvmfPkg/Library/LoadLinuxLib/Linux.c
> index 9c996ad..68d1537 100644
> --- a/OvmfPkg/Library/LoadLinuxLib/Linux.c
> +++ b/OvmfPkg/Library/LoadLinuxLib/Linux.c
> @@ -357,7 +357,7 @@ SetupLinuxMemmap (
> LastE820->size += EFI_PAGES_TO_SIZE ((UINTN) MemoryMap->NumberOfPages);
> LastEndAddr += EFI_PAGES_TO_SIZE ((UINTN) MemoryMap->NumberOfPages);
> } else {
> - if (E820EntryCount >= (sizeof (Bp->e820_map) / sizeof (Bp->e820_map[0]))) {
> + if (E820EntryCount >= ARRAY_SIZE (Bp->e820_map)) {
> break;
> }
> E820->type = (UINT32) E820Type;
> diff --git a/OvmfPkg/Library/PciHostBridgeLib/PciHostBridgeLib.c b/OvmfPkg/Library/PciHostBridgeLib/PciHostBridgeLib.c
> index 6ba0ca6..ff83703 100644
> --- a/OvmfPkg/Library/PciHostBridgeLib/PciHostBridgeLib.c
> +++ b/OvmfPkg/Library/PciHostBridgeLib/PciHostBridgeLib.c
> @@ -419,9 +419,7 @@ PciHostBridgeResourceConflict (
> DEBUG ((EFI_D_ERROR, "RootBridge[%d]:\n", RootBridgeIndex++));
> for (; Descriptor->Desc == ACPI_ADDRESS_SPACE_DESCRIPTOR; Descriptor++) {
> ASSERT (Descriptor->ResType <
> - (sizeof (mPciHostBridgeLibAcpiAddressSpaceTypeStr) /
> - sizeof (mPciHostBridgeLibAcpiAddressSpaceTypeStr[0])
> - )
> + ARRAY_SIZE (mPciHostBridgeLibAcpiAddressSpaceTypeStr)
> );
> DEBUG ((EFI_D_ERROR, " %s: Length/Alignment = 0x%lx / 0x%lx\n",
> mPciHostBridgeLibAcpiAddressSpaceTypeStr[Descriptor->ResType],
> diff --git a/OvmfPkg/VirtioGpuDxe/Gop.c b/OvmfPkg/VirtioGpuDxe/Gop.c
> index c6ff9ed..3438bd0 100644
> --- a/OvmfPkg/VirtioGpuDxe/Gop.c
> +++ b/OvmfPkg/VirtioGpuDxe/Gop.c
> @@ -204,7 +204,7 @@ GopQueryMode (
> {
> EFI_GRAPHICS_OUTPUT_MODE_INFORMATION *GopModeInfo;
>
> - if (ModeNumber >= sizeof mGopResolutions / sizeof mGopResolutions[0]) {
> + if (ModeNumber >= ARRAY_SIZE (mGopResolutions)) {
> return EFI_INVALID_PARAMETER;
> }
>
> @@ -239,7 +239,7 @@ GopSetMode (
> EFI_STATUS Status;
> EFI_STATUS Status2;
>
> - if (ModeNumber >= sizeof mGopResolutions / sizeof mGopResolutions[0]) {
> + if (ModeNumber >= ARRAY_SIZE (mGopResolutions)) {
> return EFI_UNSUPPORTED;
> }
>
> @@ -258,8 +258,7 @@ GopSetMode (
> //
> VgpuGop->Gop.Mode = &VgpuGop->GopMode;
>
> - VgpuGop->GopMode.MaxMode = (UINT32)(sizeof mGopResolutions /
> - sizeof mGopResolutions[0]);
> + VgpuGop->GopMode.MaxMode = (UINT32)(ARRAY_SIZE (mGopResolutions));
> VgpuGop->GopMode.Info = &VgpuGop->GopModeInfo;
> VgpuGop->GopMode.SizeOfInfo = sizeof VgpuGop->GopModeInfo;
>
>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
[lersek@redhat.com: tweak subject line]
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
I changed the subject line like this:
OvmfPkg: Make more use of ARRAY_SIZE()
Commit 5a5025e485b2.
Thanks!
Laszlo
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-10-27 16:23 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-27 10:16 [PATCH] OvmfPkg: Make use of ARRAY_SIZE() Gary Lin
2016-10-27 16:23 ` Laszlo Ersek
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox