summaryrefslogtreecommitdiffstats
path: root/debian/patches-rt/0188-net-Use-cpu_chill-instead-of-cpu_relax.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/0188-net-Use-cpu_chill-instead-of-cpu_relax.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/0188-net-Use-cpu_chill-instead-of-cpu_relax.patch')
-rw-r--r--debian/patches-rt/0188-net-Use-cpu_chill-instead-of-cpu_relax.patch4
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/patches-rt/0188-net-Use-cpu_chill-instead-of-cpu_relax.patch b/debian/patches-rt/0188-net-Use-cpu_chill-instead-of-cpu_relax.patch
index 77cf7defe..0afbc3e71 100644
--- a/debian/patches-rt/0188-net-Use-cpu_chill-instead-of-cpu_relax.patch
+++ b/debian/patches-rt/0188-net-Use-cpu_chill-instead-of-cpu_relax.patch
@@ -1,7 +1,7 @@
From: Thomas Gleixner <tglx@linutronix.de>
Date: Wed, 7 Mar 2012 21:10:04 +0100
Subject: [PATCH 188/353] net: Use cpu_chill() instead of cpu_relax()
-Origin: https://git.kernel.org/cgit/linux/kernel/git/rt/linux-stable-rt.git/commit?id=563d83d344896c0a0f2d86eb7a7a0c2865f7e670
+Origin: https://git.kernel.org/cgit/linux/kernel/git/rt/linux-stable-rt.git/commit?id=e96b68e550cd4012674a63859f68d242b7dbf31c
Retry loops on RT might loop forever when the modifying side was
preempted. Use cpu_chill() instead of cpu_relax() to let the system
@@ -14,7 +14,7 @@ Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
2 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/net/packet/af_packet.c b/net/packet/af_packet.c
-index 6fa0a9a453a8..6831b53ab441 100644
+index aa12bee4133a..dd652eae83e3 100644
--- a/net/packet/af_packet.c
+++ b/net/packet/af_packet.c
@@ -63,6 +63,7 @@