diff options
Diffstat (limited to 'debian/patches-rt/0079-tracing-Remove-NULL-check-from-current-in-tracing_ge.patch')
-rw-r--r-- | debian/patches-rt/0079-tracing-Remove-NULL-check-from-current-in-tracing_ge.patch | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/debian/patches-rt/0079-tracing-Remove-NULL-check-from-current-in-tracing_ge.patch b/debian/patches-rt/0079-tracing-Remove-NULL-check-from-current-in-tracing_ge.patch index 5853f5af4..6bec397c5 100644 --- a/debian/patches-rt/0079-tracing-Remove-NULL-check-from-current-in-tracing_ge.patch +++ b/debian/patches-rt/0079-tracing-Remove-NULL-check-from-current-in-tracing_ge.patch @@ -1,9 +1,9 @@ -From 76993b5cd21ad0898e6d940ea5fe0449dec94465 Mon Sep 17 00:00:00 2001 +From e7051cf76ef2b2c5f8af1949e902463a8e4b1d12 Mon Sep 17 00:00:00 2001 From: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Date: Wed, 3 Feb 2021 11:05:26 -0500 Subject: [PATCH 079/323] tracing: Remove NULL check from current in tracing_generic_entry_update(). -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/5.10/older/patches-5.10.204-rt100.tar.xz +Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/5.10/older/patches-5.10.215-rt107.tar.xz I can't imagine when or why `current' would return a NULL pointer. This check was added in commit @@ -23,7 +23,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/include/linux/trace_events.h b/include/linux/trace_events.h -index c4b0524582d8..2fea9fcd4d4e 100644 +index c4b0524582d87..2fea9fcd4d4e9 100644 --- a/include/linux/trace_events.h +++ b/include/linux/trace_events.h @@ -156,10 +156,8 @@ static inline void tracing_generic_entry_update(struct trace_entry *entry, @@ -39,5 +39,5 @@ index c4b0524582d8..2fea9fcd4d4e 100644 entry->flags = trace_ctx >> 16; } -- -2.43.0 +2.44.0 |