public inbox for linux-next@vger.kernel.org 
 help / color / mirror / Atom feed
* linux-next: build warning after merge of the mm-nonmm-unstable tree
@ 2025-07-29  5:00 Stephen Rothwell
  2025-07-29  9:14 ` Mike Rapoport
  0 siblings, 1 reply; 5+ messages in thread
From: Stephen Rothwell @ 2025-07-29  5:00 UTC (permalink / raw)
  To: Andrew Morton
  Cc: Mike Rapoport (Microsoft), Linux Kernel Mailing List,
	Linux Next Mailing List

[-- Attachment #1: Type: text/plain, Size: 402 bytes --]

Hi all,

After merging the mm-nonmm-unstable tree, today's linux-next build
(x86_64 allmodconfig) produced this warning:

WARNING: modpost: vmlinux: section mismatch in reference: kho_test_restore+0x16c (section: .text.unlikely) -> kho_test_restore_data.isra.0 (section: .init.text)

Introduced by commit

  c2d288f7ab13 ("kho: add test for kexec handover")

-- 
Cheers,
Stephen Rothwell

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: linux-next: build warning after merge of the mm-nonmm-unstable tree
  2025-07-29  5:00 Stephen Rothwell
@ 2025-07-29  9:14 ` Mike Rapoport
  0 siblings, 0 replies; 5+ messages in thread
From: Mike Rapoport @ 2025-07-29  9:14 UTC (permalink / raw)
  To: Stephen Rothwell
  Cc: Andrew Morton, Linux Kernel Mailing List, Linux Next Mailing List

On Tue, Jul 29, 2025 at 03:00:42PM +1000, Stephen Rothwell wrote:
> Hi all,
> 
> After merging the mm-nonmm-unstable tree, today's linux-next build
> (x86_64 allmodconfig) produced this warning:
> 
> WARNING: modpost: vmlinux: section mismatch in reference: kho_test_restore+0x16c (section: .text.unlikely) -> kho_test_restore_data.isra.0 (section: .init.text)
> 
> Introduced by commit
> 
>   c2d288f7ab13 ("kho: add test for kexec handover")

This should fix it. Andrew can you please add it as a fixup?

diff --git a/lib/test_kho.c b/lib/test_kho.c
index f5fe39c7c2b1..c2eb899c3b45 100644
--- a/lib/test_kho.c
+++ b/lib/test_kho.c
@@ -194,7 +194,7 @@ static int kho_test_save(void)
 	return register_kho_notifier(&kho_test_nb);
 }
 
-static int __init kho_test_restore_data(const void *fdt, int node)
+static int kho_test_restore_data(const void *fdt, int node)
 {
 	const unsigned int *nr_folios;
 	const phys_addr_t *folios_info;
 
> -- 
> Cheers,
> Stephen Rothwell

-- 
Sincerely yours,
Mike.

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* linux-next: build warning after merge of the mm-nonmm-unstable tree
@ 2025-11-26  1:55 Stephen Rothwell
  2025-11-26 13:55 ` Breno Leitao
  0 siblings, 1 reply; 5+ messages in thread
From: Stephen Rothwell @ 2025-11-26  1:55 UTC (permalink / raw)
  To: Andrew Morton
  Cc: Breno Leitao, Linux Kernel Mailing List, Linux Next Mailing List

[-- Attachment #1: Type: text/plain, Size: 370 bytes --]

Hi all,

After merging the mm-nonmm-unstable tree, today's linux-next build
(htmldocs) produced this warning:

Documentation/driver-api/hw-recoverable-errors.rst: WARNING: document isn't included in any toctree [toc.not_included]

Introduced by commit

  c03fb5253a03 ("vmcoreinfo: track and log recoverable hardware errors")

-- 
Cheers,
Stephen Rothwell

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: linux-next: build warning after merge of the mm-nonmm-unstable tree
  2025-11-26  1:55 linux-next: build warning after merge of the mm-nonmm-unstable tree Stephen Rothwell
@ 2025-11-26 13:55 ` Breno Leitao
  2025-11-26 16:44   ` Andrew Morton
  0 siblings, 1 reply; 5+ messages in thread
From: Breno Leitao @ 2025-11-26 13:55 UTC (permalink / raw)
  To: Stephen Rothwell
  Cc: Andrew Morton, Linux Kernel Mailing List, Linux Next Mailing List

On Wed, Nov 26, 2025 at 12:55:56PM +1100, Stephen Rothwell wrote:
> Hi all,
> 
> After merging the mm-nonmm-unstable tree, today's linux-next build
> (htmldocs) produced this warning:
> 
> Documentation/driver-api/hw-recoverable-errors.rst: WARNING: document isn't included in any toctree [toc.not_included]
> 
> Introduced by commit
> 
>   c03fb5253a03 ("vmcoreinfo: track and log recoverable hardware errors")

Thanks for the report, this is my fault, and I am working on it.

Andrew,

Do you want an additional commit or should I respin the previous one?

Thanks,
--breno

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: linux-next: build warning after merge of the mm-nonmm-unstable tree
  2025-11-26 13:55 ` Breno Leitao
@ 2025-11-26 16:44   ` Andrew Morton
  0 siblings, 0 replies; 5+ messages in thread
From: Andrew Morton @ 2025-11-26 16:44 UTC (permalink / raw)
  To: Breno Leitao
  Cc: Stephen Rothwell, Linux Kernel Mailing List,
	Linux Next Mailing List

On Wed, 26 Nov 2025 05:55:36 -0800 Breno Leitao <leitao@debian•org> wrote:

> On Wed, Nov 26, 2025 at 12:55:56PM +1100, Stephen Rothwell wrote:
> > Hi all,
> > 
> > After merging the mm-nonmm-unstable tree, today's linux-next build
> > (htmldocs) produced this warning:
> > 
> > Documentation/driver-api/hw-recoverable-errors.rst: WARNING: document isn't included in any toctree [toc.not_included]
> > 
> > Introduced by commit
> > 
> >   c03fb5253a03 ("vmcoreinfo: track and log recoverable hardware errors")
> 
> Thanks for the report, this is my fault, and I am working on it.
> 
> Andrew,
> 
> Do you want an additional commit or should I respin the previous one?

Either is fine, thanks.  I think a little fixup is kinder to those who
have already reviewed the original patch.  I'll squash such a fixup
before sending it upstream.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2025-11-26 16:44 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-26  1:55 linux-next: build warning after merge of the mm-nonmm-unstable tree Stephen Rothwell
2025-11-26 13:55 ` Breno Leitao
2025-11-26 16:44   ` Andrew Morton
  -- strict thread matches above, loose matches on Subject: below --
2025-07-29  5:00 Stephen Rothwell
2025-07-29  9:14 ` Mike Rapoport

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox