* [PATCH] memorder: Fix two trivial typos
@ 2019-04-02 0:14 SeongJae Park
2019-04-02 13:32 ` Paul E. McKenney
0 siblings, 1 reply; 3+ messages in thread
From: SeongJae Park @ 2019-04-02 0:14 UTC (permalink / raw)
To: paulmck; +Cc: perfbook, SeongJae Park
Signed-off-by: SeongJae Park <sj38.park@gmail.com>
---
memorder/memorder.tex | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/memorder/memorder.tex b/memorder/memorder.tex
index 1649ce9..bb380ad 100644
--- a/memorder/memorder.tex
+++ b/memorder/memorder.tex
@@ -3125,7 +3125,7 @@ Sections~\ref{sec:toolsoftrade:A Volatile Solution}-\ref{sec:toolsoftrade:Avoidi
cause the compiler to discard a previously loaded value from
its register, and then reload it later on.
Invented loads can be prevented by using \co{READ_ONCE()} or by
- enforcing ordering as callout out above between the load and a
+ enforcing ordering as called out above between the load and a
later use of its value using \co{barrier()}.
\item Stores can be invented before a plain store, for example, by
using the stored-to location as temporary storage.
@@ -3160,7 +3160,7 @@ optimizing your parallel algorithm out of existence.
Compilers are starting to provide other mechanisms for avoiding
load and store tearing, for example, \co{memory_order_relaxed}
atomic loads and stores, however, work is still
-needed~/\cite{JonathanCorbet2016C11atomics}
+needed~\cite{JonathanCorbet2016C11atomics}.
In addition, compiler issues aside, \co{volatile} is still needed
to avoid fusing and invention of accesses, including C11 atomic accesses.
--
2.10.0
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] memorder: Fix two trivial typos
2019-04-02 0:14 [PATCH] memorder: Fix two trivial typos SeongJae Park
@ 2019-04-02 13:32 ` Paul E. McKenney
0 siblings, 0 replies; 3+ messages in thread
From: Paul E. McKenney @ 2019-04-02 13:32 UTC (permalink / raw)
To: SeongJae Park; +Cc: perfbook
On Tue, Apr 02, 2019 at 09:14:57AM +0900, SeongJae Park wrote:
> Signed-off-by: SeongJae Park <sj38.park@gmail.com>
Good catch, queued and pushed, thank you!
Thanx, Paul
> ---
> memorder/memorder.tex | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/memorder/memorder.tex b/memorder/memorder.tex
> index 1649ce9..bb380ad 100644
> --- a/memorder/memorder.tex
> +++ b/memorder/memorder.tex
> @@ -3125,7 +3125,7 @@ Sections~\ref{sec:toolsoftrade:A Volatile Solution}-\ref{sec:toolsoftrade:Avoidi
> cause the compiler to discard a previously loaded value from
> its register, and then reload it later on.
> Invented loads can be prevented by using \co{READ_ONCE()} or by
> - enforcing ordering as callout out above between the load and a
> + enforcing ordering as called out above between the load and a
> later use of its value using \co{barrier()}.
> \item Stores can be invented before a plain store, for example, by
> using the stored-to location as temporary storage.
> @@ -3160,7 +3160,7 @@ optimizing your parallel algorithm out of existence.
> Compilers are starting to provide other mechanisms for avoiding
> load and store tearing, for example, \co{memory_order_relaxed}
> atomic loads and stores, however, work is still
> -needed~/\cite{JonathanCorbet2016C11atomics}
> +needed~\cite{JonathanCorbet2016C11atomics}.
> In addition, compiler issues aside, \co{volatile} is still needed
> to avoid fusing and invention of accesses, including C11 atomic accesses.
>
> --
> 2.10.0
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH] memorder: Fix two trivial typos
@ 2019-04-26 0:56 SeongJae Park
0 siblings, 0 replies; 3+ messages in thread
From: SeongJae Park @ 2019-04-26 0:56 UTC (permalink / raw)
To: paulmck; +Cc: perfbook, SeongJae Park
Signed-off-by: SeongJae Park <sj38.park@gmail.com>
---
memorder/memorder.tex | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/memorder/memorder.tex b/memorder/memorder.tex
index 1649ce9..bb380ad 100644
--- a/memorder/memorder.tex
+++ b/memorder/memorder.tex
@@ -3125,7 +3125,7 @@ Sections~\ref{sec:toolsoftrade:A Volatile Solution}-\ref{sec:toolsoftrade:Avoidi
cause the compiler to discard a previously loaded value from
its register, and then reload it later on.
Invented loads can be prevented by using \co{READ_ONCE()} or by
- enforcing ordering as callout out above between the load and a
+ enforcing ordering as called out above between the load and a
later use of its value using \co{barrier()}.
\item Stores can be invented before a plain store, for example, by
using the stored-to location as temporary storage.
@@ -3160,7 +3160,7 @@ optimizing your parallel algorithm out of existence.
Compilers are starting to provide other mechanisms for avoiding
load and store tearing, for example, \co{memory_order_relaxed}
atomic loads and stores, however, work is still
-needed~/\cite{JonathanCorbet2016C11atomics}
+needed~\cite{JonathanCorbet2016C11atomics}.
In addition, compiler issues aside, \co{volatile} is still needed
to avoid fusing and invention of accesses, including C11 atomic accesses.
--
2.10.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-04-26 0:56 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-02 0:14 [PATCH] memorder: Fix two trivial typos SeongJae Park
2019-04-02 13:32 ` Paul E. McKenney
-- strict thread matches above, loose matches on Subject: below --
2019-04-26 0:56 SeongJae Park
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.