Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
vhost_vdpa: fix the input in trace_vhost_vdpa_listener_region_del()
In trace_vhost_vdpa_listener_region_del, the value for llend
should change to int128_get64(int128_sub(llend, int128_one()))

Signed-off-by: Cindy Lu <lulu@redhat.com>
Message-Id: <20230510054631.2951812-3-lulu@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
  • Loading branch information
lulu-github-name authored and mstsirkin committed May 19, 2023
1 parent 74b5d2b commit 3d1e4d3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion hw/virtio/vhost-vdpa.c
Expand Up @@ -288,7 +288,8 @@ static void vhost_vdpa_listener_region_del(MemoryListener *listener,
iova = TARGET_PAGE_ALIGN(section->offset_within_address_space);
llend = vhost_vdpa_section_end(section);

trace_vhost_vdpa_listener_region_del(v, iova, int128_get64(llend));
trace_vhost_vdpa_listener_region_del(v, iova,
int128_get64(int128_sub(llend, int128_one())));

if (int128_ge(int128_make64(iova), llend)) {
return;
Expand Down

0 comments on commit 3d1e4d3

Please sign in to comment.