qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ACPI: Assert that we don't run out of the preallocated memory
@ 2020-06-22 11:31 Dongjiu Geng
  2020-07-23 17:50 ` Peter Maydell
  0 siblings, 1 reply; 4+ messages in thread
From: Dongjiu Geng @ 2020-06-22 11:31 UTC (permalink / raw)
  To: peter.maydell, mst, imammedo; +Cc: zhengxiang9, qemu-arm, qemu-devel, linuxarm

data_length is a constant value, so we use assert instead of
condition check.

Signed-off-by: Dongjiu Geng <gengdongjiu@huawei.com>
---
1. Address Peter and Michael's comments to use assert instead of if().
https://lore.kernel.org/qemu-devel/ca79ea28-9ea9-18a5-99ad-25c3eb744721@huawei.com/
---
 hw/acpi/ghes.c | 12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)

diff --git a/hw/acpi/ghes.c b/hw/acpi/ghes.c
index b363bc331d..f0ee9f51ca 100644
--- a/hw/acpi/ghes.c
+++ b/hw/acpi/ghes.c
@@ -204,16 +204,12 @@ static int acpi_ghes_record_mem_error(uint64_t error_block_address,
 
     /* This is the length if adding a new generic error data entry*/
     data_length = ACPI_GHES_DATA_LENGTH + ACPI_GHES_MEM_CPER_LENGTH;
-
     /*
-     * Check whether it will run out of the preallocated memory if adding a new
-     * generic error data entry
+     * It should not run out of the preallocated memory if adding a new generic
+     * error data entry
      */
-    if ((data_length + ACPI_GHES_GESB_SIZE) > ACPI_GHES_MAX_RAW_DATA_LENGTH) {
-        error_report("Not enough memory to record new CPER!!!");
-        g_array_free(block, true);
-        return -1;
-    }
+    assert((data_length + ACPI_GHES_GESB_SIZE) <=
+            ACPI_GHES_MAX_RAW_DATA_LENGTH);
 
     /* Build the new generic error status block header */
     acpi_ghes_generic_error_status(block, ACPI_GEBS_UNCORRECTABLE,
-- 
2.17.1



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] ACPI: Assert that we don't run out of the preallocated memory
  2020-06-22 11:31 [PATCH] ACPI: Assert that we don't run out of the preallocated memory Dongjiu Geng
@ 2020-07-23 17:50 ` Peter Maydell
  2020-07-24 12:55   ` Michael S. Tsirkin
  0 siblings, 1 reply; 4+ messages in thread
From: Peter Maydell @ 2020-07-23 17:50 UTC (permalink / raw)
  To: Dongjiu Geng
  Cc: Michael S. Tsirkin, Linuxarm, QEMU Developers, Zheng Xiang,
	qemu-arm, Igor Mammedov

On Mon, 22 Jun 2020 at 12:30, Dongjiu Geng <gengdongjiu@huawei.com> wrote:
>
> data_length is a constant value, so we use assert instead of
> condition check.
>
> Signed-off-by: Dongjiu Geng <gengdongjiu@huawei.com>
> ---
> 1. Address Peter and Michael's comments to use assert instead of if().
> https://lore.kernel.org/qemu-devel/ca79ea28-9ea9-18a5-99ad-25c3eb744721@huawei.com/

Oops, looks like we forgot about this patch -- Michael, are you
taking it through your tree or should I take it via target-arm ?

thanks
-- PMM


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] ACPI: Assert that we don't run out of the preallocated memory
  2020-07-23 17:50 ` Peter Maydell
@ 2020-07-24 12:55   ` Michael S. Tsirkin
  2020-07-24 13:09     ` Peter Maydell
  0 siblings, 1 reply; 4+ messages in thread
From: Michael S. Tsirkin @ 2020-07-24 12:55 UTC (permalink / raw)
  To: Peter Maydell
  Cc: Linuxarm, QEMU Developers, Zheng Xiang, qemu-arm, Igor Mammedov,
	Dongjiu Geng

On Thu, Jul 23, 2020 at 06:50:06PM +0100, Peter Maydell wrote:
> On Mon, 22 Jun 2020 at 12:30, Dongjiu Geng <gengdongjiu@huawei.com> wrote:
> >
> > data_length is a constant value, so we use assert instead of
> > condition check.
> >
> > Signed-off-by: Dongjiu Geng <gengdongjiu@huawei.com>
> > ---
> > 1. Address Peter and Michael's comments to use assert instead of if().
> > https://lore.kernel.org/qemu-devel/ca79ea28-9ea9-18a5-99ad-25c3eb744721@huawei.com/
> 
> Oops, looks like we forgot about this patch -- Michael, are you
> taking it through your tree or should I take it via target-arm ?
> 
> thanks
> -- PMM

Feel free to merge pls.
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] ACPI: Assert that we don't run out of the preallocated memory
  2020-07-24 12:55   ` Michael S. Tsirkin
@ 2020-07-24 13:09     ` Peter Maydell
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Maydell @ 2020-07-24 13:09 UTC (permalink / raw)
  To: Michael S. Tsirkin
  Cc: Linuxarm, QEMU Developers, Zheng Xiang, qemu-arm, Igor Mammedov,
	Dongjiu Geng

On Fri, 24 Jul 2020 at 13:55, Michael S. Tsirkin <mst@redhat.com> wrote:
>
> On Thu, Jul 23, 2020 at 06:50:06PM +0100, Peter Maydell wrote:
> > On Mon, 22 Jun 2020 at 12:30, Dongjiu Geng <gengdongjiu@huawei.com> wrote:
> > >
> > > data_length is a constant value, so we use assert instead of
> > > condition check.
> > >
> > > Signed-off-by: Dongjiu Geng <gengdongjiu@huawei.com>
> > > ---
> > > 1. Address Peter and Michael's comments to use assert instead of if().
> > > https://lore.kernel.org/qemu-devel/ca79ea28-9ea9-18a5-99ad-25c3eb744721@huawei.com/
> >
> > Oops, looks like we forgot about this patch -- Michael, are you
> > taking it through your tree or should I take it via target-arm ?
> >
> > thanks
> > -- PMM
>
> Feel free to merge pls.
> Reviewed-by: Michael S. Tsirkin <mst@redhat.com>



Applied to target-arm.next, thanks.

-- PMM


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-07-24 13:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-22 11:31 [PATCH] ACPI: Assert that we don't run out of the preallocated memory Dongjiu Geng
2020-07-23 17:50 ` Peter Maydell
2020-07-24 12:55   ` Michael S. Tsirkin
2020-07-24 13:09     ` Peter Maydell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).