From e7f0fc73cdab811948adf5227c04f722a7c3105b Mon Sep 17 00:00:00 2001 From: John Levon Date: Tue, 28 Sep 2021 17:34:12 +0100 Subject: disable VFIO_USER_DEVICE_GET_REGION_IO_FDS on invalid region (#607) If a region is not set up, asking for its iofds should fail with EINVAL. Co-authored-by: John Levon Signed-off-by: John Levon Reviewed-by: Thanos Makatos --- test/py/test_device_get_region_io_fds.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') diff --git a/test/py/test_device_get_region_io_fds.py b/test/py/test_device_get_region_io_fds.py index 63e3236..2179cf7 100644 --- a/test/py/test_device_get_region_io_fds.py +++ b/test/py/test_device_get_region_io_fds.py @@ -140,7 +140,7 @@ def test_device_get_region_io_fds_no_regions_setup(): index = VFU_PCI_DEV_BAR3_REGION_IDX, count = 0) ret = msg(ctx, sock, VFIO_USER_DEVICE_GET_REGION_IO_FDS, payload, - expect = 0) + expect = errno.EINVAL) def test_device_get_region_io_fds_region_no_mmap(): -- cgit v1.1