diff --git a/.pick_status.json b/.pick_status.json index da2ffdeaa71..3342d8bcfc0 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -463,7 +463,7 @@ "description": "i965/bufmgr: fix invalid assertion", "nominated": true, "nomination_type": 1, - "resolution": 0, + "resolution": 1, "master_sha": null, "because_sha": "57e4d0aa1c16d3be36ccee4065c55901cb6fad43" }, diff --git a/src/mesa/drivers/dri/i965/brw_bufmgr.c b/src/mesa/drivers/dri/i965/brw_bufmgr.c index 13c4fa08ef0..dc0ea07f7ac 100644 --- a/src/mesa/drivers/dri/i965/brw_bufmgr.c +++ b/src/mesa/drivers/dri/i965/brw_bufmgr.c @@ -794,7 +794,6 @@ brw_bo_gem_create_from_name(struct brw_bufmgr *bufmgr, */ bo = hash_find_bo(bufmgr->handle_table, open_arg.handle); if (bo) { - assert(list_is_empty(&bo->exports)); brw_bo_reference(bo); goto out; } @@ -1485,7 +1484,6 @@ brw_bo_gem_create_from_prime_internal(struct brw_bufmgr *bufmgr, int prime_fd, */ bo = hash_find_bo(bufmgr->handle_table, handle); if (bo) { - assert(list_is_empty(&bo->exports)); brw_bo_reference(bo); goto out; }