1 From 032a74d83b263c4faead8e4c25d497fb8ea07b6e Mon Sep 17 00:00:00 2001
2 From: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
3 Date: Thu, 12 Dec 2019 10:29:02 -0500
4 Subject: [PATCH 2/4] Fix: sunrpc: null rpc_clnt dereference in rpc_task_queued
7 Based on upstream Linux commit:
9 commit 0be283f676a1e7b208db0c992283197ef8b52158
10 Author: Benjamin Coddington <bcodding@redhat.com>
11 Date: Tue Jan 23 09:32:35 2018 -0500
13 SUNRPC: Fix null rpc_clnt dereference in rpc_task_queued tracepoint
15 Backchannel tasks will not have a reference to the rpc_clnt. Return -1 for
18 Signed-off-by: Benjamin Coddington <bcodding@redhat.com>
19 Signed-off-by: Trond Myklebust <trondmy@gmail.com>
21 Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
22 Upstream-Status: Backport [https://github.com/lttng/lttng-modules/commit/8f83a9103dcdf4f6b73783427fc5ded4869309d5]
23 Signed-off-by: Quanyang Wang <quanyang.wang@windriver.com>
25 instrumentation/events/lttng-module/rpc.h | 3 ++-
26 1 file changed, 2 insertions(+), 1 deletion(-)
28 diff --git a/instrumentation/events/lttng-module/rpc.h b/instrumentation/events/lttng-module/rpc.h
29 index fb13106..68c622c 100644
30 --- a/instrumentation/events/lttng-module/rpc.h
31 +++ b/instrumentation/events/lttng-module/rpc.h
32 @@ -176,7 +176,8 @@ LTTNG_TRACEPOINT_EVENT_CLASS(rpc_task_queued,
35 ctf_integer(unsigned int, task_id, task->tk_pid)
36 - ctf_integer(unsigned int, client_id, task->tk_client->cl_clid)
37 + ctf_integer(unsigned int, client_id, task->tk_client ?
38 + task->tk_client->cl_clid : -1)
39 ctf_integer(unsigned long, timeout, task->tk_timeout)
40 ctf_integer(unsigned long, runstate, task->tk_runstate)
41 ctf_integer(int, status, task->tk_status)