[PATCH] Documentation: Fix dead URLs to ftp.kernel.org

2017-03-26 Thread SeongJae Park
As ftp.kernel.org is closed [0], this commit fixes dead URLs in documents to use www.kernel.org instead. [0] https://www.kernel.org/shutting-down-ftp-services.html Signed-off-by: SeongJae Park --- Documentation/early-userspace/README | 2 +- Documentation/filesystems/ext4.txt

Re: [PATCH] selftests/vm: Set mmap()'s fd as -1 for MAP_ANONYMOUS flag

2017-03-22 Thread SeongJae Park
Hello Shuah, May I ask some comments? Thanks, SeongJae Park On Wed, Mar 15, 2017 at 10:19 PM, SeongJae Park wrote: > Man page of mmap() says that portable applications should ensure fd > argument to be -1 if MAP_ANONYMOUS flag is set as below: > ``` > The mapping is not backed

[PATCH] selftests/vm: Set mmap()'s fd as -1 for MAP_ANONYMOUS flag

2017-03-15 Thread SeongJae Park
-1 if MAP_ANONYMOUS (or MAP_ANON) is specified, and portable applications should ensure this. ``` However, few mmap() calls under selftests/vm/ uses 0 as fd though they use MAP_ANONYMOUS flag. This commit changes the argument to be -1 as recommended. Signed-off-by: SeongJae Park --- tools

[PATCH] doc/ko_KR/memory-barriers: Update control-dependencies section

2017-03-02 Thread SeongJae Park
This commit applies upstream change, commit c8241f8553e8 ("doc: Update control-dependencies section of memory-barriers.txt"), to Korean translation. Signed-off-by: SeongJae Park --- .../translations/ko_KR/memory-barriers.txt | 68 -- 1 file changed, 37

[PATCH 2/3] Documentation: Move translations into a sub-directory

2016-11-08 Thread SeongJae Park
Signed-off-by: SeongJae Park --- Documentation/{ => translations}/ja_JP/HOWTO | 0 Documentation/{ => translations}/ja_JP/SubmitChecklist | 0 Documentation/{ => translations}/ja_JP/SubmittingPatches | 0 Documentation/{ =>

[PATCH 3/3] Documentation: Add HOWTO Korean translation into rst based build system

2016-11-08 Thread SeongJae Park
This commit adds Korean translation of HOWTO document into rst based documentation build system. Signed-off-by: SeongJae Park --- Documentation/index.rst | 8 Documentation/translations/ko_KR/{HOWTO => howto.rst} | 0 Documentation/translations/ko

[PATCH 1/3] docs/driver-api: Apply changed source file names

2016-11-08 Thread SeongJae Park
Few files under dma-buf/ changed their names but the changes didn't applied to a document that referencing them. It is causing few documentation build warnings. This commit fixes the problems by applying changed file names on the document. Signed-off-by: SeongJae Park --- Documentation/d

[PATCH 0/3] Add howto.rst Korean translation into build system

2016-11-08 Thread SeongJae Park
/msg2373556.html SeongJae Park (3): docs/driver-api: Apply changed source file names Documentation: Move translations into a sub-directory Documentation: Add HOWTO Korean translation into rst based build system Documentation/driver-api/infrastructure.rst | 8

Re: [PATCH v2 00/12] Fix and update HOWTO Korean translation

2016-11-07 Thread SeongJae Park
On Tue, Nov 8, 2016 at 9:05 AM, Jonathan Corbet wrote: > On Tue, 1 Nov 2016 05:27:09 +0900 > SeongJae Park wrote: > >> This patchset applies ReST conversion effort for HOWTO document to its Korean >> translation. It also contains fixup of trivial nitpicks in the document a

Re: [PATCH v2 00/12] Fix and update HOWTO Korean translation

2016-11-06 Thread SeongJae Park
May I ask some comments, please? Thanks, SeongJae Park On Tue, Nov 1, 2016 at 5:27 AM, SeongJae Park wrote: > This patchset applies ReST conversion effort for HOWTO document to its Korean > translation. It also contains fixup of trivial nitpicks in the document and > the tr

[PATCH v2 02/12] ko_KR/HOWTO: Fix a typo: s/Linux Torvalds/Linus Torvalds

2016-10-31 Thread SeongJae Park
Signed-off-by: SeongJae Park --- Documentation/ko_KR/HOWTO | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/ko_KR/HOWTO b/Documentation/ko_KR/HOWTO index 025252731af5..4f5778dfeed2 100644 --- a/Documentation/ko_KR/HOWTO +++ b/Documentation/ko_KR/HOWTO @@ -231,7

[PATCH v2 00/12] Fix and update HOWTO Korean translation

2016-10-31 Thread SeongJae Park
ts to development-process") SeongJae Park (12): Documentation/process/howto: Mark subsection in suggested format ko_KR/HOWTO: Fix a typo: s/Linux Torvalds/Linus Torvalds ko_KR/HOWTO: Fix subtitles style ko_KR/HOWTO: Update obsolete link to bugzilla faq ko_KR/HOWTO: Convert to ReS

[PATCH v2 07/12] ko_KR/HOWTO: Update information about generating documentation

2016-10-31 Thread SeongJae Park
This commit applies commit 43fb67a5258c ("Documentation/HOWTO: update information about generating documentation") to Korean translation. Signed-off-by: SeongJae Park --- Documentation/ko_KR/HOWTO | 30 ++ 1 file changed, 22 insertions(+), 8 deletions(-)

[PATCH v2 06/12] ko_KR/HOWTO: Add cross-references to other documents

2016-10-31 Thread SeongJae Park
This commit applies commit 609d99a3b72e ("Documentation/HOWTO: add cross-references to other documents") to Korean translation. Signed-off-by: SeongJae Park --- Documentation/ko_KR/HOWTO | 19 +-- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/Documenta

[PATCH v2 05/12] ko_KR/HOWTO: Convert to ReST notation

2016-10-31 Thread SeongJae Park
This commit applies commit 022e04d6f555 ("Documentation/HOWTO: convert to ReST notation") to Korean translation and fix a trivial ReST build failure problem. Signed-off-by: SeongJae Park --- Documentation/ko_KR/HOWTO | 55 --- 1 file c

[PATCH v2 09/12] ko_KR/HOWTO: Adjust external link references

2016-10-31 Thread SeongJae Park
This commit appplies commit f1eebe92c265 ("Documentation/HOWTO: adjust external link references") to Korean translation. Signed-off-by: SeongJae Park --- Documentation/ko_KR/HOWTO | 39 ++- 1 file changed, 18 insertions(+), 21 deletions(-) di

[PATCH v2 11/12] ko_KR/HOWTO: Add whitespace between URL and text

2016-10-31 Thread SeongJae Park
Because few sentences has no whitespace between URL and text, few document viewers fail to properly parse the URL from it. This commit adds whitespace between them to fix the problem. Signed-off-by: SeongJae Park --- Documentation/ko_KR/HOWTO | 6 +++--- 1 file changed, 3 insertions(+), 3

[PATCH v2 12/12] ko_KR/HOWTO: Mark subsection in suggested format

2016-10-31 Thread SeongJae Park
`Specific guidelines for the kernel documentation` section of `kernel-documentation.rst` suggests to use ``~`` for subsection but subsections in HOWTO is not marked in the format. This commit marks them in the format. Signed-off-by: SeongJae Park --- Documentation/ko_KR/HOWTO | 12

[PATCH v2 10/12] ko_KR/HOWTO: Clean up bare :: lines

2016-10-31 Thread SeongJae Park
This commit applies commit 1b49ecf2f3be ("docs: Clean up bare :: lines") to Korean translation. Signed-off-by: SeongJae Park --- Documentation/ko_KR/HOWTO | 12 +++- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/Documentation/ko_KR/HOWTO b/Documentation/ko_KR/H

[PATCH v2 08/12] ko_KR/HOWTO: Improve some markups to make it visually better

2016-10-31 Thread SeongJae Park
This commit applies commit 34fed7e7e0e5 ("Documentation/HOWTO: improve some markups to make it visually better") to Korean translation. Signed-off-by: SeongJae Park --- Documentation/ko_KR/HOWTO | 16 ++-- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/Doc

[PATCH v2 01/12] Documentation/process/howto: Mark subsection in suggested format

2016-10-31 Thread SeongJae Park
`Specific guidelines for the kernel documentation` section of `kernel-documentation.rst` suggests to use ``~`` for subsection but subsections in HOWTO is not marked in the format. This commit marks them in the format. Signed-off-by: SeongJae Park --- Documentation/process/howto.rst | 15

[PATCH v2 03/12] ko_KR/HOWTO: Fix subtitles style

2016-10-31 Thread SeongJae Park
This commit fixes subtitles style. It aligns them with their header, adjust blank lines between them properly. Signed-off-by: SeongJae Park --- Documentation/ko_KR/HOWTO | 17 - 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/Documentation/ko_KR/HOWTO b

[PATCH v2 04/12] ko_KR/HOWTO: Update obsolete link to bugzilla faq

2016-10-31 Thread SeongJae Park
Signed-off-by: SeongJae Park --- Documentation/ko_KR/HOWTO | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/ko_KR/HOWTO b/Documentation/ko_KR/HOWTO index 1a5d7a8d66be..f3348ef68bbd 100644 --- a/Documentation/ko_KR/HOWTO +++ b/Documentation/ko_KR/HOWTO @@ -325,7

Re: [PATCH 00/12] Fix and update HOWTO Korean translation

2016-10-21 Thread SeongJae Park
On Sat, Oct 22, 2016 at 5:47 AM, Jonathan Corbet wrote: > On Sat, 22 Oct 2016 00:19:45 +0900 > SeongJae Park wrote: > >> This patchset applies ReST conversion effort for HOWTO document to its Korean >> translation. It also contains fixup of trivial nitpicks in th

Re: [PATCH 01/12] Documentation/HOWTO: Mark subsection in rst format

2016-10-21 Thread SeongJae Park
On Sat, Oct 22, 2016 at 2:25 AM, Mauro Carvalho Chehab wrote: > Em Sat, 22 Oct 2016 01:42:00 +0900 > SeongJae Park escreveu: > >> On Sat, Oct 22, 2016 at 12:45 AM, Mauro Carvalho Chehab >> wrote: >> > Em Sat, 22 Oct 2016 00:19:46 +0900 >> > SeongJae Pa

Re: [PATCH 01/12] Documentation/HOWTO: Mark subsection in rst format

2016-10-21 Thread SeongJae Park
On Sat, Oct 22, 2016 at 12:45 AM, Mauro Carvalho Chehab wrote: > Em Sat, 22 Oct 2016 00:19:46 +0900 > SeongJae Park escreveu: > >> Subsections in HOWTO is not marked in rst format. This commit specifies >> them in rst format. >> >> Signed-off-by: SeongJae Par

[PATCH 06/12] ko_KR/HOWTO: Add cross-references to other documents

2016-10-21 Thread SeongJae Park
This commit applies commit 609d99a3b72e ("Documentation/HOWTO: add cross-references to other documents") to Korean translation. Signed-off-by: SeongJae Park --- Documentation/ko_KR/HOWTO | 18 +- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Documenta

[PATCH 05/12] ko_KR/HOWTO: Convert to ReST notation

2016-10-21 Thread SeongJae Park
This commit applies commit 022e04d6f555 ("Documentation/HOWTO: convert to ReST notation") to Korean translation and fix a trivial ReST build failure problem. Signed-off-by: SeongJae Park --- Documentation/ko_KR/HOWTO | 58 +++ 1 file c

[PATCH 01/12] Documentation/HOWTO: Mark subsection in rst format

2016-10-21 Thread SeongJae Park
Subsections in HOWTO is not marked in rst format. This commit specifies them in rst format. Signed-off-by: SeongJae Park --- Documentation/HOWTO | 15 ++- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/Documentation/HOWTO b/Documentation/HOWTO index 5f042349f987

[PATCH 09/12] ko_KR/HOWTO: Adjust external link references

2016-10-21 Thread SeongJae Park
This commit appplies commit f1eebe92c265 ("Documentation/HOWTO: adjust external link references") to Korean translation. Signed-off-by: SeongJae Park --- Documentation/ko_KR/HOWTO | 39 ++- 1 file changed, 18 insertions(+), 21 deletions(-) di

[PATCH 02/12] ko_KR/HOWTO: Fix a typo: s/Linux Torvalds/Linus Torvalds

2016-10-21 Thread SeongJae Park
Signed-off-by: SeongJae Park --- Documentation/ko_KR/HOWTO | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/ko_KR/HOWTO b/Documentation/ko_KR/HOWTO index 9a3e65924d54..f14ccada9465 100644 --- a/Documentation/ko_KR/HOWTO +++ b/Documentation/ko_KR/HOWTO @@ -231,7

[PATCH 04/12] ko_KR/HOWTO: Update obsolete link to bugzilla faq

2016-10-21 Thread SeongJae Park
Signed-off-by: SeongJae Park --- Documentation/ko_KR/HOWTO | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/ko_KR/HOWTO b/Documentation/ko_KR/HOWTO index 0b13d0a78446..4048297e48aa 100644 --- a/Documentation/ko_KR/HOWTO +++ b/Documentation/ko_KR/HOWTO @@ -325,7

[PATCH 12/12] ko_KR/HOWTO: Mark subsection in rst format

2016-10-21 Thread SeongJae Park
Subsections in HOWTO is not marked in rst format. This commit specifies them in rst format. Signed-off-by: SeongJae Park --- Documentation/ko_KR/HOWTO | 12 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/Documentation/ko_KR/HOWTO b/Documentation/ko_KR/HOWTO index

[PATCH 03/12] ko_KR/HOWTO: Fix subtitles style

2016-10-21 Thread SeongJae Park
This commit fixes subtitles style. It aligns them with their header, adjust blank lines between them properly. Signed-off-by: SeongJae Park --- Documentation/ko_KR/HOWTO | 17 - 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/Documentation/ko_KR/HOWTO b

[PATCH 11/12] ko_KR/HOWTO: Add whitespace between URL and text

2016-10-21 Thread SeongJae Park
Because few sentences has no whitespace between URL and text, document fails to parse the URL from it. This commit adds whitespace between them to fix the problem. Signed-off-by: SeongJae Park --- Documentation/ko_KR/HOWTO | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git

[PATCH 10/12] ko_KR/HOWTO: Clean up bare :: lines

2016-10-21 Thread SeongJae Park
This commit applies commit 1b49ecf2f3be ("docs: Clean up bare :: lines") to Korean translation. Signed-off-by: SeongJae Park --- Documentation/ko_KR/HOWTO | 12 +++- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/Documentation/ko_KR/HOWTO b/Documentation/ko_KR/H

[PATCH 07/12] ko_KR/HOWTO: Update information about generating documentation

2016-10-21 Thread SeongJae Park
This commit applies commit 43fb67a5258c ("Documentation/HOWTO: update information about generating documentation") to Korean translation. Signed-off-by: SeongJae Park --- Documentation/ko_KR/HOWTO | 30 ++ 1 file changed, 22 insertions(+), 8 deletions(-)

[PATCH 08/12] ko_KR/HOWTO: Improve some markups to make it visually better

2016-10-21 Thread SeongJae Park
This commit applies commit 34fed7e7e0e5 ("Documentation/HOWTO: improve some markups to make it visually better") to Korean translation. Signed-off-by: SeongJae Park --- Documentation/ko_KR/HOWTO | 16 ++-- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/Doc

[PATCH 00/12] Fix and update HOWTO Korean translation

2016-10-21 Thread SeongJae Park
This patchset applies ReST conversion effort for HOWTO document to its Korean translation. It also contains fixup of trivial nitpicks in the document and the translation. All patches are based on v4.9-rc1. SeongJae Park (12): Documentation/HOWTO: Mark subsection in rst format ko_KR/HOWTO

[PATCH] locking/Doc/ko_KR: Clarify limited control-dependency scope

2016-10-21 Thread SeongJae Park
This commit applies upstream change, commit ebff09a6ff16 ("locking/Documentation: Clarify limited control-dependency scope"), to Korean translation. Signed-off-by: SeongJae Park --- Documentation/ko_KR/memory-barriers.txt | 36 + 1 file changed, 36

Re: [PATCH] selftests/futex: Check ANSI terminal color support

2016-10-10 Thread SeongJae Park
Hi, Shuah, may I ask your comment about this patch? Thanks, SeongJae Park On Sun, Oct 2, 2016 at 11:02 AM, SeongJae Park wrote: > Because test for color support of the running shell does not aware ANSI > type terminals, it does not print colorful messages on some environemnt. > Th

[PATCH] selftests/futex: Check ANSI terminal color support

2016-10-01 Thread SeongJae Park
Because test for color support of the running shell does not aware ANSI type terminals, it does not print colorful messages on some environemnt. This commit modifies the test to aware ANSI type terminal, too. Signed-off-by: SeongJae Park --- tools/testing/selftests/futex/functional/run.sh | 2

[PATCH 3/3] torture: TOROUT_STRING(): Insert a space between flag and message

2016-08-21 Thread SeongJae Park
() output. Signed-off-by: SeongJae Park --- include/linux/torture.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/torture.h b/include/linux/torture.h index 6685a73..a45702e 100644 --- a/include/linux/torture.h +++ b/include/linux/torture.h @@ -43,7 +43,7 @@ #define

[PATCH 2/3] rcuperf: Insert space between flag and message consistently

2016-08-21 Thread SeongJae Park
pr_alert() call and PERFOUT_STRING() macro function. Signed-off-by: SeongJae Park --- kernel/rcu/rcuperf.c | 7 +++ 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/kernel/rcu/rcuperf.c b/kernel/rcu/rcuperf.c index 6025342..03ba447 100644 --- a/kernel/rcu/rcuperf.c +++ b/kernel

[PATCH 1/3] rcuperf: Remove unnecessary rcu_perf_writer_state variable

2016-08-21 Thread SeongJae Park
rcu_perf_writer_state is being written only while nobody reads it. This commit removes the unnecessary variable and macro constants for it. Signed-off-by: SeongJae Park --- kernel/rcu/rcuperf.c | 16 ++-- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/kernel/rcu

[PATCH] rcutorture: Print out barrier error as document says

2016-08-12 Thread SeongJae Park
e field as document says. Signed-off-by: SeongJae Park --- kernel/rcu/rcutorture.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kernel/rcu/rcutorture.c b/kernel/rcu/rcutorture.c index f0f32f8..ac29017 100644 --- a/kernel/rcu/rcutorture.c +++ b/kernel/rcu/rcutorture.c

[tip:locking/core] locking/Documentation: Fix a typo of example result

2016-08-12 Thread tip-bot for SeongJae Park
Commit-ID: 8b9e771555745a029557a0a481e760fb84376a35 Gitweb: http://git.kernel.org/tip/8b9e771555745a029557a0a481e760fb84376a35 Author: SeongJae Park AuthorDate: Thu, 11 Aug 2016 11:17:42 -0700 Committer: Ingo Molnar CommitDate: Fri, 12 Aug 2016 08:24:13 +0200 locking/Documentation

[tip:locking/core] locking/Documentation: Maintain consistent blank line

2016-08-12 Thread tip-bot for SeongJae Park
Commit-ID: dfeccea61716d3ca1bf3477610d1f29abf6d99ca Gitweb: http://git.kernel.org/tip/dfeccea61716d3ca1bf3477610d1f29abf6d99ca Author: SeongJae Park AuthorDate: Thu, 11 Aug 2016 11:17:40 -0700 Committer: Ingo Molnar CommitDate: Fri, 12 Aug 2016 08:24:13 +0200 locking/Documentation

[tip:locking/core] locking/Documentation: Fix wrong section reference

2016-08-12 Thread tip-bot for SeongJae Park
Commit-ID: d7cab36db83be458e8987ae352902958977e7925 Gitweb: http://git.kernel.org/tip/d7cab36db83be458e8987ae352902958977e7925 Author: SeongJae Park AuthorDate: Thu, 11 Aug 2016 11:17:41 -0700 Committer: Ingo Molnar CommitDate: Fri, 12 Aug 2016 08:24:13 +0200 locking/Documentation

[PATCH v5 1/2] Doc/memory-barriers: Fix a typo of example result

2016-07-20 Thread SeongJae Park
An example result for data dependent write has a typo. This commit fixes the wrong typo. Signed-off-by: SeongJae Park --- Documentation/memory-barriers.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/memory-barriers.txt b/Documentation/memory-barriers.txt

[PATCH v5 0/2] Doc/memory-barriers: Add Korean translation

2016-07-20 Thread SeongJae Park
sjp38/linux.doc_trans_membarrier SeongJae Park (2): Doc/memory-barriers: Fix a typo of example result Doc/memory-barriers: Add Korean translation Documentation/ko_KR/memory-barriers.txt | 3134 +++ Documentation/memory-barriers.txt |2 +- 2 files changed, 3135 inser

Re: [PATCH v4 3/3] Doc/memory-barriers: Add Korean translation

2016-07-08 Thread SeongJae Park
On Fri, Jul 8, 2016 at 7:13 PM, Ingo Molnar wrote: > > * Byungchul Park wrote: > >> On Fri, Jul 08, 2016 at 07:50:39AM +0900, SeongJae Park wrote: >> > > I will add my opinion in korean. >> > >> > Thank you for kind and faithful review.

Re: [PATCH v4 3/3] Doc/memory-barriers: Add Korean translation

2016-07-07 Thread SeongJae Park
2016-07-07 21:00 GMT+09:00 Byungchul Park : > On Mon, Jul 04, 2016 at 08:27:08AM +0900, SeongJae Park wrote: >> +=== >> +이 문서는 >> +Documentation/memory-barriers.txt >> +의

Re: [PATCH v4 0/3] Doc/memory-barriers: Add Korean translation

2016-07-05 Thread SeongJae Park
On Wed, Jul 6, 2016 at 6:36 AM, Paul E. McKenney wrote: > On Mon, Jul 04, 2016 at 08:27:05AM +0900, SeongJae Park wrote: >> This patchset adds Korean translation of memory-barriers.txt and fix few >> nitpicks found during the translation. The translation has started from Feb, &g

[PATCH v4 2/3] memory-barriers.txt: fix wrong section reference

2016-07-03 Thread SeongJae Park
Signed-off-by: SeongJae Park --- Documentation/memory-barriers.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/memory-barriers.txt b/Documentation/memory-barriers.txt index 360faf4..5af1139 100644 --- a/Documentation/memory-barriers.txt +++ b/Documentation

[PATCH v4 1/3] memory-barriers.txt: maintain consistent blank line

2016-07-03 Thread SeongJae Park
Signed-off-by: SeongJae Park --- Documentation/memory-barriers.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/Documentation/memory-barriers.txt b/Documentation/memory-barriers.txt index 147ae8e..360faf4 100644 --- a/Documentation/memory-barriers.txt +++ b/Documentation/memory

[PATCH v4 0/3] Doc/memory-barriers: Add Korean translation

2016-07-03 Thread SeongJae Park
om v3: - Polish readability for overall text: `1 file changed, 533 insertions(+), 505 deletions(-)` - Add disclaimer of translation SeongJae Park (3): memory-barriers.txt: maintain consistent blank line memory-barriers.txt: fix wrong section reference Doc/memory-barriers: Add Korean transl

Re: [PATCH] selftests/lib: set printf.sh executable

2016-06-24 Thread SeongJae Park
Shuah, May I ask your opinion about this patch? Thanks, SeongJae Park On Sun, Jun 19, 2016 at 2:50 AM, Kees Cook wrote: > On Sat, Jun 18, 2016 at 2:28 AM, SeongJae Park wrote: >> Test for test_printf module fails always because the test program, >> printf.sh, has no execu

Re: [PATCH v3] Doc/memory-barriers: Add Korean translation

2016-06-23 Thread SeongJae Park
Hello, Byungchul, I guess the review is ongoing yet and maybe it requires more days. Can you let me know your estimated time for the review if it doesn't bother you? Thanks, SeongJae Park On Fri, Jun 17, 2016 at 3:24 PM, Minchan Kim wrote: > On Wed, Jun 15, 2016 at 03:47:34

[PATCH] rcutorture: Remove outdated config option description

2016-06-19 Thread SeongJae Park
on for the alternative module parameter. Signed-off-by: SeongJae Park --- Documentation/RCU/torture.txt | 20 +--- 1 file changed, 5 insertions(+), 15 deletions(-) diff --git a/Documentation/RCU/torture.txt b/Documentation/RCU/torture.txt index 118e7c1..4bd9d86 100644 --- a/Documen

[PATCH] selftests/lib: set printf.sh executable

2016-06-18 Thread SeongJae Park
Test for test_printf module fails always because the test program, printf.sh, has no execution permission. This commit adds execution permission to it. Signed-off-by: SeongJae Park --- tools/testing/selftests/lib/printf.sh | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change

Re: [PATCH memory-barriers.txt 6/7] documentation: Add Korean translation

2016-04-18 Thread SeongJae Park
Well, looks like there is neither strong positive opinion nor strong negative opinion. So, I will post the patch again with the suggested workflow soon. Thanks, SeongJae Park On Sat, Apr 16, 2016 at 8:23 AM, Paul E. McKenney wrote: > On Fri, Apr 15, 2016 at 07:17:17AM +0900, SeongJae P

[PATCH] Documentation: HOWTO: update git home URL in translations

2016-04-15 Thread SeongJae Park
Homepage url of git in HOWTO document was updated by commit e234ebf7881c013b654113f0a208977ac3ce1d01 ("Documentation/HOWTO: update git home URL") but not applied to several translations. This commit updates them. Signed-off-by: SeongJae Park --- Documentation/ko_KR

[PATCH] Documentatio: HOWTO: remove regression postings info from translations

2016-04-15 Thread SeongJae Park
Obsolete info about regression postings were removed by commit 5645a717c6ee61e67d38aa9f15cb9db074e1e99d ("Documentation: HOWTO: remove obsolete info about regression postings") but not applied to translations. This commit applies the change to translations. Signed-off-by: Seo

Re: [PATCH memory-barriers.txt 6/7] documentation: Add Korean translation

2016-04-14 Thread SeongJae Park
On Fri, Apr 15, 2016 at 12:25 AM, Paul E. McKenney wrote: > On Thu, Apr 14, 2016 at 10:04:47AM +0900, SeongJae Park wrote: >> On Wed, Apr 13, 2016 at 9:49 PM, Paul E. McKenney >> wrote: >> > On Wed, Apr 13, 2016 at 05:11:24PM +0900, SeongJae Park wrote: >> >

Re: [PATCH memory-barriers.txt 6/7] documentation: Add Korean translation

2016-04-13 Thread SeongJae Park
On Wed, Apr 13, 2016 at 9:49 PM, Paul E. McKenney wrote: > On Wed, Apr 13, 2016 at 05:11:24PM +0900, SeongJae Park wrote: >> On Wed, Apr 13, 2016 at 3:38 PM, Ingo Molnar wrote: >> > >> > * Paul E. McKenney wrote: >> > >> >> From: SeongJae Park

Re: [PATCH memory-barriers.txt 6/7] documentation: Add Korean translation

2016-04-13 Thread SeongJae Park
On Wed, Apr 13, 2016 at 3:38 PM, Ingo Molnar wrote: > > * Paul E. McKenney wrote: > >> From: SeongJae Park >> >> This commit adds Korean version of memory-barriers.txt document. The >> header is refered to HOWTO Korean version. >> >> Signed-off-

[tip:locking/core] locking/Documentation: Insert white spaces consistently

2016-04-13 Thread tip-bot for SeongJae Park
Commit-ID: 0b6fa347dc08c6f757a35f3a180269b3ffc4cd28 Gitweb: http://git.kernel.org/tip/0b6fa347dc08c6f757a35f3a180269b3ffc4cd28 Author: SeongJae Park AuthorDate: Tue, 12 Apr 2016 08:52:53 -0700 Committer: Ingo Molnar CommitDate: Wed, 13 Apr 2016 08:52:22 +0200 locking/Documentation

[tip:locking/core] locking/Documentation: Fix formatting inconsistencies

2016-04-13 Thread tip-bot for SeongJae Park
Commit-ID: 3dbf0913f6cac722805a94f16b1e61ffc3483eaf Gitweb: http://git.kernel.org/tip/3dbf0913f6cac722805a94f16b1e61ffc3483eaf Author: SeongJae Park AuthorDate: Tue, 12 Apr 2016 08:52:52 -0700 Committer: Ingo Molnar CommitDate: Wed, 13 Apr 2016 08:52:22 +0200 locking/Documentation

[tip:locking/core] locking/Documentation: Add missed subsection in TOC

2016-04-13 Thread tip-bot for SeongJae Park
Commit-ID: 01e1cd6de8e75fa28c268b4dc566bc1a39486e71 Gitweb: http://git.kernel.org/tip/01e1cd6de8e75fa28c268b4dc566bc1a39486e71 Author: SeongJae Park AuthorDate: Tue, 12 Apr 2016 08:52:51 -0700 Committer: Ingo Molnar CommitDate: Wed, 13 Apr 2016 08:52:22 +0200 locking/Documentation

[tip:locking/core] locking/Documentation: Fix missed s/lock/acquire renames

2016-04-13 Thread tip-bot for SeongJae Park
Commit-ID: 166bda7122c8e817f039bf738cf05ab3b7278732 Gitweb: http://git.kernel.org/tip/166bda7122c8e817f039bf738cf05ab3b7278732 Author: SeongJae Park AuthorDate: Tue, 12 Apr 2016 08:52:50 -0700 Committer: Ingo Molnar CommitDate: Wed, 13 Apr 2016 08:52:21 +0200 locking/Documentation

Re: [PATCH 1/2] mm/hugetlb: Introduce hugetlb_bad_size

2016-03-22 Thread SeongJae Park
On Wed, 23 Mar 2016, Vaishali Thakkar wrote: On Wednesday 23 March 2016 04:57 AM, SeongJae Park wrote: Hello Vaishali, The patch looks good to me. However, I have few trivial questions. On Tue, 22 Mar 2016, Vaishali Thakkar wrote: When any unsupported hugepage size is specified

Re: [PATCH 1/2] mm/hugetlb: Introduce hugetlb_bad_size

2016-03-22 Thread SeongJae Park
Hello Vaishali, The patch looks good to me. However, I have few trivial questions. On Tue, 22 Mar 2016, Vaishali Thakkar wrote: When any unsupported hugepage size is specified, 'hugepagesz=' and 'hugepages=' should be ignored during command line parsing until any supported hugepage size is f

Re: [PATCH v2 0/5] Add Korean translation of memory-barriers.txt

2016-03-14 Thread SeongJae Park
On Tue, Mar 15, 2016 at 5:17 AM, Paul E. McKenney wrote: > On Fri, Mar 11, 2016 at 12:06:55AM +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 orig

[PATCH v2 4/5] doc/memory-barriers: Insert white spaces consistently

2016-03-10 Thread SeongJae Park
The document uses two newlines between sections, one newline between item and its detailed description, and two spaces between sentences. However, there is few point that missed the rule. This commit fix them to use the rule consistently. Signed-off-by: SeongJae Park Acked-by: David Howells

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

2016-03-10 Thread SeongJae Park
Signed-off-by: SeongJae Park Acked-by: David Howells --- 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 9b617a9..e40ebbd 100644 --- a/Documentation/memory

[PATCH v2 2/5] doc/memory-barriers: add missed subsection in TOC

2016-03-10 Thread SeongJae Park
e 'table of contents'. Signed-off-by: SeongJae Park Acked-by: David Howells --- Documentation/memory-barriers.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/Documentation/memory-barriers.txt b/Documentation/memory-barriers.txt index 530fae6..9b617a9 100644 --- a/Documenta

[PATCH v2 1/5] doc/memory-barriers: fix missed renaming: s/lock/acquire

2016-03-10 Thread SeongJae Park
ction name `Acquiring functions` is not appropriate for the section because the section is saying about lock in actual. This commit changes the name to more appropriate name, `Lock acquisition functions`. Signed-off-by: SeongJae Park Suggested-by: David Howells --- Documentation/memory-barrier

[PATCH v2 0/5] Add Korean translation of memory-barriers.txt

2016-03-10 Thread SeongJae Park
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: In

Re: [PATCH 1/5] doc/memory-barriers: fix missed renaming: s/lock/acquire

2016-03-10 Thread SeongJae Park
On Thu, Mar 10, 2016 at 6:45 PM, David Howells wrote: > SeongJae Park wrote: > >> >> - - Locking functions. >> >> + - Acquiring functions. >> ... >> > It's specifically talking about locking functions that the kernel provides >> &

Re: [PATCH 1/5] doc/memory-barriers: fix missed renaming: s/lock/acquire

2016-03-10 Thread SeongJae Park
On Thu, 10 Mar 2016, David Howells wrote: SeongJae Park wrote: - - Locking functions. + - Acquiring functions. Actually, this should be 'locking' functions. If you look at the text: ACQUIRING FUNCTIONS --- The Linux kernel ha

[PATCH 2/5] doc/memory-barriers: add missed subsection in TOC

2016-03-09 Thread SeongJae Park
e 'table of contents'. Signed-off-by: SeongJae Park --- 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/Doc

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

2016-03-09 Thread SeongJae Park
Signed-off-by: SeongJae Park --- 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

[PATCH 4/5] doc/memory-barriers: Insert white spaces consistently

2016-03-09 Thread SeongJae Park
The document uses two newlines between sections, one newline between item and its detailed description, and two spaces between sentences. However, there is few point that missed the rule. This commit fix them to use the rule consistently. Signed-off-by: SeongJae Park --- Documentation/memory

[PATCH 0/5] Add Korean translation of memory-barriers.txt

2016-03-09 Thread SeongJae Park
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: In

[PATCH 1/5] doc/memory-barriers: fix missed renaming: s/lock/acquire

2016-03-09 Thread SeongJae Park
Terms `lock` and `unlock` have changed to `acquire` / `release` by commit 2e4f5382d12a441b5cccfdde00308df15c2ce300 ("locking/doc: Rename LOCK/UNLOCK to ACQUIRE/RELEASE"). However, the commit missed to change the table of content. This commit changes the missed parts. Signed-off-by

Re: [PATCH trivial] include/linux/gfp.h: Improve the coding styles

2016-02-25 Thread SeongJae Park
ainers. What I want to say is, we should respect maintainers' opinion in usual. As far as I remember, I have seen a document that saying same with others' opinion but couldn't find it. Thanks, SeongJae Park Thanks. -- Chen Gang (陈刚) Managing Natural Environments is the Duty

Re: [PATCH trivial] include/linux/gfp.h: Improve the coding styles

2016-02-24 Thread SeongJae Park
wed */ +#define __GFP_MOVABLE((__force gfp_t)___GFP_MOVABLE) Maybe the opinion can be applied to below similar changes, too. Thanks, SeongJae Park. +#define GFP_ZONEMASK (__GFP_DMA | __GFP_HIGHMEM | __GFP_DMA32 | \ +__GFP_MOVABLE) /* * Page mobility and pla

Re: [PATCH] Documentation/memory-barriers: fix wrong comment in example

2016-02-22 Thread SeongJae Park
On Tue, Feb 23, 2016 at 1:33 AM, Paul E. McKenney wrote: > On Mon, Feb 22, 2016 at 11:16:39AM +, David Howells wrote: >> SeongJae Park wrote: >> >> > From f7b5677790771599f418f1d95536935be971ae86 Mon Sep 17 00:00:00 2001 >> > From: SeongJae Park >>

Re: [PATCH] Documentation/memory-barriers: fix wrong comment in example

2016-02-22 Thread SeongJae Park
On Mon, 22 Feb 2016, David Howells wrote: SeongJae Park wrote: a = 0; /* Code that does not store to variable a. */ + does_not_change_a(); a = 0; Since it's not actually code that's meant to be executed, you could make it: a = 0; ... code that does no

Re: [PATCH] Documentation/memory-barriers: fix wrong comment in example

2016-02-21 Thread SeongJae Park
On Sun, Feb 21, 2016 at 2:25 PM, Paul E. McKenney wrote: > On Sun, Feb 21, 2016 at 07:50:19AM +0900, SeongJae Park wrote: >> On Sun, Feb 21, 2016 at 4:57 AM, Paul E. McKenney >> wrote: >> > On Sat, Feb 20, 2016 at 03:01:08PM +0900, SeongJae Park wrote: >> >> T

Re: [PATCH] Documentation/memory-barriers: fix wrong comment in example

2016-02-20 Thread SeongJae Park
On Sun, Feb 21, 2016 at 4:57 AM, Paul E. McKenney wrote: > On Sat, Feb 20, 2016 at 03:01:08PM +0900, SeongJae Park wrote: >> There is wrong comment in example for compiler store omit behavior. It >> shows example of the problem and than problem solved version code. >> Howeve

[PATCH] Documentation/memory-barriers: fix wrong comment in example

2016-02-19 Thread SeongJae Park
There is wrong comment in example for compiler store omit behavior. It shows example of the problem and than problem solved version code. However, the comment in the solved version is still same with not solved version. Fix the wrong statement with this commit. Signed-off-by: SeongJae Park

[PATCH] Documentation/ko_KR: update maintainer information

2016-02-13 Thread SeongJae Park
Maintainer informations of Documentation/ko_KR is outdated. This commit update the informations to the latest ones. Signed-off-by: SeongJae Park --- Documentation/ko_KR/HOWTO | 4 ++-- Documentation/ko_KR/stable_api_nonsense.txt | 4 ++-- 2 files changed, 4 insertions(+), 4

[PATCH] Documentation: update linux cross reference link

2015-12-31 Thread SeongJae Park
The old link to source code cross reference does not work now. Though the link has updated by commit 1d12554f0abbc7d17dce8d1b7b25f4e27555e6d7 ("Documentation: HOWTO: update code cross reference link"), there are few obsolete links yet. This commit update them. Signed-off-by: Seo

[PATCH 1/2] Documentation: remove outdated references from translations

2015-12-14 Thread SeongJae Park
Outdated link to linux-next wiki was removed by commit ace80793d16fb076381ba0e232d42295d98dae99 ("Documentation: remove outdated references to the linux-next wiki"). However, the change was not applied to translations. This commit apply the change to translations. Signed-off-by: Seo

[PATCH 2/2] Documentation: HOWTO: update versions from 3.x to 4.x

2015-12-14 Thread SeongJae Park
Versions in HOWTO was updated to 4.x by commit e4144fe5d47c91c92d36cdbd5f31ed8d6e3a57ab ("docs: update HOWTO for 3.x -> 4.x versioning") but not applied to Korean translation. This commit apply the change. Signed-off-by: SeongJae Park --- Documentation/ko_

Re: [RFC v2 0/5] introduce gcma

2015-02-25 Thread SeongJae Park
On Wed, 25 Feb 2015, Michal Hocko wrote: On Wed 25-02-15 14:31:08, SeongJae Park wrote: Hello Michal, Thanks for your comment :) On Tue, 24 Feb 2015, Michal Hocko wrote: On Tue 24-02-15 04:54:18, SeongJae Park wrote: [...] include/linux/cma.h |4 + include/linux/gcma.h | 64 +++ mm

Re: [RFC v2 0/5] introduce gcma

2015-02-24 Thread SeongJae Park
Hello Michal, Thanks for your comment :) On Tue, 24 Feb 2015, Michal Hocko wrote: On Tue 24-02-15 04:54:18, SeongJae Park wrote: [...] include/linux/cma.h |4 + include/linux/gcma.h | 64 +++ mm/Kconfig | 24 + mm/Makefile |1 + mm/cma.c | 113

[RFC v2 3/5] gcma: adopt cleancache and frontswap as second-class clients

2015-02-23 Thread SeongJae Park
discardable memory interface. Signed-off-by: SeongJae Park --- include/linux/gcma.h | 3 + mm/gcma.c| 312 ++- 2 files changed, 314 insertions(+), 1 deletion(-) diff --git a/include/linux/gcma.h b/include/linux/gcma.h index 005bf77

<    5   6   7   8   9   10   11   >