Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1354718 > unrolled thread
| Started by | SeongJae Park <sj38.park@gmail.com> |
|---|---|
| First post | 2016-03-10 01:50 +0100 |
| Last post | 2016-03-11 10:00 +0100 |
| Articles | 8 — 4 participants |
Back to article view | Back to linux.kernel
[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
| From | SeongJae Park <sj38.park@gmail.com> |
|---|---|
| Date | 2016-03-10 01:50 +0100 |
| Subject | [PATCH 0/5] Add Korean translation of memory-barriers.txt |
| Message-ID | <raWXE-7BC-5@gated-at.bofh.it> |
This patchset aims to add Korean translation of memory-barriers document.
The patchset starts from fixing minor and trivial problems in the original
document that found during translation. After that, the final patch adds the
Korean translation of the document.
The patches are based on recent next tree:
0f6dd067b9c3c712b1177fa2fc0deb21805c771c ("Add linux-next specific files for
20160309")
SeongJae Park (5):
doc/memory-barriers: fix missed renaming: s/lock/acquire
doc/memory-barriers: add missed subsection in TOC
doc/memory-barriers: fix typo
doc/memory-barriers: Insert white spaces consistently
Doc/memory-barriers: add Korean translation
Documentation/ko_KR/memory-barriers.txt | 3048 +++++++++++++++++++++++++++++++
Documentation/memory-barriers.txt | 62 +-
2 files changed, 3081 insertions(+), 29 deletions(-)
create mode 100644 Documentation/ko_KR/memory-barriers.txt
--
1.9.1
[toc] | [next] | [standalone]
| From | SeongJae Park <sj38.park@gmail.com> |
|---|---|
| Date | 2016-03-10 01:50 +0100 |
| Subject | [PATCH 3/5] doc/memory-barriers: fix typo |
| Message-ID | <raWXE-7BC-9@gated-at.bofh.it> |
| In reply to | #1354718 |
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
[toc] | [prev] | [next] | [standalone]
| From | David Howells <dhowells@redhat.com> |
|---|---|
| Date | 2016-03-10 09:20 +0100 |
| Subject | Re: [PATCH 3/5] doc/memory-barriers: fix typo |
| Message-ID | <rb3Z7-47H-1@gated-at.bofh.it> |
| In reply to | #1354722 |
SeongJae Park <sj38.park@gmail.com> wrote: > Signed-off-by: SeongJae Park <sj38.park@gmail.com> Acked-by: David Howells <dhowells@redhat.com>
[toc] | [prev] | [next] | [standalone]
| From | SeongJae Park <sj38.park@gmail.com> |
|---|---|
| Date | 2016-03-10 01:50 +0100 |
| Subject | [PATCH 2/5] doc/memory-barriers: add missed subsection in TOC |
| Message-ID | <raWXF-7BC-19@gated-at.bofh.it> |
| In reply to | #1354718 |
Virtual Machine Guests subsection has added with commit
6a65d26385bf487926a0616650927303058551e3 ("asm-generic: implement
virt_xxx memory barriers") in memory-barriers.txt but it forgot to add
the subsection in 'table of contents'. This commit adds the subsection
in the 'table of contents'.
Signed-off-by: SeongJae Park <sj38.park@gmail.com>
---
Documentation/memory-barriers.txt | 1 +
1 file changed, 1 insertion(+)
diff --git a/Documentation/memory-barriers.txt b/Documentation/memory-barriers.txt
index 6b453f9..0560a49 100644
--- a/Documentation/memory-barriers.txt
+++ b/Documentation/memory-barriers.txt
@@ -61,6 +61,7 @@ Contents:
(*) The things CPUs get up to.
- And then there's the Alpha.
+ - Virtual Machine Guests.
(*) Example uses.
--
1.9.1
[toc] | [prev] | [next] | [standalone]
| From | David Howells <dhowells@redhat.com> |
|---|---|
| Date | 2016-03-10 09:20 +0100 |
| Subject | Re: [PATCH 2/5] doc/memory-barriers: add missed subsection in TOC |
| Message-ID | <rb3Z8-47H-13@gated-at.bofh.it> |
| In reply to | #1354725 |
SeongJae Park <sj38.park@gmail.com> wrote:
> Virtual Machine Guests subsection has added with commit
> 6a65d26385bf487926a0616650927303058551e3 ("asm-generic: implement
> virt_xxx memory barriers") in memory-barriers.txt but it forgot to add
> the subsection in 'table of contents'. This commit adds the subsection
> in the 'table of contents'.
>
> Signed-off-by: SeongJae Park <sj38.park@gmail.com>
Acked-by: David Howells <dhowells@redhat.com>
[toc] | [prev] | [next] | [standalone]
| From | "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
|---|---|
| Date | 2016-03-10 03:10 +0100 |
| Message-ID | <raYd3-79-5@gated-at.bofh.it> |
| In reply to | #1354718 |
On Thu, Mar 10, 2016 at 09:48:54AM +0900, SeongJae Park wrote:
> This patchset aims to add Korean translation of memory-barriers document.
>
> The patchset starts from fixing minor and trivial problems in the original
> document that found during translation. After that, the final patch adds the
> Korean translation of the document.
>
> The patches are based on recent next tree:
> 0f6dd067b9c3c712b1177fa2fc0deb21805c771c ("Add linux-next specific files for
> 20160309")
I have queued this series for review, thank you!
Of course, I cannot do anything to the Korean translation other than to
pass it through unchanged. ;-)
Thanx, Paul
> SeongJae Park (5):
> doc/memory-barriers: fix missed renaming: s/lock/acquire
> doc/memory-barriers: add missed subsection in TOC
> doc/memory-barriers: fix typo
> doc/memory-barriers: Insert white spaces consistently
> Doc/memory-barriers: add Korean translation
>
> Documentation/ko_KR/memory-barriers.txt | 3048 +++++++++++++++++++++++++++++++
> Documentation/memory-barriers.txt | 62 +-
> 2 files changed, 3081 insertions(+), 29 deletions(-)
> create mode 100644 Documentation/ko_KR/memory-barriers.txt
>
> --
> 1.9.1
>
[toc] | [prev] | [next] | [standalone]
| From | David Howells <dhowells@redhat.com> |
|---|---|
| Date | 2016-03-10 09:20 +0100 |
| Subject | Re: [PATCH 5/5] Doc/memory-barriers: add Korean translation |
| Message-ID | <rb3Z8-47H-19@gated-at.bofh.it> |
| In reply to | #1354718 |
SeongJae Park <sj38.park@gmail.com> wrote: > This commit adds Korean version of memory-barriers.txt document. The > header is refered to HOWTO Korean version. > > Signed-off-by: SeongJae Park <sj38.park@gmail.com> Nice. I just wish I could read it:-) For what it's worth: Acked-by: David Howells <dhowells@redhat.com>
[toc] | [prev] | [next] | [standalone]
| From | Gioh Kim <gi-oh.kim@profitbricks.com> |
|---|---|
| Date | 2016-03-11 10:00 +0100 |
| Message-ID | <rbr5q-3zy-31@gated-at.bofh.it> |
| In reply to | #1354718 |
On 10.03.2016 01:48, SeongJae Park wrote:
> This patchset aims to add Korean translation of memory-barriers document.
>
> The patchset starts from fixing minor and trivial problems in the original
> document that found during translation. After that, the final patch adds the
> Korean translation of the document.
>
> The patches are based on recent next tree:
> 0f6dd067b9c3c712b1177fa2fc0deb21805c771c ("Add linux-next specific files for
> 20160309")
>
> SeongJae Park (5):
> doc/memory-barriers: fix missed renaming: s/lock/acquire
> doc/memory-barriers: add missed subsection in TOC
> doc/memory-barriers: fix typo
> doc/memory-barriers: Insert white spaces consistently
> Doc/memory-barriers: add Korean translation
>
> Documentation/ko_KR/memory-barriers.txt | 3048 +++++++++++++++++++++++++++++++
> Documentation/memory-barriers.txt | 62 +-
> 2 files changed, 3081 insertions(+), 29 deletions(-)
> create mode 100644 Documentation/ko_KR/memory-barriers.txt
>
Hello SeongJae,
This document is a little bit difficult to me.
Your translation should be very helpful.
Let me read it in detail for weekend and give you feedback.
I thank you for your contribution.
--
Best regards,
Gioh Kim
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web