gpu: nvgpu: update description for stall, non-stall counters

Update description for stall and non-stall counters which is now having
values 1 on entering the handler and 0 on exiting it. It's corresponding
to https://git-master.nvidia.com/r/c/linux-nvgpu/+/2247819/ change.

Change-Id: I0f94ac68461994557a024c5b2597227b39cfcc69
Signed-off-by: shashank singh <shashsingh@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/c/linux-nvgpu/+/2283988
Reviewed-by: Deepak Nibade <dnibade@nvidia.com>
Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com>
Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
GVS: Gerrit_Virtual_Submit
This commit is contained in:
shashank singh
2020-01-23 11:14:45 +05:30
committed by Alex Waterman
parent 945de82433
commit 105dbab24e

View File

@@ -210,8 +210,8 @@ struct nvgpu_mc {
struct nvgpu_cond sw_irq_stall_last_handled_cond;
/**
* Stalling interrupt status counter - updated on handling of the
* stalling interrupt.
* Stalling interrupt status counter - Set to 1 on entering stalling
* interrupt handler and reset to 0 on exit.
*/
nvgpu_atomic_t sw_irq_stall_pending;
@@ -223,8 +223,8 @@ struct nvgpu_mc {
struct nvgpu_cond sw_irq_nonstall_last_handled_cond;
/**
* Non-stalling interrupt status counter - updated on handling of the
* non-stalling interrupt.
* Non-stalling interrupt status counter - Set to 1 on entering
* non-stalling interrupt handler and reset to 0 on exit.
*/
nvgpu_atomic_t sw_irq_nonstall_pending;