From: SeongJae Park Date: Sat, 18 Nov 2017 02:52:24 +0000 (+0900) Subject: kokr/memory-barriers.txt: Fix typo in paring example X-Git-Tag: v4.15-rc1~20^2~3 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=80416fb43e14e443dd18bc395167f73dba271748;p=users%2Fjedix%2Flinux-maple.git 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 Signed-off-by: Jonathan Corbet --- 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); }