All of lore.kernel.org
 help / color / mirror / Atom feed
* linux-next: manual merge of the char-misc tree with the rust tree
@ 2026-08-11 15:15 Mark Brown
  2026-08-11 16:22 ` Carlos Llamas
  0 siblings, 1 reply; 3+ messages in thread
From: Mark Brown @ 2026-08-11 15:15 UTC (permalink / raw)
  To: Greg KH, Arnd Bergmann
  Cc: Alice Ryhl, Carlos Llamas, Greg Kroah-Hartman,
	Linux Kernel Mailing List, Linux Next Mailing List, Miguel Ojeda,
	Mukesh Kumar Chaurasiya

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

Hi all,

Today's linux-next merge of the char-misc tree got a conflict in:

  rust/uapi/uapi_helper.h

between commit:

  cdfcaa36ac93a ("rust: uapi: replace direct asm-generic/ioctl.h include with linux/ioctl.h")

from the rust tree and commit:

  f14e0c8183bc7 ("rust_binder: report netlink transactions")

from the char-misc 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 include/uapi/linux/kvm.h
index 70e36e6a0ad4b,9fc8dfdfd65ff..0000000000000
--- a/include/uapi/linux/kvm.h
+++ b/include/uapi/linux/kvm.h
@@@ -997,7 -997,7 +997,8 @@@ struct kvm_enable_cap 
  #define KVM_CAP_S390_KEYOP 247
  #define KVM_CAP_S390_VSIE_ESAMODE 248
  #define KVM_CAP_S390_HPAGE_2G 249
 -#define KVM_CAP_ARM_PMU_V3_STRICT 250
 +#define KVM_CAP_PPC_COMPAT_CAPS 250
++#define KVM_CAP_ARM_PMU_V3_STRICT 251
  
  struct kvm_irq_routing_irqchip {
  	__u32 irqchip;

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

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

* Re: linux-next: manual merge of the char-misc tree with the rust tree
  2026-08-11 15:15 linux-next: manual merge of the char-misc tree with the rust tree Mark Brown
@ 2026-08-11 16:22 ` Carlos Llamas
  2026-08-11 17:02   ` Mark Brown
  0 siblings, 1 reply; 3+ messages in thread
From: Carlos Llamas @ 2026-08-11 16:22 UTC (permalink / raw)
  To: Mark Brown
  Cc: Greg KH, Arnd Bergmann, Alice Ryhl, Greg Kroah-Hartman,
	Linux Kernel Mailing List, Linux Next Mailing List, Miguel Ojeda,
	Mukesh Kumar Chaurasiya

On Tue, Aug 11, 2026 at 04:15:34PM +0100, Mark Brown wrote:
> Hi all,
> 
> Today's linux-next merge of the char-misc tree got a conflict in:
> 
>   rust/uapi/uapi_helper.h
> 
> between commit:
> 
>   cdfcaa36ac93a ("rust: uapi: replace direct asm-generic/ioctl.h include with linux/ioctl.h")
> 
> from the rust tree and commit:
> 
>   f14e0c8183bc7 ("rust_binder: report netlink transactions")

I don't think this commit touches the file mentioned below. Maybe the
conflict was in rust/uapi/uapi_helper.h with the header includes?


> 
> from the char-misc 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 include/uapi/linux/kvm.h
> index 70e36e6a0ad4b,9fc8dfdfd65ff..0000000000000
> --- a/include/uapi/linux/kvm.h
> +++ b/include/uapi/linux/kvm.h
> @@@ -997,7 -997,7 +997,8 @@@ struct kvm_enable_cap 
>   #define KVM_CAP_S390_KEYOP 247
>   #define KVM_CAP_S390_VSIE_ESAMODE 248
>   #define KVM_CAP_S390_HPAGE_2G 249
>  -#define KVM_CAP_ARM_PMU_V3_STRICT 250
>  +#define KVM_CAP_PPC_COMPAT_CAPS 250
> ++#define KVM_CAP_ARM_PMU_V3_STRICT 251
>   
>   struct kvm_irq_routing_irqchip {
>   	__u32 irqchip;



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

* Re: linux-next: manual merge of the char-misc tree with the rust tree
  2026-08-11 16:22 ` Carlos Llamas
@ 2026-08-11 17:02   ` Mark Brown
  0 siblings, 0 replies; 3+ messages in thread
From: Mark Brown @ 2026-08-11 17:02 UTC (permalink / raw)
  To: Carlos Llamas
  Cc: Greg KH, Arnd Bergmann, Alice Ryhl, Greg Kroah-Hartman,
	Linux Kernel Mailing List, Linux Next Mailing List, Miguel Ojeda,
	Mukesh Kumar Chaurasiya

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

On Tue, Aug 11, 2026 at 04:22:13PM +0000, Carlos Llamas wrote:
> On Tue, Aug 11, 2026 at 04:15:34PM +0100, Mark Brown wrote:

> > Today's linux-next merge of the char-misc tree got a conflict in:
> > 
> >   rust/uapi/uapi_helper.h

...

> > from the rust tree and commit:

> >   f14e0c8183bc7 ("rust_binder: report netlink transactions")

> I don't think this commit touches the file mentioned below. Maybe the
> conflict was in rust/uapi/uapi_helper.h with the header includes?

Yes, sorry, forgot to update the diff before sending.

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

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

end of thread, other threads:[~2026-08-11 17:02 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-11 15:15 linux-next: manual merge of the char-misc tree with the rust tree Mark Brown
2026-08-11 16:22 ` Carlos Llamas
2026-08-11 17:02   ` Mark Brown

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.