diff options
Diffstat (limited to '')
-rw-r--r-- | debian/patches-rt/0258-signals-Allow-rt-tasks-to-cache-one-sigqueue-struct.patch (renamed from debian/patches-rt/0259-signals-Allow-rt-tasks-to-cache-one-sigqueue-struct.patch) | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/debian/patches-rt/0259-signals-Allow-rt-tasks-to-cache-one-sigqueue-struct.patch b/debian/patches-rt/0258-signals-Allow-rt-tasks-to-cache-one-sigqueue-struct.patch index 271df4103..b4b502df1 100644 --- a/debian/patches-rt/0259-signals-Allow-rt-tasks-to-cache-one-sigqueue-struct.patch +++ b/debian/patches-rt/0258-signals-Allow-rt-tasks-to-cache-one-sigqueue-struct.patch @@ -1,8 +1,7 @@ -From 257506013947ed8b9b81885786294572a53a0a59 Mon Sep 17 00:00:00 2001 From: Thomas Gleixner <tglx@linutronix.de> Date: Fri, 3 Jul 2009 08:44:56 -0500 -Subject: [PATCH 259/347] signals: Allow rt tasks to cache one sigqueue struct -Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/4.19/older/patches-4.19.246-rt110.tar.xz +Subject: [PATCH 258/342] signals: Allow rt tasks to cache one sigqueue struct +Origin: https://git.kernel.org/cgit/linux/kernel/git/rt/linux-stable-rt.git/commit?id=5aac397e1ae3068a8bef5c75bbfbdb268c95b2c5 To avoid allocation allow rt tasks to cache one sigqueue struct in task struct. @@ -67,7 +66,7 @@ index 51ec12803c0b..fdc61ac6a748 100644 p->utime = p->stime = p->gtime = 0; #ifdef CONFIG_ARCH_HAS_SCALED_CPUTIME diff --git a/kernel/signal.c b/kernel/signal.c -index 58bd3b3dd499..74f807bba0b8 100644 +index 708ee1bd4059..730ac7ff4637 100644 --- a/kernel/signal.c +++ b/kernel/signal.c @@ -19,6 +19,7 @@ @@ -208,6 +207,3 @@ index 58bd3b3dd499..74f807bba0b8 100644 if (q) q->flags |= SIGQUEUE_PREALLOC; --- -2.36.1 - |