summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gk20a/channel_gk20a.c
diff options
context:
space:
mode:
authorTerje Bergstrom <tbergstrom@nvidia.com>2017-12-11 14:33:48 -0500
committermobile promotions <svcmobile_promotions@nvidia.com>2017-12-28 13:02:09 -0500
commit32353ab744937add05253cea617f397ea3d13920 (patch)
tree0163c07d028179cf9d4fb1e492c98b6549050c39 /drivers/gpu/nvgpu/gk20a/channel_gk20a.c
parent48114293077c24efa6e2df8459d0800fea5ec432 (diff)
gpu: nvgpu: Implement abstraction for finding TID
Implement abstraction for finding the thread ID of thread currently being run. This is tracked for context switch tracing. In Linux kernel this is implemented by returning PID. Change-Id: Id46a318894f9a2ff3c85d2c8ef0b02c52783f122 Signed-off-by: Terje Bergstrom <tbergstrom@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1627239 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gk20a/channel_gk20a.c')
-rw-r--r--drivers/gpu/nvgpu/gk20a/channel_gk20a.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/channel_gk20a.c b/drivers/gpu/nvgpu/gk20a/channel_gk20a.c
index 07ae5a16..f4a49a4b 100644
--- a/drivers/gpu/nvgpu/gk20a/channel_gk20a.c
+++ b/drivers/gpu/nvgpu/gk20a/channel_gk20a.c
@@ -44,6 +44,7 @@
44#include <nvgpu/barrier.h> 44#include <nvgpu/barrier.h>
45#include <nvgpu/ctxsw_trace.h> 45#include <nvgpu/ctxsw_trace.h>
46#include <nvgpu/error_notifier.h> 46#include <nvgpu/error_notifier.h>
47#include <nvgpu/os_sched.h>
47 48
48#include "gk20a.h" 49#include "gk20a.h"
49#include "dbg_gpu_gk20a.h" 50#include "dbg_gpu_gk20a.h"
@@ -726,8 +727,8 @@ struct channel_gk20a *gk20a_open_new_channel(struct gk20a *g,
726 /* now the channel is in a limbo out of the free list but not marked as 727 /* now the channel is in a limbo out of the free list but not marked as
727 * alive and used (i.e. get-able) yet */ 728 * alive and used (i.e. get-able) yet */
728 729
729 ch->pid = current->pid; 730 ch->pid = nvgpu_current_tid(g);
730 ch->tgid = current->tgid; /* process granularity for FECS traces */ 731 ch->tgid = nvgpu_current_pid(g); /* process granularity for FECS traces */
731 732
732 /* By default, channel is regular (non-TSG) channel */ 733 /* By default, channel is regular (non-TSG) channel */
733 ch->tsgid = NVGPU_INVALID_TSG_ID; 734 ch->tsgid = NVGPU_INVALID_TSG_ID;