Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1354722

[PATCH 3/5] doc/memory-barriers: fix typo

From SeongJae Park <sj38.park@gmail.com>
Newsgroups linux.kernel
Subject [PATCH 3/5] doc/memory-barriers: fix typo
Date 2016-03-10 01:50 +0100
Message-ID <raWXE-7BC-9@gated-at.bofh.it> (permalink)
References <raWXE-7BC-5@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


Signed-off-by: SeongJae Park <sj38.park@gmail.com>
---
 Documentation/memory-barriers.txt | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Documentation/memory-barriers.txt b/Documentation/memory-barriers.txt
index 0560a49..89f96af 100644
--- a/Documentation/memory-barriers.txt
+++ b/Documentation/memory-barriers.txt
@@ -149,7 +149,7 @@ As a further example, consider this sequence of events:
 
 	CPU 1		CPU 2
 	===============	===============
-	{ A == 1, B == 2, C = 3, P == &A, Q == &C }
+	{ A == 1, B == 2, C == 3, P == &A, Q == &C }
 	B = 4;		Q = P;
 	P = &B		D = *Q;
 
@@ -518,7 +518,7 @@ following sequence of events:
 
 	CPU 1		      CPU 2
 	===============	      ===============
-	{ A == 1, B == 2, C = 3, P == &A, Q == &C }
+	{ A == 1, B == 2, C == 3, P == &A, Q == &C }
 	B = 4;
 	<write barrier>
 	WRITE_ONCE(P, &B)
@@ -545,7 +545,7 @@ between the address load and the data load:
 
 	CPU 1		      CPU 2
 	===============	      ===============
-	{ A == 1, B == 2, C = 3, P == &A, Q == &C }
+	{ A == 1, B == 2, C == 3, P == &A, Q == &C }
 	B = 4;
 	<write barrier>
 	WRITE_ONCE(P, &B);
@@ -3042,7 +3042,7 @@ The Alpha defines the Linux kernel's memory barrier model.
 See the subsection on "Cache Coherency" above.
 
 VIRTUAL MACHINE GUESTS
--------------------
+----------------------
 
 Guests running within virtual machines might be affected by SMP effects even if
 the guest itself is compiled without SMP support.  This is an artifact of
-- 
1.9.1

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH 0/5] Add Korean translation of memory-barriers.txt SeongJae Park <sj38.park@gmail.com> - 2016-03-10 01:50 +0100
  [PATCH 3/5] doc/memory-barriers: fix typo SeongJae Park <sj38.park@gmail.com> - 2016-03-10 01:50 +0100
    Re: [PATCH 3/5] doc/memory-barriers: fix typo David Howells <dhowells@redhat.com> - 2016-03-10 09:20 +0100
  [PATCH 2/5] doc/memory-barriers: add missed subsection in TOC SeongJae Park <sj38.park@gmail.com> - 2016-03-10 01:50 +0100
    Re: [PATCH 2/5] doc/memory-barriers: add missed subsection in TOC David Howells <dhowells@redhat.com> - 2016-03-10 09:20 +0100
  Re: [PATCH 0/5] Add Korean translation of memory-barriers.txt "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> - 2016-03-10 03:10 +0100
  Re: [PATCH 5/5] Doc/memory-barriers: add Korean translation David Howells <dhowells@redhat.com> - 2016-03-10 09:20 +0100
  Re: [PATCH 0/5] Add Korean translation of memory-barriers.txt Gioh Kim <gi-oh.kim@profitbricks.com> - 2016-03-11 10:00 +0100

csiph-web