[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <169754225791.3135.5867616537224142334.tip-bot2@tip-bot2>
Date: Tue, 17 Oct 2023 11:30:57 -0000
From: "tip-bot2 for Cuda-Chen" <tip-bot2@...utronix.de>
To: linux-tip-commits@...r.kernel.org
Cc: "Cuda-Chen" <clh960524@...il.com>, Ingo Molnar <mingo@...nel.org>,
x86@...nel.org, linux-kernel@...r.kernel.org
Subject: [tip: locking/core] locking/seqlock: Fix grammar in comment
The following commit has been merged into the locking/core branch of tip:
Commit-ID: 184fdf9fc7ae6ae7155768faa48fc609d1a24b7e
Gitweb: https://git.kernel.org/tip/184fdf9fc7ae6ae7155768faa48fc609d1a24b7e
Author: Cuda-Chen <clh960524@...il.com>
AuthorDate: Tue, 17 Oct 2023 13:37:03 +08:00
Committer: Ingo Molnar <mingo@...nel.org>
CommitterDate: Tue, 17 Oct 2023 13:28:12 +02:00
locking/seqlock: Fix grammar in comment
The "neither writes before and after ..." for the description
of do_write_seqcount_end() should be "neither writes before nor after".
Signed-off-by: Cuda-Chen <clh960524@...il.com>
Signed-off-by: Ingo Molnar <mingo@...nel.org>
Link: https://lore.kernel.org/r/20231017053703.11312-1-clh960524@gmail.com
---
include/linux/seqlock.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/linux/seqlock.h b/include/linux/seqlock.h
index 80f21d2..e92f9d5 100644
--- a/include/linux/seqlock.h
+++ b/include/linux/seqlock.h
@@ -584,7 +584,7 @@ static inline void do_write_seqcount_end(seqcount_t *s)
* via WRITE_ONCE): a) to ensure the writes become visible to other threads
* atomically, avoiding compiler optimizations; b) to document which writes are
* meant to propagate to the reader critical section. This is necessary because
- * neither writes before and after the barrier are enclosed in a seq-writer
+ * neither writes before nor after the barrier are enclosed in a seq-writer
* critical section that would ensure readers are aware of ongoing writes::
*
* seqcount_t seq;
Powered by blists - more mailing lists