* [PATCH bpf v3] tools/runqslower: use __state instead of state
@ 2021-07-06 18:59 SanjayKumar J
0 siblings, 0 replies; only message in thread
From: SanjayKumar J @ 2021-07-06 18:59 UTC (permalink / raw)
To: ast, daniel, andrii, kafai, songliubraving, yhs, john.fastabend,
kpsingh
Cc: SanjayKumar J, netdev, bpf
Commit 2f064a59a11f: sched: Change task_struct::state
renamed task->state to task->__state in task_struct
Acked-by: Yonghong Song <yhs@fb.com>
Signed-off-by: SanjayKumar J <vjsanjay@gmail.com>
---
tools/bpf/runqslower/runqslower.bpf.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/bpf/runqslower/runqslower.bpf.c b/tools/bpf/runqslower/runqslower.bpf.c
index 645530ca7e98..ab9353f2fd46 100644
--- a/tools/bpf/runqslower/runqslower.bpf.c
+++ b/tools/bpf/runqslower/runqslower.bpf.c
@@ -74,7 +74,7 @@ int handle__sched_switch(u64 *ctx)
u32 pid;
/* ivcsw: treat like an enqueue event and store timestamp */
- if (prev->state == TASK_RUNNING)
+ if (prev->__state == TASK_RUNNING)
trace_enqueue(prev);
pid = next->pid;
--
2.32.0
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2021-07-06 19:02 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-07-06 18:59 [PATCH bpf v3] tools/runqslower: use __state instead of state SanjayKumar J
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).