aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPavel Machek <[email protected]>2020-07-24 09:05:31 +0000
committerChristian Brauner <[email protected]>2020-07-26 21:57:52 +0000
commit7665a47f70b3f64bf09c233cc7df73fde9e506f1 (patch)
treeb7618cb2f555d9b077ffdf9f3af0ca6d28f5e6e9
parentLinux 5.8-rc7 (diff)
downloadkernel-7665a47f70b3f64bf09c233cc7df73fde9e506f1.tar.gz
kernel-7665a47f70b3f64bf09c233cc7df73fde9e506f1.zip
signal: fix typo in dequeue_synchronous_signal()
s/postive/positive/ Signed-off-by: Pavel Machek (CIP) <[email protected]> Link: https://lore.kernel.org/r/20200724090531.GA14409@amd [[email protected]: tweak commit message] Signed-off-by: Christian Brauner <[email protected]>
-rw-r--r--kernel/signal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/signal.c b/kernel/signal.c
index ee22ec78fd6d..6f16f7c5d375 100644
--- a/kernel/signal.c
+++ b/kernel/signal.c
@@ -719,7 +719,7 @@ static int dequeue_synchronous_signal(kernel_siginfo_t *info)
* Return the first synchronous signal in the queue.
*/
list_for_each_entry(q, &pending->list, list) {
- /* Synchronous signals have a postive si_code */
+ /* Synchronous signals have a positive si_code */
if ((q->info.si_code > SI_USER) &&
(sigmask(q->info.si_signo) & SYNCHRONOUS_MASK)) {
sync = q;