public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* linux-next: manual merge of the async_tx tree with the arm tree
@ 2010-07-27  2:08 Stephen Rothwell
  2010-07-28  3:58 ` Rabin VINCENT
  2010-07-28  7:11 ` Dan Williams
  0 siblings, 2 replies; 7+ messages in thread
From: Stephen Rothwell @ 2010-07-27  2:08 UTC (permalink / raw)
  To: Dan Williams
  Cc: linux-next, linux-kernel, Rabin Vincent, Russell King,
	Jonas Aaberg, Linus Walleij

Hi Dan,

Today's linux-next merge of the async_tx tree got a conflict in
arch/arm/mach-ux500/devices-db8500.c between commit
6055930cba8fdb2c8855b32bae262aaf69c1fdb4 ("ARM: 6266/1: ux500: add
separate irq lists for DB8500 and DB5500") from the arm tree and commit
5aa12e8c9c57741606e52f43e62ab1b9dc8e9dcc ("DMAENGINE: ste_dma40: arch
updates for LCLA and LCPA") from the async_tx tree.

I fixed it up (I think - see below) and can carry the fix as necessary.
-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au

diff --cc arch/arm/mach-ux500/devices-db8500.c
index 654fca9,c62cdbe..0000000
--- a/arch/arm/mach-ux500/devices-db8500.c
+++ b/arch/arm/mach-ux500/devices-db8500.c
@@@ -119,20 -119,15 +119,15 @@@ static struct resource dma40_resources[
  	},
  	[1] = {
  		.start = U8500_DMA_LCPA_BASE,
- 		.end = U8500_DMA_LCPA_BASE + SZ_4K - 1,
+ 		.end   = U8500_DMA_LCPA_BASE + 2 * SZ_1K - 1,
  		.flags = IORESOURCE_MEM,
- 		.name = "lcpa",
+ 		.name  = "lcpa",
  	},
  	[2] = {
- 		.start = U8500_DMA_LCLA_BASE,
- 		.end = U8500_DMA_LCLA_BASE + 16 * 1024 - 1,
- 		.flags = IORESOURCE_MEM,
- 		.name = "lcla",
- 	},
- 	[3] = {
 -		.start = IRQ_DMA,
 -		.end   = IRQ_DMA,
 +		.start = IRQ_DB8500_DMA,
 +		.end   = IRQ_DB8500_DMA,
- 		.flags = IORESOURCE_IRQ}
+ 		.flags = IORESOURCE_IRQ,
+ 	}
  };
  
  /* Default configuration for physcial memcpy */

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

* Re: linux-next: manual merge of the async_tx tree with the arm tree
  2010-07-27  2:08 linux-next: manual merge of the async_tx tree with the arm tree Stephen Rothwell
@ 2010-07-28  3:58 ` Rabin VINCENT
  2010-07-28  4:43   ` Stephen Rothwell
  2010-07-28  7:11 ` Dan Williams
  1 sibling, 1 reply; 7+ messages in thread
From: Rabin VINCENT @ 2010-07-28  3:58 UTC (permalink / raw)
  To: Stephen Rothwell
  Cc: Dan Williams, linux-next@vger.kernel.org,
	linux-kernel@vger.kernel.org, Russell King, Jonas ABERG,
	Linus WALLEIJ

Hi Stephen,

On Tue, Jul 27, 2010 at 04:08:05 +0200, Stephen Rothwell wrote:
> Today's linux-next merge of the async_tx tree got a conflict in
> arch/arm/mach-ux500/devices-db8500.c between commit
> 6055930cba8fdb2c8855b32bae262aaf69c1fdb4 ("ARM: 6266/1: ux500: add
> separate irq lists for DB8500 and DB5500") from the arm tree and commit
> 5aa12e8c9c57741606e52f43e62ab1b9dc8e9dcc ("DMAENGINE: ste_dma40: arch
> updates for LCLA and LCPA") from the async_tx tree.
> 
> I fixed it up (I think - see below) and can carry the fix as necessary.

The fixup is correct, thanks.

Rabin

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

* Re: linux-next: manual merge of the async_tx tree with the arm tree
  2010-07-28  3:58 ` Rabin VINCENT
@ 2010-07-28  4:43   ` Stephen Rothwell
  0 siblings, 0 replies; 7+ messages in thread
From: Stephen Rothwell @ 2010-07-28  4:43 UTC (permalink / raw)
  To: Rabin VINCENT
  Cc: Dan Williams, linux-next@vger.kernel.org,
	linux-kernel@vger.kernel.org, Russell King, Jonas ABERG,
	Linus WALLEIJ

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

Hi Rabin,

On Wed, 28 Jul 2010 09:28:49 +0530 Rabin VINCENT <rabin.vincent@stericsson.com> wrote:
>
> The fixup is correct, thanks.

Thanks for the confirmation.

-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/

[-- Attachment #2: Type: application/pgp-signature, Size: 490 bytes --]

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

* Re: linux-next: manual merge of the async_tx tree with the arm tree
  2010-07-27  2:08 linux-next: manual merge of the async_tx tree with the arm tree Stephen Rothwell
  2010-07-28  3:58 ` Rabin VINCENT
@ 2010-07-28  7:11 ` Dan Williams
  2010-07-28  7:43   ` Russell King
  1 sibling, 1 reply; 7+ messages in thread
From: Dan Williams @ 2010-07-28  7:11 UTC (permalink / raw)
  To: Stephen Rothwell
  Cc: linux-next, linux-kernel, Rabin Vincent, Russell King,
	Jonas Aaberg, Linus Walleij

On Mon, Jul 26, 2010 at 7:08 PM, Stephen Rothwell <sfr@canb.auug.org.au> wrote:
> Hi Dan,
>
> Today's linux-next merge of the async_tx tree got a conflict in
> arch/arm/mach-ux500/devices-db8500.c between commit
> 6055930cba8fdb2c8855b32bae262aaf69c1fdb4 ("ARM: 6266/1: ux500: add
> separate irq lists for DB8500 and DB5500") from the arm tree and commit
> 5aa12e8c9c57741606e52f43e62ab1b9dc8e9dcc ("DMAENGINE: ste_dma40: arch
> updates for LCLA and LCPA") from the async_tx tree.
>
> I fixed it up (I think - see below) and can carry the fix as necessary.
> --

Thanks Stephen!

Russell, the dma40 driver updates and related arch fixups have been
sitting in next for a month, I'd prefer not to lose this baseline.
Assuming this change is brand new any chance the dma40 specific part
of this patch can be peeled off and sent through my tree, or are you
in a similar "can't/won't" rebase position?

--
Dan

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

* Re: linux-next: manual merge of the async_tx tree with the arm tree
  2010-07-28  7:11 ` Dan Williams
@ 2010-07-28  7:43   ` Russell King
  2010-07-28 23:50     ` Linus Walleij
  0 siblings, 1 reply; 7+ messages in thread
From: Russell King @ 2010-07-28  7:43 UTC (permalink / raw)
  To: Dan Williams
  Cc: Stephen Rothwell, linux-next, linux-kernel, Rabin Vincent,
	Jonas Aaberg, Linus Walleij

On Wed, Jul 28, 2010 at 12:11:19AM -0700, Dan Williams wrote:
> On Mon, Jul 26, 2010 at 7:08 PM, Stephen Rothwell <sfr@canb.auug.org.au> wrote:
> > Hi Dan,
> >
> > Today's linux-next merge of the async_tx tree got a conflict in
> > arch/arm/mach-ux500/devices-db8500.c between commit
> > 6055930cba8fdb2c8855b32bae262aaf69c1fdb4 ("ARM: 6266/1: ux500: add
> > separate irq lists for DB8500 and DB5500") from the arm tree and commit
> > 5aa12e8c9c57741606e52f43e62ab1b9dc8e9dcc ("DMAENGINE: ste_dma40: arch
> > updates for LCLA and LCPA") from the async_tx tree.
> >
> > I fixed it up (I think - see below) and can carry the fix as necessary.
> > --
> 
> Thanks Stephen!
> 
> Russell, the dma40 driver updates and related arch fixups have been
> sitting in next for a month, I'd prefer not to lose this baseline.
> Assuming this change is brand new any chance the dma40 specific part
> of this patch can be peeled off and sent through my tree, or are you
> in a similar "can't/won't" rebase position?

I don't see how the change in the ARM tree could be reasonably split.
Up to Rabin/Linus to decide what they want to do about this.

-- 
Russell King
 Linux kernel    2.6 ARM Linux   - http://www.arm.linux.org.uk/
 maintainer of:

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

* Re: linux-next: manual merge of the async_tx tree with the arm tree
  2010-07-28  7:43   ` Russell King
@ 2010-07-28 23:50     ` Linus Walleij
  2010-08-03  8:09       ` Dan Williams
  0 siblings, 1 reply; 7+ messages in thread
From: Linus Walleij @ 2010-07-28 23:50 UTC (permalink / raw)
  To: Russell King, Dan Williams, Stephen Rothwell
  Cc: linux-next, linux-kernel, Rabin Vincent, Jonas Aaberg

2010/7/28 Russell King <rmk@arm.linux.org.uk>:
> On Wed, Jul 28, 2010 at 12:11:19AM -0700, Dan Williams wrote:
>> On Mon, Jul 26, 2010 at 7:08 PM, Stephen Rothwell <sfr@canb.auug.org.au> wrote:
>> > Hi Dan,
>> >
>> > Today's linux-next merge of the async_tx tree got a conflict in
>> > arch/arm/mach-ux500/devices-db8500.c between commit
>> > 6055930cba8fdb2c8855b32bae262aaf69c1fdb4 ("ARM: 6266/1: ux500: add
>> > separate irq lists for DB8500 and DB5500") from the arm tree and commit
>> > 5aa12e8c9c57741606e52f43e62ab1b9dc8e9dcc ("DMAENGINE: ste_dma40: arch
>> > updates for LCLA and LCPA") from the async_tx tree.
>> >
>> > I fixed it up (I think - see below) and can carry the fix as necessary.
>> > --
>>
>> Thanks Stephen!
>>
>> Russell, the dma40 driver updates and related arch fixups have been
>> sitting in next for a month, I'd prefer not to lose this baseline.
>> Assuming this change is brand new any chance the dma40 specific part
>> of this patch can be peeled off and sent through my tree, or are you
>> in a similar "can't/won't" rebase position?
>
> I don't see how the change in the ARM tree could be reasonably split.
> Up to Rabin/Linus to decide what they want to do about this.

Actually the way subsystem maintainers fix up conflicts and resolve them
is a bit of opaque to me, I'd be happy to help in any way possible.

Isn't it so that whoever hits the merge window first goes in and the
other apply Stephens patch before issuing any pull request and be
done with it? That was my naïve idea about these things...

Yours,
Linus Walleij

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

* Re: linux-next: manual merge of the async_tx tree with the arm tree
  2010-07-28 23:50     ` Linus Walleij
@ 2010-08-03  8:09       ` Dan Williams
  0 siblings, 0 replies; 7+ messages in thread
From: Dan Williams @ 2010-08-03  8:09 UTC (permalink / raw)
  To: Linus Walleij
  Cc: Russell King, Stephen Rothwell, linux-next, linux-kernel,
	Rabin Vincent, Jonas Aaberg

On Wed, Jul 28, 2010 at 4:50 PM, Linus Walleij
<linus.ml.walleij@gmail.com> wrote:
> 2010/7/28 Russell King <rmk@arm.linux.org.uk>:
>> On Wed, Jul 28, 2010 at 12:11:19AM -0700, Dan Williams wrote:
>>> On Mon, Jul 26, 2010 at 7:08 PM, Stephen Rothwell <sfr@canb.auug.org.au> wrote:
>>> > Hi Dan,
>>> >
>>> > Today's linux-next merge of the async_tx tree got a conflict in
>>> > arch/arm/mach-ux500/devices-db8500.c between commit
>>> > 6055930cba8fdb2c8855b32bae262aaf69c1fdb4 ("ARM: 6266/1: ux500: add
>>> > separate irq lists for DB8500 and DB5500") from the arm tree and commit
>>> > 5aa12e8c9c57741606e52f43e62ab1b9dc8e9dcc ("DMAENGINE: ste_dma40: arch
>>> > updates for LCLA and LCPA") from the async_tx tree.
>>> >
>>> > I fixed it up (I think - see below) and can carry the fix as necessary.
>>> > --
>>>
>>> Thanks Stephen!
>>>
>>> Russell, the dma40 driver updates and related arch fixups have been
>>> sitting in next for a month, I'd prefer not to lose this baseline.
>>> Assuming this change is brand new any chance the dma40 specific part
>>> of this patch can be peeled off and sent through my tree, or are you
>>> in a similar "can't/won't" rebase position?
>>
>> I don't see how the change in the ARM tree could be reasonably split.
>> Up to Rabin/Linus to decide what they want to do about this.
>
> Actually the way subsystem maintainers fix up conflicts and resolve them
> is a bit of opaque to me, I'd be happy to help in any way possible.
>
> Isn't it so that whoever hits the merge window first goes in and the
> other apply Stephens patch before issuing any pull request and be
> done with it? That was my naïve idea about these things...
>

It's a bag of dirty choices:

1/ Do nothing: LinusT will need to fix up the conflict in the same way
that Stephen has done.
2/ Drop the new patch from the ARM tree as the conflict could have
been seen ahead of time and send it later in the merge window after
async_tx.git has been merged,  but this might involve rebasing the ARM
tree.
3/ Back merge the ARM tree after it goes upstream so the conflict is
resolved before Linus pulls async_tx.git, but this makes the history
ugly
4/ Rewind the async_tx.git tree so we at least keep the same branch
point, but this still screws up people who use git pull to track
async_tx.git.

Option 1 is probably the lesser evil as Linus has said he does not
mind the occasional conflict, but it still feels wrong to push any
pain upstream when the conflict could have been seen ahead of time.

--
Dan

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

end of thread, other threads:[~2010-08-03  8:09 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-27  2:08 linux-next: manual merge of the async_tx tree with the arm tree Stephen Rothwell
2010-07-28  3:58 ` Rabin VINCENT
2010-07-28  4:43   ` Stephen Rothwell
2010-07-28  7:11 ` Dan Williams
2010-07-28  7:43   ` Russell King
2010-07-28 23:50     ` Linus Walleij
2010-08-03  8:09       ` Dan Williams

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