diff options
Diffstat (limited to '')
-rw-r--r-- | debian/patches-rt/0146-softirq-Add-RT-specific-softirq-accounting.patch | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/debian/patches-rt/0146-softirq-Add-RT-specific-softirq-accounting.patch b/debian/patches-rt/0146-softirq-Add-RT-specific-softirq-accounting.patch index c4bcb9bd1..a137d012d 100644 --- a/debian/patches-rt/0146-softirq-Add-RT-specific-softirq-accounting.patch +++ b/debian/patches-rt/0146-softirq-Add-RT-specific-softirq-accounting.patch @@ -1,8 +1,8 @@ -From a69df864da6d43ae3de6a4d995eaebca51a582b4 Mon Sep 17 00:00:00 2001 +From 9ff911822019a34054ff84adac3fb29493132ef6 Mon Sep 17 00:00:00 2001 From: Thomas Gleixner <tglx@linutronix.de> Date: Tue, 9 Mar 2021 09:55:53 +0100 Subject: [PATCH 146/323] softirq: Add RT specific softirq accounting -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 RT requires the softirq processing and local bottomhalf disabled regions to be preemptible. Using the normal preempt count based serialization is @@ -28,7 +28,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/include/linux/hardirq.h b/include/linux/hardirq.h -index 0926e9ca4d85..76878b357ffa 100644 +index 0926e9ca4d85f..76878b357ffa9 100644 --- a/include/linux/hardirq.h +++ b/include/linux/hardirq.h @@ -6,6 +6,7 @@ @@ -40,7 +40,7 @@ index 0926e9ca4d85..76878b357ffa 100644 #include <asm/hardirq.h> diff --git a/include/linux/preempt.h b/include/linux/preempt.h -index 69cc8b64aa3a..9881eac0698f 100644 +index 69cc8b64aa3a0..9881eac0698fd 100644 --- a/include/linux/preempt.h +++ b/include/linux/preempt.h @@ -79,7 +79,11 @@ @@ -57,7 +57,7 @@ index 69cc8b64aa3a..9881eac0698f 100644 /* diff --git a/include/linux/sched.h b/include/linux/sched.h -index 82de1ab42497..d31da4867bb2 100644 +index 82de1ab424976..d31da4867bb28 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h @@ -1046,6 +1046,9 @@ struct task_struct { @@ -71,5 +71,5 @@ index 82de1ab42497..d31da4867bb2 100644 #ifdef CONFIG_LOCKDEP # define MAX_LOCK_DEPTH 48UL -- -2.43.0 +2.44.0 |