summaryrefslogtreecommitdiffstats
path: root/debian/patches-rt/0203-net-add-a-lock-around-icmp_sk.patch
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-08 04:17:45 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-08 04:17:45 +0000
commit656493a7e5f26f40c85e9a184945dcc1857cb3a9 (patch)
treec0f472bc5c6179c632dc6a8ec4b44d8f2cddc7dd /debian/patches-rt/0203-net-add-a-lock-around-icmp_sk.patch
parentMerging upstream version 4.19.289. (diff)
downloadlinux-656493a7e5f26f40c85e9a184945dcc1857cb3a9.tar.xz
linux-656493a7e5f26f40c85e9a184945dcc1857cb3a9.zip
Adding debian version 4.19.289-1.debian/4.19.289-1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/patches-rt/0203-net-add-a-lock-around-icmp_sk.patch')
-rw-r--r--debian/patches-rt/0203-net-add-a-lock-around-icmp_sk.patch4
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/patches-rt/0203-net-add-a-lock-around-icmp_sk.patch b/debian/patches-rt/0203-net-add-a-lock-around-icmp_sk.patch
index c03b1c189..d55749788 100644
--- a/debian/patches-rt/0203-net-add-a-lock-around-icmp_sk.patch
+++ b/debian/patches-rt/0203-net-add-a-lock-around-icmp_sk.patch
@@ -1,7 +1,7 @@
From: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Date: Wed, 31 Aug 2016 17:54:09 +0200
Subject: [PATCH 203/353] net: add a lock around icmp_sk()
-Origin: https://git.kernel.org/cgit/linux/kernel/git/rt/linux-stable-rt.git/commit?id=ed4da37a0640885893991fdf679ea57a89643875
+Origin: https://git.kernel.org/cgit/linux/kernel/git/rt/linux-stable-rt.git/commit?id=c532906af442e35a3dd02bf538c432102b50cc63
It looks like the this_cpu_ptr() access in icmp_sk() is protected with
local_bh_disable(). To avoid missing serialization in -RT I am adding
@@ -14,7 +14,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
1 file changed, 8 insertions(+)
diff --git a/net/ipv4/icmp.c b/net/ipv4/icmp.c
-index aa179e6461e1..47ebb0e0445c 100644
+index af0ddaa55e43..cadaf93f5614 100644
--- a/net/ipv4/icmp.c
+++ b/net/ipv4/icmp.c
@@ -77,6 +77,7 @@