From: Richard Henderson <richard.henderson@linaro.org>
To: "Philippe Mathieu-Daudé" <philmd@linaro.org>, qemu-devel@nongnu.org
Cc: "Michael S. Tsirkin" <mst@redhat.com>, Thomas Huth <thuth@redhat.com>
Subject: Re: [PATCH v2 1/6] hw/virtio: Propagate page_mask to vhost_vdpa_listener_skipped_section()
Date: Fri, 7 Jul 2023 21:44:16 +0100 [thread overview]
Message-ID: <d400dedd-ca21-4c72-629a-f79cfcf7b5da@linaro.org> (raw)
In-Reply-To: <20230707151719.70613-2-philmd@linaro.org>
On 7/7/23 16:17, Philippe Mathieu-Daudé wrote:
> In order to make vhost-vdpa.c a target-agnostic source unit,
> we need to remove the TARGET_PAGE_SIZE / TARGET_PAGE_MASK /
> TARGET_PAGE_ALIGN uses. TARGET_PAGE_SIZE will be replaced by
> the runtime qemu_target_page_size(). The other ones will be
> deduced from TARGET_PAGE_SIZE.
>
> Since the 3 macros are used in 3 related functions (sharing
> the same call tree), we'll refactor them to only depend on
> TARGET_PAGE_SIZE.
TARGET_PAGE_MASK?
The code looks fine,
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
r~
>
> Having the following call tree:
>
> vhost_vdpa_listener_region_del()
> -> vhost_vdpa_listener_skipped_section()
> -> vhost_vdpa_section_end()
>
> The first step is to propagate TARGET_PAGE_MASK to
> vhost_vdpa_listener_skipped_section().
>
> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
> ---
> hw/virtio/vhost-vdpa.c | 7 ++++---
> 1 file changed, 4 insertions(+), 3 deletions(-)
>
> diff --git a/hw/virtio/vhost-vdpa.c b/hw/virtio/vhost-vdpa.c
> index 3c575a9a6e..87653bf841 100644
> --- a/hw/virtio/vhost-vdpa.c
> +++ b/hw/virtio/vhost-vdpa.c
> @@ -42,7 +42,8 @@ static Int128 vhost_vdpa_section_end(const MemoryRegionSection *section)
>
> static bool vhost_vdpa_listener_skipped_section(MemoryRegionSection *section,
> uint64_t iova_min,
> - uint64_t iova_max)
> + uint64_t iova_max,
> + int page_mask)
> {
> Int128 llend;
>
> @@ -313,7 +314,7 @@ static void vhost_vdpa_listener_region_add(MemoryListener *listener,
> int ret;
>
> if (vhost_vdpa_listener_skipped_section(section, v->iova_range.first,
> - v->iova_range.last)) {
> + v->iova_range.last, TARGET_PAGE_MASK)) {
> return;
> }
> if (memory_region_is_iommu(section->mr)) {
> @@ -396,7 +397,7 @@ static void vhost_vdpa_listener_region_del(MemoryListener *listener,
> int ret;
>
> if (vhost_vdpa_listener_skipped_section(section, v->iova_range.first,
> - v->iova_range.last)) {
> + v->iova_range.last, TARGET_PAGE_MASK)) {
> return;
> }
> if (memory_region_is_iommu(section->mr)) {
next prev parent reply other threads:[~2023-07-07 20:45 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-07 15:17 [PATCH v2 0/6] hw/virtio: Build vhost-vdpa.o once for all targets Philippe Mathieu-Daudé
2023-07-07 15:17 ` [PATCH v2 1/6] hw/virtio: Propagate page_mask to vhost_vdpa_listener_skipped_section() Philippe Mathieu-Daudé
2023-07-07 20:44 ` Richard Henderson [this message]
2023-07-07 15:17 ` [PATCH v2 2/6] hw/virtio: Propagate page_mask to vhost_vdpa_section_end() Philippe Mathieu-Daudé
2023-07-07 20:44 ` Richard Henderson
2023-07-07 15:17 ` [PATCH v2 3/6] hw/virtio/vhost-vdpa: Inline TARGET_PAGE_ALIGN() macro Philippe Mathieu-Daudé
2023-07-07 20:46 ` Richard Henderson
2023-07-07 15:17 ` [PATCH v2 4/6] hw/virtio/vhost-vdpa: Use target-agnostic qemu_target_page_mask() Philippe Mathieu-Daudé
2023-07-07 20:47 ` Richard Henderson
2023-07-07 15:17 ` [PATCH v2 5/6] hw/virtio: Build vhost-vdpa.o once Philippe Mathieu-Daudé
2023-07-07 20:48 ` Richard Henderson
2023-07-07 15:17 ` [PATCH v2 6/6] hw/virtio/meson: Rename softmmu_virtio_ss[] -> system_virtio_ss[] Philippe Mathieu-Daudé
2023-07-07 20:48 ` Richard Henderson
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=d400dedd-ca21-4c72-629a-f79cfcf7b5da@linaro.org \
--to=richard.henderson@linaro.org \
--cc=mst@redhat.com \
--cc=philmd@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=thuth@redhat.com \
/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;
as well as URLs for NNTP newsgroup(s).