[Mesa-dev] [PATCH 1/2] etnaviv: fix etna_bo_from_name
Eric Engestrom
eric.engestrom at imgtec.com
Fri Aug 4 15:22:35 UTC 2017
On Friday, 2017-08-04 17:07:54 +0200, Philipp Zabel wrote:
> Look up BOs from the name table using the name parameter instead of
> req.handle (which at this point is always zero).
>
> Signed-off-by: Philipp Zabel <p.zabel at pengutronix.de>
Reviewed-by: Eric Engestrom <eric.engestrom at imgtec.com>
> ---
> etnaviv/etnaviv_bo.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/etnaviv/etnaviv_bo.c b/etnaviv/etnaviv_bo.c
> index 4ad0434..4fe877f 100644
> --- a/etnaviv/etnaviv_bo.c
> +++ b/etnaviv/etnaviv_bo.c
> @@ -173,7 +173,7 @@ struct etna_bo *etna_bo_from_name(struct etna_device *dev, uint32_t name)
> pthread_mutex_lock(&table_lock);
>
> /* check name table first, to see if bo is already open: */
> - bo = lookup_bo(dev->name_table, req.handle);
> + bo = lookup_bo(dev->name_table, name);
> if (bo)
> goto out_unlock;
>
> --
> 2.1.4
>
More information about the mesa-dev
mailing list