All of lore.kernel.org
 help / color / mirror / Atom feed
* linux-next: manual merge of the parisc-hd tree with the asm-generic tree
@ 2022-02-28  0:45 Stephen Rothwell
  2022-03-22  0:09 ` Stephen Rothwell
  0 siblings, 1 reply; 9+ messages in thread
From: Stephen Rothwell @ 2022-02-28  0:45 UTC (permalink / raw)
  To: Helge Deller, Parisc List, Arnd Bergmann
  Cc: Linux Kernel Mailing List, Linux Next Mailing List

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

Hi all,

Today's linux-next merge of the parisc-hd tree got a conflict in:

  arch/parisc/lib/memcpy.c

between commit:

  967747bbc084 ("uaccess: remove CONFIG_SET_FS")

from the asm-generic tree and commit:

  d4a767ea8b0e ("parisc: Use constants to encode the space registers like SR_KERNEL")

from the parisc-hd tree.

I fixed it up (I just used the latter) 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

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

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

* Re: linux-next: manual merge of the parisc-hd tree with the asm-generic tree
  2022-02-28  0:45 linux-next: manual merge of the parisc-hd tree with the asm-generic tree Stephen Rothwell
@ 2022-03-22  0:09 ` Stephen Rothwell
  2022-03-22  7:34   ` Helge Deller
  0 siblings, 1 reply; 9+ messages in thread
From: Stephen Rothwell @ 2022-03-22  0:09 UTC (permalink / raw)
  To: Arnd Bergmann
  Cc: Helge Deller, Parisc List, Linux Kernel Mailing List,
	Linux Next Mailing List

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

Hi all,

On Mon, 28 Feb 2022 11:45:23 +1100 Stephen Rothwell <sfr@canb.auug.org.au> wrote:
>
> Today's linux-next merge of the parisc-hd tree got a conflict in:
> 
>   arch/parisc/lib/memcpy.c
> 
> between commit:
> 
>   967747bbc084 ("uaccess: remove CONFIG_SET_FS")
> 
> from the asm-generic tree and commit:
> 
>   d4a767ea8b0e ("parisc: Use constants to encode the space registers like SR_KERNEL")
> 
> from the parisc-hd tree.

This is now a conflict between the asm-generic tree and commit

  360bd6c65807 ("parisc: Use constants to encode the space registers like SR_KERNEL")

in Linus' tree.

-- 
Cheers,
Stephen Rothwell

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

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

* Re: linux-next: manual merge of the parisc-hd tree with the asm-generic tree
  2022-03-22  0:09 ` Stephen Rothwell
@ 2022-03-22  7:34   ` Helge Deller
  2022-03-22 17:06     ` Arnd Bergmann
  0 siblings, 1 reply; 9+ messages in thread
From: Helge Deller @ 2022-03-22  7:34 UTC (permalink / raw)
  To: Arnd Bergmann, Stephen Rothwell
  Cc: Parisc List, Linux Kernel Mailing List, Linux Next Mailing List

On 3/22/22 01:09, Stephen Rothwell wrote:
> Hi all,
>
> On Mon, 28 Feb 2022 11:45:23 +1100 Stephen Rothwell <sfr@canb.auug.org.au> wrote:
>>
>> Today's linux-next merge of the parisc-hd tree got a conflict in:
>>
>>   arch/parisc/lib/memcpy.c
>>
>> between commit:
>>
>>   967747bbc084 ("uaccess: remove CONFIG_SET_FS")
>>
>> from the asm-generic tree and commit:
>>
>>   d4a767ea8b0e ("parisc: Use constants to encode the space registers like SR_KERNEL")
>>
>> from the parisc-hd tree.
>
> This is now a conflict between the asm-generic tree and commit
>
>   360bd6c65807 ("parisc: Use constants to encode the space registers like SR_KERNEL")
>
> in Linus' tree.


Arnd,
can you please drop the changes in your asm-generic tree for
arch/parisc/lib/memcpy.c
They are not needed any more.

Helge

diff --git a/arch/parisc/lib/memcpy.c b/arch/parisc/lib/memcpy.c
index 468704ce8a1c..ea70a0e08321 100644
--- a/arch/parisc/lib/memcpy.c
+++ b/arch/parisc/lib/memcpy.c
@@ -13,7 +13,7 @@
 #include <linux/compiler.h>
 #include <linux/uaccess.h>

-#define get_user_space() (mfsp(3))
+#define get_user_space() (uaccess_kernel() ? 0 : mfsp(3))





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

* Re: linux-next: manual merge of the parisc-hd tree with the asm-generic tree
  2022-03-22  7:34   ` Helge Deller
@ 2022-03-22 17:06     ` Arnd Bergmann
  2022-03-22 20:01       ` Helge Deller
  0 siblings, 1 reply; 9+ messages in thread
From: Arnd Bergmann @ 2022-03-22 17:06 UTC (permalink / raw)
  To: Helge Deller
  Cc: Arnd Bergmann, Stephen Rothwell, Parisc List,
	Linux Kernel Mailing List, Linux Next Mailing List

On Tue, Mar 22, 2022 at 8:34 AM Helge Deller <deller@gmx.de> wrote:
>
> On 3/22/22 01:09, Stephen Rothwell wrote:
> > Hi all,
> >
> > On Mon, 28 Feb 2022 11:45:23 +1100 Stephen Rothwell <sfr@canb.auug.org.au> wrote:
> >>
> >> Today's linux-next merge of the parisc-hd tree got a conflict in:
> >>
> >>   arch/parisc/lib/memcpy.c
> >>
> >> between commit:
> >>
> >>   967747bbc084 ("uaccess: remove CONFIG_SET_FS")
> >>
> >> from the asm-generic tree and commit:
> >>
> >>   d4a767ea8b0e ("parisc: Use constants to encode the space registers like SR_KERNEL")
> >>
> >> from the parisc-hd tree.
> >
> > This is now a conflict between the asm-generic tree and commit
> >
> >   360bd6c65807 ("parisc: Use constants to encode the space registers like SR_KERNEL")
> >
> > in Linus' tree.
>
>
> Arnd,
> can you please drop the changes in your asm-generic tree for
> arch/parisc/lib/memcpy.c
> They are not needed any more.
>

Sorry I missed that earlier when the conflict happened originally.

I can't really rebase my changes on top of your tree now, and just dropping
the change without a rebase would break mine. I'll make sure to mention
the conflict in the pull request then and have Linus resolve it.

       Arnd

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

* Re: linux-next: manual merge of the parisc-hd tree with the asm-generic tree
  2022-03-22 17:06     ` Arnd Bergmann
@ 2022-03-22 20:01       ` Helge Deller
  0 siblings, 0 replies; 9+ messages in thread
From: Helge Deller @ 2022-03-22 20:01 UTC (permalink / raw)
  To: Arnd Bergmann
  Cc: Stephen Rothwell, Parisc List, Linux Kernel Mailing List,
	Linux Next Mailing List

On 3/22/22 18:06, Arnd Bergmann wrote:
> On Tue, Mar 22, 2022 at 8:34 AM Helge Deller <deller@gmx.de> wrote:
>>
>> On 3/22/22 01:09, Stephen Rothwell wrote:
>>> Hi all,
>>>
>>> On Mon, 28 Feb 2022 11:45:23 +1100 Stephen Rothwell <sfr@canb.auug.org.au> wrote:
>>>>
>>>> Today's linux-next merge of the parisc-hd tree got a conflict in:
>>>>
>>>>   arch/parisc/lib/memcpy.c
>>>>
>>>> between commit:
>>>>
>>>>   967747bbc084 ("uaccess: remove CONFIG_SET_FS")
>>>>
>>>> from the asm-generic tree and commit:
>>>>
>>>>   d4a767ea8b0e ("parisc: Use constants to encode the space registers like SR_KERNEL")
>>>>
>>>> from the parisc-hd tree.
>>>
>>> This is now a conflict between the asm-generic tree and commit
>>>
>>>   360bd6c65807 ("parisc: Use constants to encode the space registers like SR_KERNEL")
>>>
>>> in Linus' tree.
>>
>>
>> Arnd,
>> can you please drop the changes in your asm-generic tree for
>> arch/parisc/lib/memcpy.c
>> They are not needed any more.
>>
>
> Sorry I missed that earlier when the conflict happened originally.
>
> I can't really rebase my changes on top of your tree now, and just dropping
> the change without a rebase would break mine. I'll make sure to mention
> the conflict in the pull request then and have Linus resolve it.

Ok, Thanks!

Helge

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

* Re: linux-next: manual merge of the parisc-hd tree with the asm-generic tree
  2020-12-15  4:45   ` Helge Deller
@ 2020-12-15  5:05     ` Stephen Rothwell
  0 siblings, 0 replies; 9+ messages in thread
From: Stephen Rothwell @ 2020-12-15  5:05 UTC (permalink / raw)
  To: Helge Deller
  Cc: Parisc List, Arnd Bergmann, Linux Kernel Mailing List,
	Linux Next Mailing List

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

Hi Helge,

On Tue, 15 Dec 2020 05:45:49 +0100 Helge Deller <deller@gmx.de> wrote:
>
> I dropped the patch from the parisc-hd tree for now - 
> it needs more work and will not be part of the next merge window.

Thanks for letting me know.

-- 
Cheers,
Stephen Rothwell

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

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

* Re: linux-next: manual merge of the parisc-hd tree with the asm-generic tree
  2020-12-14 19:48 ` Stephen Rothwell
@ 2020-12-15  4:45   ` Helge Deller
  2020-12-15  5:05     ` Stephen Rothwell
  0 siblings, 1 reply; 9+ messages in thread
From: Helge Deller @ 2020-12-15  4:45 UTC (permalink / raw)
  To: Stephen Rothwell, Parisc List, Arnd Bergmann
  Cc: Linux Kernel Mailing List, Linux Next Mailing List


[-- Attachment #1.1: Type: text/plain, Size: 1121 bytes --]

On 12/14/20 8:48 PM, Stephen Rothwell wrote:
> Hi all,
> 
> On Mon, 2 Nov 2020 12:38:41 +1100 Stephen Rothwell <sfr@canb.auug.org.au> wrote:
>>
>> Today's linux-next merge of the parisc-hd tree got a conflict in:
>>
>>   arch/parisc/kernel/time.c
>>
>> between commit:
>>
>>   686092e7daaa ("parisc: use legacy_timer_tick")
>>
>> from the asm-generic tree and commit:
>>
>>   3b7ab4a74a2d ("parisc: Switch to clockevent based timers")
>>
>> from the parisc-hd tree.
>>
>> I fixed it up (I effectively reverted the former commit) 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.
> 
> This is just a reminder that this conflict still exists.

I dropped the patch from the parisc-hd tree for now - 
it needs more work and will not be part of the next merge window.

Thanks,
Helge


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

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

* Re: linux-next: manual merge of the parisc-hd tree with the asm-generic tree
  2020-11-02  1:38 Stephen Rothwell
@ 2020-12-14 19:48 ` Stephen Rothwell
  2020-12-15  4:45   ` Helge Deller
  0 siblings, 1 reply; 9+ messages in thread
From: Stephen Rothwell @ 2020-12-14 19:48 UTC (permalink / raw)
  To: Helge Deller, Parisc List, Arnd Bergmann
  Cc: Linux Kernel Mailing List, Linux Next Mailing List

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

Hi all,

On Mon, 2 Nov 2020 12:38:41 +1100 Stephen Rothwell <sfr@canb.auug.org.au> wrote:
>
> Today's linux-next merge of the parisc-hd tree got a conflict in:
> 
>   arch/parisc/kernel/time.c
> 
> between commit:
> 
>   686092e7daaa ("parisc: use legacy_timer_tick")
> 
> from the asm-generic tree and commit:
> 
>   3b7ab4a74a2d ("parisc: Switch to clockevent based timers")
> 
> from the parisc-hd tree.
> 
> I fixed it up (I effectively reverted the former commit) 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.

This is just a reminder that this conflict still exists.

-- 
Cheers,
Stephen Rothwell

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

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

* linux-next: manual merge of the parisc-hd tree with the asm-generic tree
@ 2020-11-02  1:38 Stephen Rothwell
  2020-12-14 19:48 ` Stephen Rothwell
  0 siblings, 1 reply; 9+ messages in thread
From: Stephen Rothwell @ 2020-11-02  1:38 UTC (permalink / raw)
  To: Helge Deller, Parisc List, Arnd Bergmann
  Cc: Linux Kernel Mailing List, Linux Next Mailing List

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

Hi all,

Today's linux-next merge of the parisc-hd tree got a conflict in:

  arch/parisc/kernel/time.c

between commit:

  686092e7daaa ("parisc: use legacy_timer_tick")

from the asm-generic tree and commit:

  3b7ab4a74a2d ("parisc: Switch to clockevent based timers")

from the parisc-hd tree.

I fixed it up (I effectively reverted the former commit) 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

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

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

end of thread, other threads:[~2022-03-22 20:01 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-28  0:45 linux-next: manual merge of the parisc-hd tree with the asm-generic tree Stephen Rothwell
2022-03-22  0:09 ` Stephen Rothwell
2022-03-22  7:34   ` Helge Deller
2022-03-22 17:06     ` Arnd Bergmann
2022-03-22 20:01       ` Helge Deller
  -- strict thread matches above, loose matches on Subject: below --
2020-11-02  1:38 Stephen Rothwell
2020-12-14 19:48 ` Stephen Rothwell
2020-12-15  4:45   ` Helge Deller
2020-12-15  5:05     ` Stephen Rothwell

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.