* linux-next: manual merge of the paulmck tree with the mm-nonmm-unstable tree
@ 2025-07-29 0:42 Stephen Rothwell
2025-07-29 4:28 ` Paul E. McKenney
2025-07-31 1:07 ` Stephen Rothwell
0 siblings, 2 replies; 4+ messages in thread
From: Stephen Rothwell @ 2025-07-29 0:42 UTC (permalink / raw)
To: Paul E. McKenney, Andrew Morton
Cc: Linux Kernel Mailing List, Linux Next Mailing List,
Mike Rapoport (Microsoft)
[-- Attachment #1: Type: text/plain, Size: 2104 bytes --]
Hi all,
Today's linux-next merge of the paulmck tree got a conflict in:
lib/Kconfig.debug
between commit:
c2d288f7ab13 ("kho: add test for kexec handover")
from the mm-nonmm-unstable tree and commit:
d19e9fa61f60 ("lib: Add trivial kunit test for ratelimit")
from the paulmck tree.
I fixed it up (see below) and can carry the fix as necessary. This
is now fixed as far as linux-next is concerned, but any non trivial
conflicts should be mentioned to your upstream maintainer when your tree
is submitted for merging. You may also want to consider cooperating
with the maintainer of the conflicting tree to minimise any particularly
complex conflicts.
--
Cheers,
Stephen Rothwell
diff --cc lib/Kconfig.debug
index 54f11c2713b9,d69d27f80834..000000000000
--- a/lib/Kconfig.debug
+++ b/lib/Kconfig.debug
@@@ -3235,27 -3225,17 +3235,38 @@@ config TEST_OBJPOO
If unsure, say N.
+config TEST_KEXEC_HANDOVER
+ bool "Test for Kexec HandOver"
+ default n
+ depends on KEXEC_HANDOVER
+ help
+ This option enables test for Kexec HandOver (KHO).
+ The test consists of two parts: saving kernel data before kexec and
+ restoring the data after kexec and verifying that it was properly
+ handed over. This test module creates and saves data on the boot of
+ the first kernel and restores and verifies the data on the boot of
+ kexec'ed kernel.
+
+ For detailed documentation about KHO, see Documentation/core-api/kho.
+
+ To run the test run:
+
+ tools/testing/selftests/kho/vmtest.sh -h
+
+ If unsure, say N.
+
+
+ config RATELIMIT_KUNIT_TEST
+ tristate "KUnit Test for correctness and stress of ratelimit" if !KUNIT_ALL_TESTS
+ depends on KUNIT
+ default KUNIT_ALL_TESTS
+ help
+ This builds the "test_ratelimit" module that should be used
+ for correctness verification and concurrent testings of rate
+ limiting.
+
+ If unsure, say N.
+
config INT_POW_KUNIT_TEST
tristate "Integer exponentiation (int_pow) test" if !KUNIT_ALL_TESTS
depends on KUNIT
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: linux-next: manual merge of the paulmck tree with the mm-nonmm-unstable tree
2025-07-29 0:42 linux-next: manual merge of the paulmck tree with the mm-nonmm-unstable tree Stephen Rothwell
@ 2025-07-29 4:28 ` Paul E. McKenney
2025-07-29 8:02 ` Mike Rapoport
2025-07-31 1:07 ` Stephen Rothwell
1 sibling, 1 reply; 4+ messages in thread
From: Paul E. McKenney @ 2025-07-29 4:28 UTC (permalink / raw)
To: Stephen Rothwell
Cc: Andrew Morton, Linux Kernel Mailing List, Linux Next Mailing List,
Mike Rapoport (Microsoft)
On Tue, Jul 29, 2025 at 10:42:45AM +1000, Stephen Rothwell wrote:
> Hi all,
>
> Today's linux-next merge of the paulmck tree got a conflict in:
>
> lib/Kconfig.debug
>
> between commit:
>
> c2d288f7ab13 ("kho: add test for kexec handover")
>
> from the mm-nonmm-unstable tree and commit:
>
> d19e9fa61f60 ("lib: Add trivial kunit test for ratelimit")
>
> from the paulmck tree.
>
> I fixed it up (see below) and can carry the fix as necessary. This
> is now fixed as far as linux-next is concerned, but any non trivial
> conflicts should be mentioned to your upstream maintainer when your tree
> is submitted for merging. You may also want to consider cooperating
> with the maintainer of the conflicting tree to minimise any particularly
> complex conflicts.
Thank you, and this looks plausible to me.
There is an extra blank line, but worse things could happen.
Thanx, Paul
> --
> Cheers,
> Stephen Rothwell
>
> diff --cc lib/Kconfig.debug
> index 54f11c2713b9,d69d27f80834..000000000000
> --- a/lib/Kconfig.debug
> +++ b/lib/Kconfig.debug
> @@@ -3235,27 -3225,17 +3235,38 @@@ config TEST_OBJPOO
>
> If unsure, say N.
>
> +config TEST_KEXEC_HANDOVER
> + bool "Test for Kexec HandOver"
> + default n
> + depends on KEXEC_HANDOVER
> + help
> + This option enables test for Kexec HandOver (KHO).
> + The test consists of two parts: saving kernel data before kexec and
> + restoring the data after kexec and verifying that it was properly
> + handed over. This test module creates and saves data on the boot of
> + the first kernel and restores and verifies the data on the boot of
> + kexec'ed kernel.
> +
> + For detailed documentation about KHO, see Documentation/core-api/kho.
> +
> + To run the test run:
> +
> + tools/testing/selftests/kho/vmtest.sh -h
> +
> + If unsure, say N.
> +
> +
> + config RATELIMIT_KUNIT_TEST
> + tristate "KUnit Test for correctness and stress of ratelimit" if !KUNIT_ALL_TESTS
> + depends on KUNIT
> + default KUNIT_ALL_TESTS
> + help
> + This builds the "test_ratelimit" module that should be used
> + for correctness verification and concurrent testings of rate
> + limiting.
> +
> + If unsure, say N.
> +
> config INT_POW_KUNIT_TEST
> tristate "Integer exponentiation (int_pow) test" if !KUNIT_ALL_TESTS
> depends on KUNIT
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: linux-next: manual merge of the paulmck tree with the mm-nonmm-unstable tree
2025-07-29 4:28 ` Paul E. McKenney
@ 2025-07-29 8:02 ` Mike Rapoport
0 siblings, 0 replies; 4+ messages in thread
From: Mike Rapoport @ 2025-07-29 8:02 UTC (permalink / raw)
To: Paul E. McKenney
Cc: Stephen Rothwell, Andrew Morton, Linux Kernel Mailing List,
Linux Next Mailing List
Hi Stephen,
On Mon, Jul 28, 2025 at 09:28:08PM -0700, Paul E. McKenney wrote:
> On Tue, Jul 29, 2025 at 10:42:45AM +1000, Stephen Rothwell wrote:
> > Hi all,
> >
> > Today's linux-next merge of the paulmck tree got a conflict in:
> >
> > lib/Kconfig.debug
> >
> > between commit:
> >
> > c2d288f7ab13 ("kho: add test for kexec handover")
> >
> > from the mm-nonmm-unstable tree and commit:
> >
> > d19e9fa61f60 ("lib: Add trivial kunit test for ratelimit")
> >
> > from the paulmck tree.
> >
> > I fixed it up (see below) and can carry the fix as necessary. This
> > is now fixed as far as linux-next is concerned, but any non trivial
> > conflicts should be mentioned to your upstream maintainer when your tree
> > is submitted for merging. You may also want to consider cooperating
> > with the maintainer of the conflicting tree to minimise any particularly
> > complex conflicts.
>
> Thank you, and this looks plausible to me.
>
> There is an extra blank line, but worse things could happen.
Yeah, what Paul said :)
> Thanx, Paul
>
> > --
> > Cheers,
> > Stephen Rothwell
> >
--
Sincerely yours,
Mike.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: linux-next: manual merge of the paulmck tree with the mm-nonmm-unstable tree
2025-07-29 0:42 linux-next: manual merge of the paulmck tree with the mm-nonmm-unstable tree Stephen Rothwell
2025-07-29 4:28 ` Paul E. McKenney
@ 2025-07-31 1:07 ` Stephen Rothwell
1 sibling, 0 replies; 4+ messages in thread
From: Stephen Rothwell @ 2025-07-31 1:07 UTC (permalink / raw)
To: Andrew Morton
Cc: Paul E. McKenney, Linux Kernel Mailing List,
Linux Next Mailing List, Mike Rapoport (Microsoft)
[-- Attachment #1: Type: text/plain, Size: 2400 bytes --]
Hi all,
On Tue, 29 Jul 2025 10:42:45 +1000 Stephen Rothwell <sfr@canb.auug.org.au> wrote:
>
> Today's linux-next merge of the paulmck tree got a conflict in:
>
> lib/Kconfig.debug
>
> between commit:
>
> c2d288f7ab13 ("kho: add test for kexec handover")
>
> from the mm-nonmm-unstable tree and commit:
>
> d19e9fa61f60 ("lib: Add trivial kunit test for ratelimit")
>
> from the paulmck tree.
>
> I fixed it up (see below) and can carry the fix as necessary. This
> is now fixed as far as linux-next is concerned, but any non trivial
> conflicts should be mentioned to your upstream maintainer when your tree
> is submitted for merging. You may also want to consider cooperating
> with the maintainer of the conflicting tree to minimise any particularly
> complex conflicts.
>
>
> diff --cc lib/Kconfig.debug
> index 54f11c2713b9,d69d27f80834..000000000000
> --- a/lib/Kconfig.debug
> +++ b/lib/Kconfig.debug
> @@@ -3235,27 -3225,17 +3235,38 @@@ config TEST_OBJPOO
>
> If unsure, say N.
>
> +config TEST_KEXEC_HANDOVER
> + bool "Test for Kexec HandOver"
> + default n
> + depends on KEXEC_HANDOVER
> + help
> + This option enables test for Kexec HandOver (KHO).
> + The test consists of two parts: saving kernel data before kexec and
> + restoring the data after kexec and verifying that it was properly
> + handed over. This test module creates and saves data on the boot of
> + the first kernel and restores and verifies the data on the boot of
> + kexec'ed kernel.
> +
> + For detailed documentation about KHO, see Documentation/core-api/kho.
> +
> + To run the test run:
> +
> + tools/testing/selftests/kho/vmtest.sh -h
> +
> + If unsure, say N.
> +
> +
> + config RATELIMIT_KUNIT_TEST
> + tristate "KUnit Test for correctness and stress of ratelimit" if !KUNIT_ALL_TESTS
> + depends on KUNIT
> + default KUNIT_ALL_TESTS
> + help
> + This builds the "test_ratelimit" module that should be used
> + for correctness verification and concurrent testings of rate
> + limiting.
> +
> + If unsure, say N.
> +
> config INT_POW_KUNIT_TEST
> tristate "Integer exponentiation (int_pow) test" if !KUNIT_ALL_TESTS
> depends on KUNIT
This is now a conflict between the mm-nonmm-unstable tree and Linus' tree.
--
Cheers,
Stephen Rothwell
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-07-31 1:07 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-29 0:42 linux-next: manual merge of the paulmck tree with the mm-nonmm-unstable tree Stephen Rothwell
2025-07-29 4:28 ` Paul E. McKenney
2025-07-29 8:02 ` Mike Rapoport
2025-07-31 1:07 ` Stephen Rothwell
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).