All of lore.kernel.org
 help / color / mirror / Atom feed
From: Igor Mammedov <imammedo@redhat.com>
To: fanhuang <FangSheng.Huang@amd.com>
Cc: <qemu-devel@nongnu.org>, <david@kernel.org>, <mst@redhat.com>,
	<gourry@gourry.net>, <philmd@mailo.com>, <peterx@redhat.com>,
	<Zhigang.Luo@amd.com>, <Lianjie.Shi@amd.com>
Subject: Re: [PATCH v13 10/10] tests/qtest: cover sp-mem SOFT_RESERVED e820 entry
Date: Mon, 22 Jun 2026 16:09:59 +0200	[thread overview]
Message-ID: <20260622160959.428c358a@imammedo> (raw)
In-Reply-To: <20260619111136.3481329-11-FangSheng.Huang@amd.com>

On Fri, 19 Jun 2026 19:11:36 +0800
fanhuang <FangSheng.Huang@amd.com> wrote:

> Boot one sp-mem device and assert the guest's e820 table gains exactly
> one E820_SOFT_RESERVED range whose length matches the device's backend
> size.
> 
> Signed-off-by: FangSheng Huang <FangSheng.Huang@amd.com>

Acked-by: Igor Mammedov <imammedo@redhat.com>

> ---
>  tests/qtest/e820-test.c | 34 ++++++++++++++++++++++++++++++++++
>  1 file changed, 34 insertions(+)
> 
> diff --git a/tests/qtest/e820-test.c b/tests/qtest/e820-test.c
> index 1db0744c08..aafa3c1aa2 100644
> --- a/tests/qtest/e820-test.c
> +++ b/tests/qtest/e820-test.c
> @@ -16,6 +16,7 @@
>  #include "libqtest.h"
>  #include "libqos/fw_cfg.h"
>  #include "qemu/bswap.h"
> +#include "qemu/units.h"
>  
>  /* e820 entry layout and types (cf. hw/i386/e820_memory_layout.h) */
>  #define E820_RAM            1
> @@ -85,11 +86,44 @@ static void test_e820_basic(void)
>      qtest_quit(s);
>  }
>  
> +static void test_e820_sp_mem(void)
> +{
> +    struct e820_entry table[E820_MAX_ENTRIES];
> +    QFWCFG *fw_cfg;
> +    QTestState *s;
> +    size_t n, i;
> +    int soft_reserved = 0;
> +    uint64_t soft_reserved_len = 0;
> +
> +    s = qtest_init("-machine q35 -m 256M,slots=2,maxmem=2G "
> +                   "-object memory-backend-ram,id=ram0,size=256M "
> +                   "-numa node,nodeid=0,memdev=ram0 "
> +                   "-object memory-backend-ram,id=spm0,size=128M "
> +                   "-device sp-mem,id=sp0,memdev=spm0,node=0");
> +    fw_cfg = pc_fw_cfg_init(s);
> +
> +    n = get_e820_table(fw_cfg, table);
> +    for (i = 0; i < n; i++) {
> +        if (le32_to_cpu(table[i].type) == E820_SOFT_RESERVED) {
> +            soft_reserved++;
> +            soft_reserved_len = le64_to_cpu(table[i].length);
> +        }
> +    }
> +
> +    /* exactly one SOFT_RESERVED range, sized to the backend */
> +    g_assert_cmpint(soft_reserved, ==, 1);
> +    g_assert_cmpint(soft_reserved_len, ==, 128 * MiB);
> +
> +    pc_fw_cfg_uninit(fw_cfg);
> +    qtest_quit(s);
> +}
> +
>  int main(int argc, char **argv)
>  {
>      g_test_init(&argc, &argv, NULL);
>  
>      qtest_add_func("e820/basic", test_e820_basic);
> +    qtest_add_func("e820/sp-mem", test_e820_sp_mem);
>  
>      return g_test_run();
>  }



      reply	other threads:[~2026-06-22 14:10 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-06-19 11:11 [PATCH v13 00/10] hw/mem: add sp-mem device for Specific Purpose Memory fanhuang
2026-06-19 11:11 ` [PATCH v13 01/10] " fanhuang
2026-06-22 12:49   ` Igor Mammedov
2026-06-19 11:11 ` [PATCH v13 02/10] qapi, hmp: introspection for the sp-mem device fanhuang
2026-06-22 12:52   ` Igor Mammedov
2026-06-22 12:55   ` Daniel P. Berrangé
2026-06-22 13:07     ` Igor Mammedov
2026-06-22 13:22       ` Daniel P. Berrangé
2026-06-19 11:11 ` [PATCH v13 03/10] i386/acpi-build: partition device_memory SRAT umbrella for sp-mem fanhuang
2026-06-19 11:11 ` [PATCH v13 04/10] hw/i386: hook sp-mem into the pc machine plug path fanhuang
2026-06-22 12:44   ` Igor Mammedov
2026-06-19 11:11 ` [PATCH v13 05/10] MAINTAINERS: cover sp-mem under Memory devices, add R: tag fanhuang
2026-06-19 11:11 ` [PATCH v13 06/10] tests/acpi: add empty expected blobs for sp-mem SRAT test fanhuang
2026-06-22 12:53   ` Igor Mammedov
2026-06-19 11:11 ` [PATCH v13 07/10] tests/acpi: add bios-tables-test case for sp-mem fanhuang
2026-06-22 13:00   ` Igor Mammedov
2026-06-19 11:11 ` [PATCH v13 08/10] tests/acpi: generate expected blobs for sp-mem SRAT test fanhuang
2026-06-22 13:09   ` Igor Mammedov
2026-06-19 11:11 ` [PATCH v13 09/10] tests/qtest: add e820 fw_cfg test fanhuang
2026-06-22 14:09   ` Igor Mammedov
2026-06-19 11:11 ` [PATCH v13 10/10] tests/qtest: cover sp-mem SOFT_RESERVED e820 entry fanhuang
2026-06-22 14:09   ` Igor Mammedov [this message]

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-all 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=20260622160959.428c358a@imammedo \
    --to=imammedo@redhat.com \
    --cc=FangSheng.Huang@amd.com \
    --cc=Lianjie.Shi@amd.com \
    --cc=Zhigang.Luo@amd.com \
    --cc=david@kernel.org \
    --cc=gourry@gourry.net \
    --cc=mst@redhat.com \
    --cc=peterx@redhat.com \
    --cc=philmd@mailo.com \
    --cc=qemu-devel@nongnu.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.