Skip to content

Commit

Permalink
backends/iommufd: Remove check on number of backend users
Browse files Browse the repository at this point in the history
QOM already has a ref count on objects and it will assert much
earlier, when INT_MAX is reached.

Reviewed-by: Eric Auger <eric.auger@redhat.com>
Reviewed-by: Zhenzhong Duan <zhenzhong.duan@intel.com>
Signed-off-by: Cédric Le Goater <clg@redhat.com>
  • Loading branch information
legoater committed Jan 5, 2024
1 parent c817e5a commit c2ab3a6
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions backends/iommufd.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit c2ab3a6

Please sign in to comment.