From 2be4f47eb8062c13d08a6c4d9697783dddef1117 Mon Sep 17 00:00:00 2001 From: Sajidur Rahman Date: Sat, 16 Nov 2024 12:04:02 +0600 Subject: [PATCH] sys.c spelling and grammar fix - "CHILDEREN" should be "CHILDREN" - "donot" should be "do not" --- kernel/sys.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel/sys.c b/kernel/sys.c index 4da31f28fda8..5b26c59ef319 100644 --- a/kernel/sys.c +++ b/kernel/sys.c @@ -1763,11 +1763,11 @@ SYSCALL_DEFINE2(setrlimit, unsigned int, resource, struct rlimit __user *, rlim) * given child after it's reaped, or none so this sample is before reaping. * * Locking: - * We need to take the siglock for CHILDEREN, SELF and BOTH + * We need to take the siglock for CHILDREN, SELF and BOTH * for the cases current multithreaded, non-current single threaded * non-current multithreaded. Thread traversal is now safe with * the siglock held. - * Strictly speaking, we donot need to take the siglock if we are current and + * Strictly speaking, we do not need to take the siglock if we are current and * single threaded, as no one else can take our signal_struct away, no one * else can reap the children to update signal->c* counters, and no one else * can race with the signal-> fields. If we do not take any lock, the