i965/bufmgr: fix invalid assertion
The idea behind this assert is that if a buffer is in bufmgr->handle_table it's because it has been shared from i965 to the outside. This is when we add the drm FD associated to this BO to bo->exports. But we also import buffer from the outside into i965 and those buffers don't have an associated drm FD added to bo->exports. If you import the same buffer more than once, you'll run into this assert. v2: Also drop assert from brw_bo_gem_create_from_name() (Ian) Signed-off-by:Lionel Landwerlin <lionel.g.landwerlin@intel.com> Fixes: 57e4d0aa ("i965: fix export of GEM handles") Reviewed-by:
Ian Romanick <ian.d.romanick@intel.com> Part-of: <!10386>