From: Cédric Le Goater Date: Fri, 22 Dec 2023 07:55:23 +0000 (+0100) Subject: backends/iommufd: Remove check on number of backend users X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=c2ab3a6f7411c895e538e8350fee8948ac07c1a0;p=qemu.git backends/iommufd: Remove check on number of backend users QOM already has a ref count on objects and it will assert much earlier, when INT_MAX is reached. Reviewed-by: Eric Auger Reviewed-by: Zhenzhong Duan Signed-off-by: Cédric Le Goater --- diff --git a/backends/iommufd.c b/backends/iommufd.c index ba58a0eb0d..393c0d9a37 100644 --- a/backends/iommufd.c +++ b/backends/iommufd.c @@ -80,11 +80,6 @@ int iommufd_backend_connect(IOMMUFDBackend *be, Error **errp) int fd, ret = 0; qemu_mutex_lock(&be->lock); - if (be->users == UINT32_MAX) { - error_setg(errp, "too many connections"); - ret = -E2BIG; - goto out; - } if (be->owned && !be->users) { fd = qemu_open_old("/dev/iommu", O_RDWR); if (fd < 0) {