mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-24 02:22:34 +03:00
gpu: nvgpu: retry tsg unbind if NEXT is set
The NEXT bit can remain set for the channel if timeslice expires before scheduler clears it. Due to this nvgpu fails TSG unbind and in turn nvrm_gpu fails channel close. In this case, checking the channel hw state after some time can help see NEXT bit cleared by scheduler. Reenable the tsg and return -EAGAIN to nvrm_gpu for it to retry again. Bug 3144960 Change-Id: I35f417f02270e371a4e632986b73a00f8a4f921a Signed-off-by: Sagar Kamble <skamble@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nvgpu/+/2468391 Reviewed-by: svc-mobile-cert <svc-mobile-cert@nvidia.com> Reviewed-by: Deepak Nibade <dnibade@nvidia.com> Reviewed-by: svc-mobile-coverity <svc-mobile-coverity@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:
committed by
mobile promotions
parent
35e28884ec
commit
cf287a4ef5
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved.
|
||||
* Copyright (c) 2020-2021, NVIDIA CORPORATION. All rights reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
@@ -294,7 +294,7 @@ done:
|
||||
}
|
||||
g->ops.fifo.is_preempt_pending =
|
||||
stub_fifo_is_preempt_pending_pass;
|
||||
err = nvgpu_tsg_unbind_channel(tsg, ch);
|
||||
err = nvgpu_tsg_force_unbind_channel(tsg, ch);
|
||||
if (err != 0) {
|
||||
unit_err(m, "Cannot unbind channel\n");
|
||||
}
|
||||
@@ -505,7 +505,7 @@ done:
|
||||
}
|
||||
g->ops.fifo.is_preempt_pending =
|
||||
stub_fifo_is_preempt_pending_pass;
|
||||
err = nvgpu_tsg_unbind_channel(tsg, ch);
|
||||
err = nvgpu_tsg_force_unbind_channel(tsg, ch);
|
||||
if (err != 0) {
|
||||
unit_err(m, "Cannot unbind channel\n");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user