On Mon, May 15, 2023 at 1:32 PM Dan Carpenter <[email protected]> wrote:
>
> The gaudi2_get_tpc_idle_status() function returned the incorrect variable
> so it always returned true.
>
> Fixes: d85f0531b928 ("accel/habanalabs: break is_idle function into
> per-engine sub-routines")
> Signed-off-by: Dan Carpenter <[email protected]>
> ---
> From static analysis. Not tested.
>
> drivers/accel/habanalabs/gaudi2/gaudi2.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/accel/habanalabs/gaudi2/gaudi2.c
> b/drivers/accel/habanalabs/gaudi2/gaudi2.c
> index b778cf764a68..5539c84ee717 100644
> --- a/drivers/accel/habanalabs/gaudi2/gaudi2.c
> +++ b/drivers/accel/habanalabs/gaudi2/gaudi2.c
> @@ -7231,7 +7231,7 @@ static bool gaudi2_get_tpc_idle_status(struct hl_device
> *hdev, u64 *mask_arr, u8
>
> gaudi2_iterate_tpcs(hdev, &tpc_iter);
>
> - return tpc_idle_data.is_idle;
> + return *tpc_idle_data.is_idle;
> }
>
> static bool gaudi2_get_decoder_idle_status(struct hl_device *hdev, u64
> *mask_arr, u8 mask_len,
> --
> 2.39.2
>
Reviewed-by: Oded Gabbay <[email protected]>
Applied to -next.
Thanks,
Oded