aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Howells <dhowells@redhat.com>2019-10-03 17:44:44 +0100
committerDavid S. Miller <davem@davemloft.net>2019-10-04 13:57:14 -0700
commitdb9b2e0af605e7c994784527abfd9276cabd718a (patch)
tree49aeda7938e7759fe7ae957cc5a1e0011af4725d
parentqmi_wwan: add support for Cinterion CLS8 devices (diff)
downloadlinux-dev-db9b2e0af605e7c994784527abfd9276cabd718a.tar.xz
linux-dev-db9b2e0af605e7c994784527abfd9276cabd718a.zip
rxrpc: Fix rxrpc_recvmsg tracepoint
Fix the rxrpc_recvmsg tracepoint to handle being called with a NULL call parameter. Fixes: a25e21f0bcd2 ("rxrpc, afs: Use debug_ids rather than pointers in traces") Signed-off-by: David Howells <dhowells@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--include/trace/events/rxrpc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/trace/events/rxrpc.h b/include/trace/events/rxrpc.h
index a13a62db3565..edc5c887a44c 100644
--- a/include/trace/events/rxrpc.h
+++ b/include/trace/events/rxrpc.h
@@ -1068,7 +1068,7 @@ TRACE_EVENT(rxrpc_recvmsg,
),
TP_fast_assign(
- __entry->call = call->debug_id;
+ __entry->call = call ? call->debug_id : 0;
__entry->why = why;
__entry->seq = seq;
__entry->offset = offset;