The member state of task_struct has been renamed to __state and its type
changed from long to unsigned int.

https://lore.kernel.org/linux-arch/[email protected]/

Signed-off-by: Alexander Egorenkov <[email protected]>
---
v1 -> v2:
 * Fix size initialization for __state

 defs.h |  1 +
 task.c | 10 +++++++++-
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/defs.h b/defs.h
index 6bb00e2..cd5bc1a 100644
--- a/defs.h
+++ b/defs.h
@@ -2290,6 +2290,7 @@ struct size_table {         /* stash of commonly-used 
sizes */
        long sk_buff_head_qlen;
        long sk_buff_len;
        long orc_entry;
+       long task_struct_state;
        long task_struct_policy;
        long pid;
        long bpf_prog;
diff --git a/task.c b/task.c
index 36cf259..672b416 100644
--- a/task.c
+++ b/task.c
@@ -297,6 +297,11 @@ task_init(void)
        }
 
         MEMBER_OFFSET_INIT(task_struct_state, "task_struct", "state");
+       MEMBER_SIZE_INIT(task_struct_state, "task_struct", "state");
+       if (INVALID_MEMBER(task_struct_state)) {
+               MEMBER_OFFSET_INIT(task_struct_state, "task_struct", "__state");
+               MEMBER_SIZE_INIT(task_struct_state, "task_struct", "__state");
+       }
         MEMBER_OFFSET_INIT(task_struct_exit_state, "task_struct", 
"exit_state");
         MEMBER_OFFSET_INIT(task_struct_pid, "task_struct", "pid");
         MEMBER_OFFSET_INIT(task_struct_comm, "task_struct", "comm");
@@ -5926,7 +5931,10 @@ task_state(ulong task)
        if (!tt->last_task_read)
                return 0;
 
-       state = ULONG(tt->task_struct + OFFSET(task_struct_state));
+       if (SIZE(task_struct_state) == sizeof(ulong))
+               state = ULONG(tt->task_struct + OFFSET(task_struct_state));
+       else
+               state = UINT(tt->task_struct + OFFSET(task_struct_state));
        exit_state = VALID_MEMBER(task_struct_exit_state) ?
                ULONG(tt->task_struct + OFFSET(task_struct_exit_state)) : 0;
 
-- 
2.31.1

--
Crash-utility mailing list
[email protected]
https://listman.redhat.com/mailman/listinfo/crash-utility

Reply via email to