On Thu, 28 Feb 2019 15:49:05 +0100 Daniel Vetter <[email protected]> wrote:
> We disallow subleasing, so no point checking whether the master holds > all the leases - it will. > > Spotted while typing exhaustive igt coverage for all these corner > cases. > > Cc: Keith Packard <[email protected]> > Signed-off-by: Daniel Vetter <[email protected]> Reviewed-by: Boris Brezillon <[email protected]> > --- > drivers/gpu/drm/drm_lease.c | 2 -- > 1 file changed, 2 deletions(-) > > diff --git a/drivers/gpu/drm/drm_lease.c b/drivers/gpu/drm/drm_lease.c > index 1176d814cf7f..cce5d9dd52ff 100644 > --- a/drivers/gpu/drm/drm_lease.c > +++ b/drivers/gpu/drm/drm_lease.c > @@ -220,8 +220,6 @@ static struct drm_master *drm_lease_create(struct > drm_master *lessor, struct idr > error = 0; > if (!idr_find(&dev->mode_config.object_idr, object)) > error = -ENOENT; > - else if (!_drm_lease_held_master(lessor, object)) > - error = -EACCES; > else if (_drm_has_leased(lessor, object)) > error = -EBUSY; > _______________________________________________ dri-devel mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/dri-devel
