* linux-next: manual merge of the drm-xe tree with Linus' tree
@ 2024-11-25 1:09 Stephen Rothwell
2024-12-16 7:38 ` Stephen Rothwell
0 siblings, 1 reply; 4+ messages in thread
From: Stephen Rothwell @ 2024-11-25 1:09 UTC (permalink / raw)
To: Lucas De Marchi, Thomas Hellström, DRM XE List
Cc: Jani Nikula, Linux Kernel Mailing List, Linux Next Mailing List,
Matt Atwood, Matt Roper
[-- Attachment #1: Type: text/plain, Size: 1557 bytes --]
Hi all,
Today's linux-next merge of the drm-xe tree got a conflict in:
include/drm/intel/xe_pciids.h
between commit:
493454445c95 ("drm/xe: switch to common PCI ID macros")
from Linus' tree and commit:
ae78ec0a52c4 ("drm/xe/ptl: Add another PTL PCI ID")
from the drm-xe tree.
I fixed it up (I deleted the file and added the following merge fix patch)
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.
From: Stephen Rothwell <sfr@canb.auug.org.au>
Date: Mon, 25 Nov 2024 12:05:38 +1100
Subject: [PATCH] fix up for "drm/xe/ptl: Add another PTL PCI ID"
interacting with "drm/xe: switch to common PCI ID macros" from Linus'
tree.
---
include/drm/intel/pciids.h | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/include/drm/intel/pciids.h b/include/drm/intel/pciids.h
index 32480b5563db..7883384acd5e 100644
--- a/include/drm/intel/pciids.h
+++ b/include/drm/intel/pciids.h
@@ -829,6 +829,7 @@
MACRO__(0xB092, ## __VA_ARGS__), \
MACRO__(0xB0A0, ## __VA_ARGS__), \
MACRO__(0xB0A1, ## __VA_ARGS__), \
- MACRO__(0xB0A2, ## __VA_ARGS__)
+ MACRO__(0xB0A2, ## __VA_ARGS__), \
+ MACRO__(0xB0B0, ## __VA_ARGS__)
#endif /* __PCIIDS_H__ */
--
2.45.2
--
Cheers,
Stephen Rothwell
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: linux-next: manual merge of the drm-xe tree with Linus' tree
2024-11-25 1:09 linux-next: manual merge of the drm-xe tree with Linus' tree Stephen Rothwell
@ 2024-12-16 7:38 ` Stephen Rothwell
2025-01-09 5:41 ` Stephen Rothwell
0 siblings, 1 reply; 4+ messages in thread
From: Stephen Rothwell @ 2024-12-16 7:38 UTC (permalink / raw)
To: Dave Airlie
Cc: Lucas De Marchi, Thomas Hellström, DRM XE List, Jani Nikula,
Linux Kernel Mailing List, Linux Next Mailing List, Matt Atwood,
Matt Roper, DRI
[-- Attachment #1: Type: text/plain, Size: 2326 bytes --]
Hi all,
On Mon, 25 Nov 2024 12:09:21 +1100 Stephen Rothwell <sfr@canb.auug.org.au> wrote:
>
> Today's linux-next merge of the drm-xe tree got a conflict in:
>
> include/drm/intel/xe_pciids.h
>
> between commit:
>
> 493454445c95 ("drm/xe: switch to common PCI ID macros")
>
> from Linus' tree and commit:
>
> ae78ec0a52c4 ("drm/xe/ptl: Add another PTL PCI ID")
>
> from the drm-xe tree.
>
> I fixed it up (I deleted the file and added the following merge fix patch)
> 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.
>
> From: Stephen Rothwell <sfr@canb.auug.org.au>
> Date: Mon, 25 Nov 2024 12:05:38 +1100
> Subject: [PATCH] fix up for "drm/xe/ptl: Add another PTL PCI ID"
>
> interacting with "drm/xe: switch to common PCI ID macros" from Linus'
> tree.
> ---
> include/drm/intel/pciids.h | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/include/drm/intel/pciids.h b/include/drm/intel/pciids.h
> index 32480b5563db..7883384acd5e 100644
> --- a/include/drm/intel/pciids.h
> +++ b/include/drm/intel/pciids.h
> @@ -829,6 +829,7 @@
> MACRO__(0xB092, ## __VA_ARGS__), \
> MACRO__(0xB0A0, ## __VA_ARGS__), \
> MACRO__(0xB0A1, ## __VA_ARGS__), \
> - MACRO__(0xB0A2, ## __VA_ARGS__)
> + MACRO__(0xB0A2, ## __VA_ARGS__), \
> + MACRO__(0xB0B0, ## __VA_ARGS__)
>
> #endif /* __PCIIDS_H__ */
> --
> 2.45.2
OK, so commits ae78ec0a52c4 and 493454445c95 were merged in commit
8f109f287fdc ("Merge drm/drm-next into drm-xe-next")
but include/drm/intel/xe_pciids.h was not deleted (it is not longer
referenced anywhere in the tree) and the above patch was not applied :-(
Since then that part of the drm-xe tree has been merged into the drm
tree in commit
bdecb30d579e ("Merge tag 'drm-xe-next-2024-12-11' of https://gitlab.freedesktop.org/drm/xe/kernel into drm-next")
So, include/drm/intel/xe_pciids.h needs to be removed from the drm tree
and the above patch applied there.
--
Cheers,
Stephen Rothwell
[-- 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 drm-xe tree with Linus' tree
2024-12-16 7:38 ` Stephen Rothwell
@ 2025-01-09 5:41 ` Stephen Rothwell
2025-01-09 10:52 ` Jani Nikula
0 siblings, 1 reply; 4+ messages in thread
From: Stephen Rothwell @ 2025-01-09 5:41 UTC (permalink / raw)
To: Dave Airlie
Cc: Lucas De Marchi, Thomas Hellström, DRM XE List, Jani Nikula,
Linux Kernel Mailing List, Linux Next Mailing List, Matt Atwood,
Matt Roper, DRI
[-- Attachment #1: Type: text/plain, Size: 2547 bytes --]
Hi all,
On Mon, 16 Dec 2024 18:38:01 +1100 Stephen Rothwell <sfr@canb.auug.org.au> wrote:
>
> On Mon, 25 Nov 2024 12:09:21 +1100 Stephen Rothwell <sfr@canb.auug.org.au> wrote:
> >
> > Today's linux-next merge of the drm-xe tree got a conflict in:
> >
> > include/drm/intel/xe_pciids.h
> >
> > between commit:
> >
> > 493454445c95 ("drm/xe: switch to common PCI ID macros")
> >
> > from Linus' tree and commit:
> >
> > ae78ec0a52c4 ("drm/xe/ptl: Add another PTL PCI ID")
> >
> > from the drm-xe tree.
> >
> > I fixed it up (I deleted the file and added the following merge fix patch)
> > 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.
> >
> > From: Stephen Rothwell <sfr@canb.auug.org.au>
> > Date: Mon, 25 Nov 2024 12:05:38 +1100
> > Subject: [PATCH] fix up for "drm/xe/ptl: Add another PTL PCI ID"
> >
> > interacting with "drm/xe: switch to common PCI ID macros" from Linus'
> > tree.
> > ---
> > include/drm/intel/pciids.h | 3 ++-
> > 1 file changed, 2 insertions(+), 1 deletion(-)
> >
> > diff --git a/include/drm/intel/pciids.h b/include/drm/intel/pciids.h
> > index 32480b5563db..7883384acd5e 100644
> > --- a/include/drm/intel/pciids.h
> > +++ b/include/drm/intel/pciids.h
> > @@ -829,6 +829,7 @@
> > MACRO__(0xB092, ## __VA_ARGS__), \
> > MACRO__(0xB0A0, ## __VA_ARGS__), \
> > MACRO__(0xB0A1, ## __VA_ARGS__), \
> > - MACRO__(0xB0A2, ## __VA_ARGS__)
> > + MACRO__(0xB0A2, ## __VA_ARGS__), \
> > + MACRO__(0xB0B0, ## __VA_ARGS__)
> >
> > #endif /* __PCIIDS_H__ */
> > --
> > 2.45.2
>
> OK, so commits ae78ec0a52c4 and 493454445c95 were merged in commit
>
> 8f109f287fdc ("Merge drm/drm-next into drm-xe-next")
>
> but include/drm/intel/xe_pciids.h was not deleted (it is not longer
> referenced anywhere in the tree) and the above patch was not applied :-(
>
> Since then that part of the drm-xe tree has been merged into the drm
> tree in commit
>
> bdecb30d579e ("Merge tag 'drm-xe-next-2024-12-11' of https://gitlab.freedesktop.org/drm/xe/kernel into drm-next")
>
> So, include/drm/intel/xe_pciids.h needs to be removed from the drm tree
> and the above patch applied there.
Ping?
--
Cheers,
Stephen Rothwell
[-- 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 drm-xe tree with Linus' tree
2025-01-09 5:41 ` Stephen Rothwell
@ 2025-01-09 10:52 ` Jani Nikula
0 siblings, 0 replies; 4+ messages in thread
From: Jani Nikula @ 2025-01-09 10:52 UTC (permalink / raw)
To: Stephen Rothwell, Dave Airlie
Cc: Lucas De Marchi, Thomas Hellström, DRM XE List,
Linux Kernel Mailing List, Linux Next Mailing List, Matt Atwood,
Matt Roper, DRI
On Thu, 09 Jan 2025, Stephen Rothwell <sfr@canb.auug.org.au> wrote:
> Hi all,
>
> On Mon, 16 Dec 2024 18:38:01 +1100 Stephen Rothwell <sfr@canb.auug.org.au> wrote:
>>
>> On Mon, 25 Nov 2024 12:09:21 +1100 Stephen Rothwell <sfr@canb.auug.org.au> wrote:
>> >
>> > Today's linux-next merge of the drm-xe tree got a conflict in:
>> >
>> > include/drm/intel/xe_pciids.h
>> >
>> > between commit:
>> >
>> > 493454445c95 ("drm/xe: switch to common PCI ID macros")
>> >
>> > from Linus' tree and commit:
>> >
>> > ae78ec0a52c4 ("drm/xe/ptl: Add another PTL PCI ID")
>> >
>> > from the drm-xe tree.
>> >
>> > I fixed it up (I deleted the file and added the following merge fix patch)
>> > 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.
>> >
>> > From: Stephen Rothwell <sfr@canb.auug.org.au>
>> > Date: Mon, 25 Nov 2024 12:05:38 +1100
>> > Subject: [PATCH] fix up for "drm/xe/ptl: Add another PTL PCI ID"
>> >
>> > interacting with "drm/xe: switch to common PCI ID macros" from Linus'
>> > tree.
>> > ---
>> > include/drm/intel/pciids.h | 3 ++-
>> > 1 file changed, 2 insertions(+), 1 deletion(-)
>> >
>> > diff --git a/include/drm/intel/pciids.h b/include/drm/intel/pciids.h
>> > index 32480b5563db..7883384acd5e 100644
>> > --- a/include/drm/intel/pciids.h
>> > +++ b/include/drm/intel/pciids.h
>> > @@ -829,6 +829,7 @@
>> > MACRO__(0xB092, ## __VA_ARGS__), \
>> > MACRO__(0xB0A0, ## __VA_ARGS__), \
>> > MACRO__(0xB0A1, ## __VA_ARGS__), \
>> > - MACRO__(0xB0A2, ## __VA_ARGS__)
>> > + MACRO__(0xB0A2, ## __VA_ARGS__), \
>> > + MACRO__(0xB0B0, ## __VA_ARGS__)
>> >
>> > #endif /* __PCIIDS_H__ */
>> > --
>> > 2.45.2
>>
>> OK, so commits ae78ec0a52c4 and 493454445c95 were merged in commit
>>
>> 8f109f287fdc ("Merge drm/drm-next into drm-xe-next")
>>
>> but include/drm/intel/xe_pciids.h was not deleted (it is not longer
>> referenced anywhere in the tree) and the above patch was not applied :-(
>>
>> Since then that part of the drm-xe tree has been merged into the drm
>> tree in commit
>>
>> bdecb30d579e ("Merge tag 'drm-xe-next-2024-12-11' of https://gitlab.freedesktop.org/drm/xe/kernel into drm-next")
>>
>> So, include/drm/intel/xe_pciids.h needs to be removed from the drm tree
>> and the above patch applied there.
>
> Ping?
Thanks for the ping. See [1].
BR,
Jani.
[1] https://lore.kernel.org/r/20250109105032.2585416-1-jani.nikula@intel.com
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-01-09 10:52 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-25 1:09 linux-next: manual merge of the drm-xe tree with Linus' tree Stephen Rothwell
2024-12-16 7:38 ` Stephen Rothwell
2025-01-09 5:41 ` Stephen Rothwell
2025-01-09 10:52 ` Jani Nikula
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).