diff options
author | SeongJae Park | 2017-11-18 11:52:24 +0900 |
---|---|---|
committer | Jonathan Corbet | 2017-11-20 10:44:22 -0700 |
commit | 80416fb43e14e443dd18bc395167f73dba271748 (patch) | |
tree | 6b4ac0de3a85664c9a4bb4313f7f70b85cd90770 /Documentation/translations | |
parent | 578152da87c7e9d350a5164beb16214e5bef1420 (diff) |
kokr/memory-barriers.txt: Fix typo in paring example
This commit applies an upstream change, commit d92f842bb30f
("memory-barriers.txt: Fix typo in pairing example") to the Korean
translation.
Signed-off-by: SeongJae Park <sj38.park@gmail.com>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'Documentation/translations')
-rw-r--r-- | Documentation/translations/ko_KR/memory-barriers.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/translations/ko_KR/memory-barriers.txt b/Documentation/translations/ko_KR/memory-barriers.txt index 7433ad60fabc..1f99331aeb39 100644 --- a/Documentation/translations/ko_KR/memory-barriers.txt +++ b/Documentation/translations/ko_KR/memory-barriers.txt @@ -953,7 +953,7 @@ ACQUIRE 배리어, RELEASE 배리어, 또는 범용 배리어와 짝을 맞추 =============== =============================== r1 = READ_ONCE(y); <범용 배리어> - WRITE_ONCE(y, 1); if (r2 = READ_ONCE(x)) { + WRITE_ONCE(x, 1); if (r2 = READ_ONCE(x)) { <묵시적 컨트롤 의존성> WRITE_ONCE(y, 1); } |