diff options
author | Linus Torvalds | 2020-08-01 16:40:59 -0700 |
---|---|---|
committer | Linus Torvalds | 2020-08-01 16:40:59 -0700 |
commit | 0ae3495b6502cf93634cbd027cb2f6f9f83a406f (patch) | |
tree | d51bab1ae0b2d78f427c8e7c64e9ca1c1a6a1d4d /kernel | |
parent | bf121a0bda29daa67a1fcedbdf479f6b03c9f977 (diff) | |
parent | 7665a47f70b3f64bf09c233cc7df73fde9e506f1 (diff) |
Merge tag 'for-linus-2020-08-01' of git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux
Pull thread fix from Christian Brauner:
"A simple spelling fix for dequeue_synchronous_signal()"
* tag 'for-linus-2020-08-01' of git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux:
signal: fix typo in dequeue_synchronous_signal()
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/signal.c | 2 |
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; |