diff options
| author | Cédric Le Goater <clg@redhat.com> | 2025-03-26 08:51:16 +0100 |
|---|---|---|
| committer | Cédric Le Goater <clg@redhat.com> | 2025-04-25 09:01:37 +0200 |
| commit | c51358bd17c324dae65f745df9c954e3a7137219 (patch) | |
| tree | ba301fe9631138ea939b62b747b84c0a4f2ff9bc /hw/vfio/container.c | |
| parent | 60f29d08237b6184009d0b00b933a5a788da5f94 (diff) | |
| download | focaccia-qemu-c51358bd17c324dae65f745df9c954e3a7137219.tar.gz focaccia-qemu-c51358bd17c324dae65f745df9c954e3a7137219.zip | |
vfio: Rename vfio_get_dirty_bitmap()
Rename to vfio_container_query_dirty_bitmap() to be consistent with the VFIO container routine naming scheme. Reviewed-by: Joao Martins <joao.m.martins@oracle.com> Reviewed-by: John Levon <john.levon@nutanix.com> Reviewed-by: Avihai Horon <avihaih@nvidia.com> Link: https://lore.kernel.org/qemu-devel/20250326075122.1299361-32-clg@redhat.com Signed-off-by: Cédric Le Goater <clg@redhat.com>
Diffstat (limited to 'hw/vfio/container.c')
| -rw-r--r-- | hw/vfio/container.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/vfio/container.c b/hw/vfio/container.c index 8e4a2cae03..bb3990aece 100644 --- a/hw/vfio/container.c +++ b/hw/vfio/container.c @@ -169,7 +169,7 @@ static int vfio_legacy_dma_unmap(const VFIOContainerBase *bcontainer, } if (need_dirty_sync) { - ret = vfio_get_dirty_bitmap(bcontainer, iova, size, + ret = vfio_container_query_dirty_bitmap(bcontainer, iova, size, iotlb->translated_addr, &local_err); if (ret) { error_report_err(local_err); |