On Fri, Feb 27, 2026 at 02:31:07PM +0100, Thomas Zimmermann wrote: > Instead of testing import_attach for imported GEM buffers, invoke > drm_gem_is_imported() to do the test. The test itself does not change. > > Signed-off-by: Thomas Zimmermann <[email protected]> > Cc: Boris Brezillon <[email protected]> > Cc: Steven Price <[email protected]> > Cc: Liviu Dudau <[email protected]>
Reviewed-by: Liviu Dudau <[email protected]> Best regards, Liviu > --- > drivers/gpu/drm/panthor/panthor_gem.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/panthor/panthor_gem.c > b/drivers/gpu/drm/panthor/panthor_gem.c > index 4b4575dd6e90..6d14b0269574 100644 > --- a/drivers/gpu/drm/panthor/panthor_gem.c > +++ b/drivers/gpu/drm/panthor/panthor_gem.c > @@ -666,7 +666,7 @@ static void panthor_gem_debugfs_bo_print(struct > panthor_gem_object *bo, > resident_size, > drm_vma_node_start(&bo->base.base.vma_node)); > > - if (bo->base.base.import_attach) > + if (drm_gem_is_imported(&bo->base.base)) > gem_state_flags |= PANTHOR_DEBUGFS_GEM_STATE_FLAG_IMPORTED; > if (bo->base.base.dma_buf) > gem_state_flags |= PANTHOR_DEBUGFS_GEM_STATE_FLAG_EXPORTED; > -- > 2.52.0 > -- ==================== | I would like to | | fix the world, | | but they're not | | giving me the | \ source code! / --------------- ¯\_(ツ)_/¯
