summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAkira Yokosawa <akiyks@gmail.com>2024-05-09 00:18:45 +0900
committerPaul E. McKenney <paulmck@kernel.org>2024-05-08 10:37:43 -0700
commit43ebeda6629d8203e510b518dacf2863b32b5a85 (patch)
treef70110c32dd294582e64da6223689c0fee2baaac
parentbac872fa9cafd941ad3f439d42088f1c1b03b3cb (diff)
downloadperfbook-master.tar.gz
defer: Use \tco{} in inline enum listHEADmaster
Using \co{} in list environments such as enumerate* can confuse LeTeX engines in width estimation due to possible line breaks therein. It causes an overlap of "," over the closing ")" of "read_seqretry()" in the answer to QQz 9.14. Use \tco{} to avoid such undesired results. Signed-off-by: Akira Yokosawa <akiyks@gmail.com> Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
-rw-r--r--defer/seqlock.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/defer/seqlock.tex b/defer/seqlock.tex
index 5be8ae56..3ed2f483 100644
--- a/defer/seqlock.tex
+++ b/defer/seqlock.tex
@@ -141,7 +141,7 @@ will pass to a later call to \co{read_seqretry()}.
\begin{enumerate*}[(1)]
\item This added check is a relatively expensive conditional branch,
\item It cannot be substituted for the later check done by
- \co{read_seqretry()}, which must happen after the
+ \tco{read_seqretry()}, which must happen after the
critical section completes, and
\item Sequence locking is intended for read-mostly workloads,
which means that this extra check would slow down the