diff options
author | Lucas Stach <l.stach@pengutronix.de> | 2017-11-24 15:19:16 +0100 |
---|---|---|
committer | Lucas Stach <l.stach@pengutronix.de> | 2018-01-02 17:33:01 +0100 |
commit | 7a9c0fe20e04f16db075a71065685628ec79e6c6 (patch) | |
tree | 90f2cf51d6002dbd1fdf70f8f8e96917a74665ca /drivers/gpu/drm/etnaviv/etnaviv_perfmon.h | |
parent | 797b0159e6b9124c24968c9b2b4631eba7c112b9 (diff) | |
download | linux-7a9c0fe20e04f16db075a71065685628ec79e6c6.tar.bz2 |
drm/etnaviv: use submit exec_state for perfmon sampling
The GPU exec state may have changed at the time when the perfmon sampling
is done, as it reflects the state of the last submission, not the current
GPU execution state.
So for proper sampling we must use the submit exec_state.
Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
Diffstat (limited to 'drivers/gpu/drm/etnaviv/etnaviv_perfmon.h')
-rw-r--r-- | drivers/gpu/drm/etnaviv/etnaviv_perfmon.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/etnaviv/etnaviv_perfmon.h b/drivers/gpu/drm/etnaviv/etnaviv_perfmon.h index 35dce194cb00..c1653c64ab6b 100644 --- a/drivers/gpu/drm/etnaviv/etnaviv_perfmon.h +++ b/drivers/gpu/drm/etnaviv/etnaviv_perfmon.h @@ -44,6 +44,6 @@ int etnaviv_pm_req_validate(const struct drm_etnaviv_gem_submit_pmr *r, u32 exec_state); void etnaviv_perfmon_process(struct etnaviv_gpu *gpu, - const struct etnaviv_perfmon_request *pmr); + const struct etnaviv_perfmon_request *pmr, u32 exec_state); #endif /* __ETNAVIV_PERFMON_H__ */ |