* [PATCH v3] docs: ja_JP: process: translate first half of 'Describe your changes'
@ 2026-02-25 15:47 Akiyoshi Kurita
2026-03-03 9:51 ` Akira Yokosawa
0 siblings, 1 reply; 3+ messages in thread
From: Akiyoshi Kurita @ 2026-02-25 15:47 UTC (permalink / raw)
To: linux-doc; +Cc: linux-kernel, corbet, akiyks, weibu
Translate the first half of the "Describe your changes" section in
Documentation/translations/ja_JP/process/submitting-patches.rst.
Replace "説明する" with "記述する" to match the distinction used in
ja_JP/process/howto.rst, and adjust line wrapping to ~74 columns.
Avoid cross-references for now by adding TODO notes to convert them to
file-local references when the destinations are translated.
Signed-off-by: Akiyoshi Kurita <weibu@redadmin.org>
---
.../ja_JP/process/submitting-patches.rst | 44 ++++++++++++++++++-
1 file changed, 43 insertions(+), 1 deletion(-)
diff --git a/Documentation/translations/ja_JP/process/submitting-patches.rst b/Documentation/translations/ja_JP/process/submitting-patches.rst
index d61583399ef4..1c0f694fd2a0 100644
--- a/Documentation/translations/ja_JP/process/submitting-patches.rst
+++ b/Documentation/translations/ja_JP/process/submitting-patches.rst
@@ -52,5 +52,47 @@ Documentation/devicetree/bindings/submitting-patches.rst を読んでくださ
ツリーは MAINTAINERS ファイル内の **T:** エントリを参照して見つけてください。
そこに掲載されていない場合は、メンテナに問い合わせてください。
-変更内容を説明する
+変更内容を記述する
------------------
+
+問題を記述してください。あなたのパッチが 1 行のバグ修正であっても、
+5000 行の新機能であっても、それを行う動機となった根本的な問題が
+必ずあるはずです。修正すべき価値のある問題が存在し、レビューアが
+最初の段落以降を読む意味があることを納得させてください。
+
+ユーザーから見える影響を記述してください。クラッシュやロックアップは
+分かりやすいですが、すべてのバグがそこまで露骨とは限りません。
+たとえコードレビュー中に見つかった問題であっても、ユーザーに
+どのような影響があり得るかを記述してください。
+Linux の多くの環境は、上流から特定のパッチだけを取り込む二次的な
+安定版ツリーや、ベンダー/製品固有のツリーのカーネルで動いています。
+したがって、変更を下流へ適切に流す助けになる情報(発生条件、dmesg
+の抜粋、クラッシュ内容、性能劣化、レイテンシのスパイク、
+ロックアップ等)があれば記載してください。
+
+最適化とトレードオフを定量的に示してください。パフォーマンス、
+メモリ消費量、スタックフットプリント、バイナリサイズの改善を主張する
+場合は、それを裏付ける数値を記載してください。
+また、目に見えないコストについても記述してください。最適化は通常
+無料ではなく、CPU・メモリ・可読性の間でのトレードオフになります。
+ヒューリスティクスの場合は、異なるワークロード間でのトレードオフに
+なります。レビューアがコストとメリットを比較検討できるよう、
+最適化によって予想されるデメリットも記述してください。
+
+問題を明確にできたら、実際にどのような対策を講じているかを技術的に
+詳しく記述してください。レビューアがコードが意図したとおりに動作して
+いるかを確認できるよう、変更内容を平易な言葉で書き下すことが重要です。
+
+パッチ説明を Linux のソースコード管理システム ``git`` の
+「コミットログ」としてそのまま取り込める形で書けば、メンテナは
+助かります。詳細は原文の該当節を参照してください。
+
+.. TODO: Convert to file-local cross-reference when the destination is
+ translated.
+
+1 つのパッチでは 1 つの問題だけを解決してください。記述が長くなり
+始めたら、パッチを分割すべきサインです。詳細は原文の該当節を参照
+してください。
+
+.. TODO: Convert to file-local cross-reference when the destination is
+ translated.
--
2.47.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v3] docs: ja_JP: process: translate first half of 'Describe your changes'
2026-02-25 15:47 [PATCH v3] docs: ja_JP: process: translate first half of 'Describe your changes' Akiyoshi Kurita
@ 2026-03-03 9:51 ` Akira Yokosawa
2026-03-03 17:26 ` Jonathan Corbet
0 siblings, 1 reply; 3+ messages in thread
From: Akira Yokosawa @ 2026-03-03 9:51 UTC (permalink / raw)
To: Akiyoshi Kurita, corbet; +Cc: linux-kernel, linux-doc, Akira Yokosawa
Hi Kurita-san,
On Thu, 26 Feb 2026 00:47:06 +0900, Akiyoshi Kurita wrote:
> Translate the first half of the "Describe your changes" section in
> Documentation/translations/ja_JP/process/submitting-patches.rst.
>
> Replace "説明する" with "記述する" to match the distinction used in
> ja_JP/process/howto.rst, and adjust line wrapping to ~74 columns.
Your line wrapping still looks ~60 columns to me ..., but that can be
tweaked after the fact.
Currently, I'm kind of distracted by other issues and can't do in-depth
review promptly.
Jon, I'm OK with v3 merged as is. So,
> Avoid cross-references for now by adding TODO notes to convert them to
> file-local references when the destinations are translated.
>
> Signed-off-by: Akiyoshi Kurita <weibu@redadmin.org>
Acked-by: Akira Yokosawa <akiyks@gmail.com>
> ---
> .../ja_JP/process/submitting-patches.rst | 44 ++++++++++++++++++-
> 1 file changed, 43 insertions(+), 1 deletion(-)
>
[...]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v3] docs: ja_JP: process: translate first half of 'Describe your changes'
2026-03-03 9:51 ` Akira Yokosawa
@ 2026-03-03 17:26 ` Jonathan Corbet
0 siblings, 0 replies; 3+ messages in thread
From: Jonathan Corbet @ 2026-03-03 17:26 UTC (permalink / raw)
To: Akira Yokosawa, Akiyoshi Kurita; +Cc: linux-kernel, linux-doc, Akira Yokosawa
Akira Yokosawa <akiyks@gmail.com> writes:
> Hi Kurita-san,
>
> On Thu, 26 Feb 2026 00:47:06 +0900, Akiyoshi Kurita wrote:
>> Translate the first half of the "Describe your changes" section in
>> Documentation/translations/ja_JP/process/submitting-patches.rst.
>>
>> Replace "説明する" with "記述する" to match the distinction used in
>> ja_JP/process/howto.rst, and adjust line wrapping to ~74 columns.
>
> Your line wrapping still looks ~60 columns to me ..., but that can be
> tweaked after the fact.
>
> Currently, I'm kind of distracted by other issues and can't do in-depth
> review promptly.
>
> Jon, I'm OK with v3 merged as is. So,
>
>> Avoid cross-references for now by adding TODO notes to convert them to
>> file-local references when the destinations are translated.
>>
>> Signed-off-by: Akiyoshi Kurita <weibu@redadmin.org>
>
> Acked-by: Akira Yokosawa <akiyks@gmail.com>
OK, applied, thanks as always,
jon
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-03-03 17:26 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-25 15:47 [PATCH v3] docs: ja_JP: process: translate first half of 'Describe your changes' Akiyoshi Kurita
2026-03-03 9:51 ` Akira Yokosawa
2026-03-03 17:26 ` Jonathan Corbet
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox