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_gpu.c | |
parent | drm/etnaviv: move exec_state to submit object (diff) | |
download | linux-7a9c0fe20e04f16db075a71065685628ec79e6c6.tar.xz linux-7a9c0fe20e04f16db075a71065685628ec79e6c6.zip |
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_gpu.c')
-rw-r--r-- | drivers/gpu/drm/etnaviv/etnaviv_gpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/etnaviv/etnaviv_gpu.c b/drivers/gpu/drm/etnaviv/etnaviv_gpu.c index 675c31be86a7..afc4b6c5fbf5 100644 --- a/drivers/gpu/drm/etnaviv/etnaviv_gpu.c +++ b/drivers/gpu/drm/etnaviv/etnaviv_gpu.c @@ -1324,7 +1324,7 @@ static void sync_point_perfmon_sample(struct etnaviv_gpu *gpu, const struct etnaviv_perfmon_request *pmr = submit->pmrs + i; if (pmr->flags == flags) - etnaviv_perfmon_process(gpu, pmr); + etnaviv_perfmon_process(gpu, pmr, submit->exec_state); } } |