From: John Levon <[email protected]> The currently wrapped version of libvfio-user has compilation issues on newer compilers; bump the library version.
Signed-off-by: John Levon <[email protected]> Reviewed-by: Jagannathan Raman <[email protected]> Reviewed-by: Mark Cave-Ayland <[email protected]> Link: https://lore.kernel.org/qemu-devel/[email protected] Signed-off-by: Cédric Le Goater <[email protected]> --- hw/remote/vfio-user-obj.c | 3 ++- subprojects/libvfio-user.wrap | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/hw/remote/vfio-user-obj.c b/hw/remote/vfio-user-obj.c index 49bf5ecae0c44c6a9432fefceec964139b5fb309..87fa7b65722e4d917481bd1bd8116cfd39b98261 100644 --- a/hw/remote/vfio-user-obj.c +++ b/hw/remote/vfio-user-obj.c @@ -800,7 +800,8 @@ static void vfu_object_init_ctx(VfuObject *o, Error **errp) goto fail; } - ret = vfu_setup_device_dma(o->vfu_ctx, &dma_register, &dma_unregister); + ret = vfu_setup_device_dma(o->vfu_ctx, LIBVFIO_USER_MAX_DMA_REGIONS, + &dma_register, &dma_unregister); if (ret < 0) { error_setg(errp, "vfu: Failed to setup DMA handlers for %s", o->device); diff --git a/subprojects/libvfio-user.wrap b/subprojects/libvfio-user.wrap index 416955ca4515c7da8080986681f69629046a749b..11db795f8abe9bf86e0405651970160629ed3f30 100644 --- a/subprojects/libvfio-user.wrap +++ b/subprojects/libvfio-user.wrap @@ -1,4 +1,4 @@ [wrap-git] url = https://gitlab.com/qemu-project/libvfio-user.git -revision = 0b28d205572c80b568a1003db2c8f37ca333e4d7 +revision = 4d9f663450fa80ff375612dbbafe073700e3d3d8 depth = 1 -- 2.54.0
