All of lore.kernel.org
 help / color / mirror / Atom feed
From: Mauro Carvalho Chehab <mchehab@kernel.org>
To: Linux Doc Mailing List <linux-doc@vger.kernel.org>,
	Jonathan Corbet <corbet@lwn.net>
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>,
	"H. Peter Anvin" <hpa@zytor.com>,
	"Mauro Carvalho Chehab" <mchehab+huawei@kernel.org>,
	Andrew Morton <akpm@linux-foundation.org>,
	Borislav Petkov <bp@alien8.de>,
	Dan Williams <dan.j.williams@intel.com>,
	Daniel Latypov <dlatypov@google.com>,
	Dave Hansen <dave.hansen@linux.intel.com>,
	Ingo Molnar <mingo@redhat.com>,
	Isabella Basso <isabbasso@riseup.net>,
	Josh Poimboeuf <jpoimboe@kernel.org>,
	Kees Cook <keescook@chromium.org>,
	Masami Hiramatsu <mhiramat@kernel.org>,
	Miroslav Benes <mbenes@suse.cz>,
	Nathan Chancellor <nathan@kernel.org>,
	Peter Zijlstra <peterz@infradead.org>,
	Rasmus Villemoes <linux@rasmusvillemoes.dk>,
	Thomas Gleixner <tglx@linutronix.de>,
	Vlastimil Babka <vbabka@suse.cz>,
	linux-kernel@vger.kernel.org, x86@kernel.org
Subject: [PATCH 21/23] objtool: update objtool.txt references
Date: Mon,  6 Jun 2022 16:25:43 +0100	[thread overview]
Message-ID: <f076539bc44935710bc85493cb04900314ad9760.1654529011.git.mchehab@kernel.org> (raw)
In-Reply-To: <cover.1654529011.git.mchehab@kernel.org>

Changeset a8e35fece49b ("objtool: Update documentation")
renamed: tools/objtool/Documentation/stack-validation.txt
to: tools/objtool/Documentation/objtool.txt.

Update the cross-references accordingly.

Fixes: a8e35fece49b ("objtool: Update documentation")
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
---

To avoid mailbombing on a large number of people, only mailing lists were C/C on the cover.
See [PATCH 00/23] at: https://lore.kernel.org/all/cover.1654529011.git.mchehab@kernel.org/

 Documentation/x86/orc-unwinder.rst | 2 +-
 include/linux/objtool.h            | 2 +-
 lib/Kconfig.debug                  | 2 +-
 tools/include/linux/objtool.h      | 2 +-
 tools/objtool/check.c              | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/Documentation/x86/orc-unwinder.rst b/Documentation/x86/orc-unwinder.rst
index 9a66a88be765..cdb257015bd9 100644
--- a/Documentation/x86/orc-unwinder.rst
+++ b/Documentation/x86/orc-unwinder.rst
@@ -140,7 +140,7 @@ Unwinder implementation details
 
 Objtool generates the ORC data by integrating with the compile-time
 stack metadata validation feature, which is described in detail in
-tools/objtool/Documentation/stack-validation.txt.  After analyzing all
+tools/objtool/Documentation/objtool.txt.  After analyzing all
 the code paths of a .o file, it creates an array of orc_entry structs,
 and a parallel array of instruction addresses associated with those
 structs, and writes them to the .orc_unwind and .orc_unwind_ip sections
diff --git a/include/linux/objtool.h b/include/linux/objtool.h
index 6491fa8fba6d..6f89471005ee 100644
--- a/include/linux/objtool.h
+++ b/include/linux/objtool.h
@@ -62,7 +62,7 @@ struct unwind_hint {
  * It should only be used in special cases where you're 100% sure it won't
  * affect the reliability of frame pointers and kernel stack traces.
  *
- * For more information, see tools/objtool/Documentation/stack-validation.txt.
+ * For more information, see tools/objtool/Documentation/objtool.txt.
  */
 #define STACK_FRAME_NON_STANDARD(func) \
 	static void __used __section(".discard.func_stack_frame_non_standard") \
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug
index 2e24db4bff19..79a71eb96111 100644
--- a/lib/Kconfig.debug
+++ b/lib/Kconfig.debug
@@ -498,7 +498,7 @@ config STACK_VALIDATION
 	  runtime stack traces are more reliable.
 
 	  For more information, see
-	  tools/objtool/Documentation/stack-validation.txt.
+	  tools/objtool/Documentation/objtool.txt.
 
 config NOINSTR_VALIDATION
 	bool
diff --git a/tools/include/linux/objtool.h b/tools/include/linux/objtool.h
index 6491fa8fba6d..6f89471005ee 100644
--- a/tools/include/linux/objtool.h
+++ b/tools/include/linux/objtool.h
@@ -62,7 +62,7 @@ struct unwind_hint {
  * It should only be used in special cases where you're 100% sure it won't
  * affect the reliability of frame pointers and kernel stack traces.
  *
- * For more information, see tools/objtool/Documentation/stack-validation.txt.
+ * For more information, see tools/objtool/Documentation/objtool.txt.
  */
 #define STACK_FRAME_NON_STANDARD(func) \
 	static void __used __section(".discard.func_stack_frame_non_standard") \
diff --git a/tools/objtool/check.c b/tools/objtool/check.c
index 864bb9dd3584..970844ceecdc 100644
--- a/tools/objtool/check.c
+++ b/tools/objtool/check.c
@@ -3190,7 +3190,7 @@ static struct instruction *next_insn_to_validate(struct objtool_file *file,
  * Follow the branch starting at the given instruction, and recursively follow
  * any other branches (jumps).  Meanwhile, track the frame pointer state at
  * each instruction and validate all the rules described in
- * tools/objtool/Documentation/stack-validation.txt.
+ * tools/objtool/Documentation/objtool.txt.
  */
 static int validate_branch(struct objtool_file *file, struct symbol *func,
 			   struct instruction *insn, struct insn_state state)
-- 
2.36.1


  parent reply	other threads:[~2022-06-06 15:27 UTC|newest]

Thread overview: 59+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-06-06 15:25 [PATCH 00/23] Update Documentation/ cross-references Mauro Carvalho Chehab
2022-06-06 15:25 ` Mauro Carvalho Chehab
2022-06-06 15:25 ` Mauro Carvalho Chehab
2022-06-06 15:25 ` Mauro Carvalho Chehab
2022-06-06 15:25 ` [PATCH 01/23] dt-bindings: mfd: bd9571mwv: update rohm,bd9571mwv.yaml reference Mauro Carvalho Chehab
2022-06-07 19:25   ` Geert Uytterhoeven
2022-06-06 15:25 ` [PATCH 02/23] dt-bindings: interrupt-controller: update brcm,l2-intc.yaml reference Mauro Carvalho Chehab
2022-06-06 15:25 ` [PATCH 03/23] dt-bindings: arm: update vexpress-config.yaml references Mauro Carvalho Chehab
2022-06-06 15:44   ` Guenter Roeck
2022-06-06 15:25 ` [PATCH 04/23] dt-bindings: reset: update st,stih407-powerdown.yaml references Mauro Carvalho Chehab
2022-06-06 15:25   ` Mauro Carvalho Chehab
2022-06-06 15:25 ` [PATCH 05/23] dt-bindings: mfd: rk808: update rockchip,rk808.yaml reference Mauro Carvalho Chehab
2022-06-06 15:25 ` [PATCH 06/23] dt-bindings: mmc: exynos-dw-mshc: update samsung,pinctrl.yaml reference Mauro Carvalho Chehab
2022-06-06 15:25   ` Mauro Carvalho Chehab
2022-06-06 15:41   ` Krzysztof Kozlowski
2022-06-06 15:41     ` Krzysztof Kozlowski
2022-06-07 12:15     ` Krzysztof Kozlowski
2022-06-07 12:15       ` Krzysztof Kozlowski
2022-06-06 15:25 ` [PATCH 07/23] docs: netdev: update maintainer-netdev.rst reference Mauro Carvalho Chehab
2022-06-06 16:22   ` Jakub Kicinski
2022-06-06 15:25 ` [PATCH 08/23] docs: filesystems: update netfs-api.rst reference Mauro Carvalho Chehab
2022-06-06 15:25 ` [PATCH 09/23] Documentation: update watch_queue.rst references Mauro Carvalho Chehab
2022-06-06 15:56   ` Randy Dunlap
2022-06-06 15:25 ` [PATCH 10/23] Documentation: KVM: update s390-pv.rst reference Mauro Carvalho Chehab
2022-06-06 15:25 ` [PATCH 11/23] Documentation: KVM: update amd-memory-encryption.rst references Mauro Carvalho Chehab
2022-06-06 15:25 ` [PATCH 12/23] Documentation: KVM: update msr.rst reference Mauro Carvalho Chehab
2022-06-06 15:25 ` [PATCH 13/23] Documentation: KVM: update s390-diag.rst reference Mauro Carvalho Chehab
2022-06-06 15:25 ` [PATCH 14/23] MAINTAINERS: update arm,hdlcd.yaml reference Mauro Carvalho Chehab
2022-06-06 15:34   ` Andre Przywara
2022-06-06 17:13     ` Rob Herring
2022-06-06 15:25 ` [PATCH 15/23] MAINTAINERS: update arm,komeda.yaml reference Mauro Carvalho Chehab
2022-06-06 15:25 ` [PATCH 16/23] MAINTAINERS: update arm,malidp.yaml reference Mauro Carvalho Chehab
2022-06-06 15:25 ` [PATCH 17/23] MAINTAINERS: update cortina,gemini-ethernet.yaml reference Mauro Carvalho Chehab
2022-06-07 22:42   ` Linus Walleij
2022-06-06 15:25 ` [PATCH 18/23] MAINTAINERS: update dongwoon,dw9807-vcm.yaml reference Mauro Carvalho Chehab
2022-06-06 15:25 ` [PATCH 19/23] MAINTAINERS: update maxim,max77693.yaml reference Mauro Carvalho Chehab
2022-06-06 15:37   ` Krzysztof Kozlowski
2022-06-06 15:25 ` [PATCH 20/23] MAINTAINERS: update snps,axs10x-reset.yaml reference Mauro Carvalho Chehab
2022-06-06 15:25 ` Mauro Carvalho Chehab [this message]
2022-06-06 15:25 ` [PATCH 22/23] ASoC: wm8731: update wlf,wm8731.yaml reference Mauro Carvalho Chehab
2022-06-06 15:25   ` Mauro Carvalho Chehab
2022-06-06 15:25   ` Mauro Carvalho Chehab
2022-06-06 19:01   ` Rob Herring
2022-06-06 19:01     ` Rob Herring
2022-06-06 19:01     ` Rob Herring
2022-06-13  9:47   ` Charles Keepax
2022-06-13  9:47     ` Charles Keepax
2022-06-13  9:47     ` Charles Keepax
2022-06-06 15:25 ` [PATCH 23/23] arch: m68k: q40: README: drop references to IDE driver Mauro Carvalho Chehab
2022-06-06 16:07   ` Randy Dunlap
2022-06-07  8:07   ` Geert Uytterhoeven
2022-06-06 17:17 ` [PATCH 00/23] Update Documentation/ cross-references Rob Herring
2022-06-06 17:17   ` Rob Herring
2022-06-06 17:17   ` Rob Herring
2022-06-06 17:17   ` Rob Herring
2022-06-07 14:11 ` (subset) " Mark Brown
2022-06-07 14:11   ` Mark Brown
2022-06-07 14:11   ` Mark Brown
2022-06-07 14:11   ` Mark Brown

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=f076539bc44935710bc85493cb04900314ad9760.1654529011.git.mchehab@kernel.org \
    --to=mchehab@kernel.org \
    --cc=akpm@linux-foundation.org \
    --cc=bp@alien8.de \
    --cc=corbet@lwn.net \
    --cc=dan.j.williams@intel.com \
    --cc=dave.hansen@linux.intel.com \
    --cc=dlatypov@google.com \
    --cc=hpa@zytor.com \
    --cc=isabbasso@riseup.net \
    --cc=jpoimboe@kernel.org \
    --cc=keescook@chromium.org \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@rasmusvillemoes.dk \
    --cc=mbenes@suse.cz \
    --cc=mchehab+huawei@kernel.org \
    --cc=mhiramat@kernel.org \
    --cc=mingo@redhat.com \
    --cc=nathan@kernel.org \
    --cc=peterz@infradead.org \
    --cc=tglx@linutronix.de \
    --cc=vbabka@suse.cz \
    --cc=x86@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.