Skip to content

Commit d18c265

Browse files
sj-awspaulmckrcu
authored andcommitted
doc/RCU/Design: Remove remaining HTML tags in ReST files
Commit ccc9971 ("docs: rcu: convert some articles from html to ReST") has converted a few of html RCU docs into ReST files, but a few of html tags which not supported on rst is remaining. This commit converts those to ReST appropriate alternatives. Reviewed-by: Madhuparna Bhowmik <[email protected]> Signed-off-by: SeongJae Park <[email protected]> Signed-off-by: Paul E. McKenney <[email protected]>
1 parent dc8cb9d commit d18c265

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Documentation/RCU/Design/Memory-Ordering/Tree-RCU-Memory-Ordering.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ A Tour Through TREE_RCU's Grace-Period Memory Ordering
44

55
August 8, 2017
66

7-
This article was contributed by Paul E.&nbsp;McKenney
7+
This article was contributed by Paul E. McKenney
88

99
Introduction
1010
============
@@ -48,7 +48,7 @@ Tree RCU Grace Period Memory Ordering Building Blocks
4848

4949
The workhorse for RCU's grace-period memory ordering is the
5050
critical section for the ``rcu_node`` structure's
51-
``-&gt;lock``. These critical sections use helper functions for lock
51+
``->lock``. These critical sections use helper functions for lock
5252
acquisition, including ``raw_spin_lock_rcu_node()``,
5353
``raw_spin_lock_irq_rcu_node()``, and ``raw_spin_lock_irqsave_rcu_node()``.
5454
Their lock-release counterparts are ``raw_spin_unlock_rcu_node()``,
@@ -102,9 +102,9 @@ lock-acquisition and lock-release functions::
102102
23 r3 = READ_ONCE(x);
103103
24 }
104104
25
105-
26 WARN_ON(r1 == 0 &amp;&amp; r2 == 0 &amp;&amp; r3 == 0);
105+
26 WARN_ON(r1 == 0 && r2 == 0 && r3 == 0);
106106

107-
The ``WARN_ON()`` is evaluated at &ldquo;the end of time&rdquo;,
107+
The ``WARN_ON()`` is evaluated at "the end of time",
108108
after all changes have propagated throughout the system.
109109
Without the ``smp_mb__after_unlock_lock()`` provided by the
110110
acquisition functions, this ``WARN_ON()`` could trigger, for example

0 commit comments

Comments
 (0)