* [GIT PULL] omap fixes against v3.11-rc5
@ 2013-08-16 7:19 Tony Lindgren
2013-08-16 21:58 ` Olof Johansson
0 siblings, 1 reply; 5+ messages in thread
From: Tony Lindgren @ 2013-08-16 7:19 UTC (permalink / raw)
To: linux-arm-kernel
The following changes since commit d4e4ab86bcba5a72779c43dc1459f71fea3d89c8:
Linux 3.11-rc5 (2013-08-11 18:04:20 -0700)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v3.11/fixes-against-rc5
for you to fetch changes up to d7641b2087203b971ba4a76ffa4ecfa343b4bce0:
ARM: OMAP: rx51: change musb mode to OTG (2013-08-16 00:13:55 -0700)
----------------------------------------------------------------
Two fixes for Nokia n8x0 USB regressions and update of
Benoit Cousson's email address.
----------------------------------------------------------------
Aaro Koskinen (1):
ARM: OMAP: rx51: change musb mode to OTG
Benoit Cousson (1):
MAINTAINERS: Update email address for Benoit Cousson
Daniel Mack (1):
ARM: OMAP2: fix musb usage for n8x0
MAINTAINERS | 6 +++---
arch/arm/mach-omap2/board-n8x0.c | 4 ----
arch/arm/mach-omap2/board-rx51.c | 2 +-
arch/arm/mach-omap2/usb-musb.c | 5 +----
4 files changed, 5 insertions(+), 12 deletions(-)
^ permalink raw reply [flat|nested] 5+ messages in thread
* [GIT PULL] omap fixes against v3.11-rc5
2013-08-16 7:19 [GIT PULL] omap fixes against v3.11-rc5 Tony Lindgren
@ 2013-08-16 21:58 ` Olof Johansson
2013-08-20 12:32 ` Tony Lindgren
0 siblings, 1 reply; 5+ messages in thread
From: Olof Johansson @ 2013-08-16 21:58 UTC (permalink / raw)
To: linux-arm-kernel
Hi,
On Fri, Aug 16, 2013 at 12:19 AM, Tony Lindgren <tony@atomide.com> wrote:
> The following changes since commit d4e4ab86bcba5a72779c43dc1459f71fea3d89c8:
>
> Linux 3.11-rc5 (2013-08-11 18:04:20 -0700)
>
> are available in the git repository at:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v3.11/fixes-against-rc5
Our current fixes branch is based on -rc4, and I didn't see any of
these commits in linux-next, so I took the liberty to rebase them back
onto our current branch.
I.e. pulled, but rebased.
Thanks,
-Olof
^ permalink raw reply [flat|nested] 5+ messages in thread
* [GIT PULL] omap fixes against v3.11-rc5
2013-08-16 21:58 ` Olof Johansson
@ 2013-08-20 12:32 ` Tony Lindgren
2013-08-22 5:26 ` Olof Johansson
0 siblings, 1 reply; 5+ messages in thread
From: Tony Lindgren @ 2013-08-20 12:32 UTC (permalink / raw)
To: linux-arm-kernel
* Olof Johansson <olof@lixom.net> [130816 15:05]:
>
> Our current fixes branch is based on -rc4, and I didn't see any of
> these commits in linux-next, so I took the liberty to rebase them back
> onto our current branch.
>
> I.e. pulled, but rebased.
Thanks no problem at my end. But to avoid future confusion, what's
the reasoning for rebasing? AFAIK, pulling this in would have just
automatically updated your branch to -rc5, no?
The only time where pulling in a branch based on a later mainline
commit would cause problems is if your branch is based on another
series of patches you want to send separately as then you'd get
all the commits between -rc4 and -rc5 when doing the pull request.
Probably nothing new in this for your, but FYI, you can use pulling
or merging branches as a way of updating your publick branches without
rebasing or adding extra merge commits while keeping the branch
pullable.
Let's assume you have arm-soc/fixes based on -rc4, and -rc5
comes out:
$ git checkout -b my-fixes-of-the-week v3.11-rc5
# apply pending patches
...
$ git checkout arm-soc/fixes
$ git merge my-fixes-of-the-week
And then you have essentially fast forwarded your arm-soc/fixes to
-rc5 and it stays pullable ;)
Regards,
Tony
^ permalink raw reply [flat|nested] 5+ messages in thread
* [GIT PULL] omap fixes against v3.11-rc5
2013-08-20 12:32 ` Tony Lindgren
@ 2013-08-22 5:26 ` Olof Johansson
2013-08-22 7:10 ` Tony Lindgren
0 siblings, 1 reply; 5+ messages in thread
From: Olof Johansson @ 2013-08-22 5:26 UTC (permalink / raw)
To: linux-arm-kernel
On Tue, Aug 20, 2013 at 05:32:32AM -0700, Tony Lindgren wrote:
> * Olof Johansson <olof@lixom.net> [130816 15:05]:
> >
> > Our current fixes branch is based on -rc4, and I didn't see any of
> > these commits in linux-next, so I took the liberty to rebase them back
> > onto our current branch.
> >
> > I.e. pulled, but rebased.
>
> Thanks no problem at my end. But to avoid future confusion, what's
> the reasoning for rebasing? AFAIK, pulling this in would have just
> automatically updated your branch to -rc5, no?
>
> The only time where pulling in a branch based on a later mainline
> commit would cause problems is if your branch is based on another
> series of patches you want to send separately as then you'd get
> all the commits between -rc4 and -rc5 when doing the pull request.
>
> Probably nothing new in this for your, but FYI, you can use pulling
> or merging branches as a way of updating your publick branches without
> rebasing or adding extra merge commits while keeping the branch
> pullable.
>
> Let's assume you have arm-soc/fixes based on -rc4, and -rc5
> comes out:
>
> $ git checkout -b my-fixes-of-the-week v3.11-rc5
> # apply pending patches
> ...
> $ git checkout arm-soc/fixes
> $ git merge my-fixes-of-the-week
>
> And then you have essentially fast forwarded your arm-soc/fixes to
> -rc5 and it stays pullable ;)
Yeah, it's not that we _can't_ pull it in, it's just that we either need to
merge in -rc5 manually first, or otherwise manually verify diffstat since
it'd otherwise cover the full delta.
My request for people to not always eagerly pick up latest -rc as base for
their branches is new for this release cycle, mostly to see how well it works
out. It would keep the history of our arm-soc changes somewhat cleaner than if
we have new -rcs "anchor in" on the graph in multiple locations like we
sometimes do now. But it might just be annoying for everyone to deal with
complying too, so we'll see how it goes.
-Olof
^ permalink raw reply [flat|nested] 5+ messages in thread
* [GIT PULL] omap fixes against v3.11-rc5
2013-08-22 5:26 ` Olof Johansson
@ 2013-08-22 7:10 ` Tony Lindgren
0 siblings, 0 replies; 5+ messages in thread
From: Tony Lindgren @ 2013-08-22 7:10 UTC (permalink / raw)
To: linux-arm-kernel
* Olof Johansson <olof@lixom.net> [130821 22:34]:
> On Tue, Aug 20, 2013 at 05:32:32AM -0700, Tony Lindgren wrote:
> > * Olof Johansson <olof@lixom.net> [130816 15:05]:
> > >
> > > Our current fixes branch is based on -rc4, and I didn't see any of
> > > these commits in linux-next, so I took the liberty to rebase them back
> > > onto our current branch.
> > >
> > > I.e. pulled, but rebased.
> >
> > Thanks no problem at my end. But to avoid future confusion, what's
> > the reasoning for rebasing? AFAIK, pulling this in would have just
> > automatically updated your branch to -rc5, no?
> >
> > The only time where pulling in a branch based on a later mainline
> > commit would cause problems is if your branch is based on another
> > series of patches you want to send separately as then you'd get
> > all the commits between -rc4 and -rc5 when doing the pull request.
> >
> > Probably nothing new in this for your, but FYI, you can use pulling
> > or merging branches as a way of updating your publick branches without
> > rebasing or adding extra merge commits while keeping the branch
> > pullable.
> >
> > Let's assume you have arm-soc/fixes based on -rc4, and -rc5
> > comes out:
> >
> > $ git checkout -b my-fixes-of-the-week v3.11-rc5
> > # apply pending patches
> > ...
> > $ git checkout arm-soc/fixes
> > $ git merge my-fixes-of-the-week
> >
> > And then you have essentially fast forwarded your arm-soc/fixes to
> > -rc5 and it stays pullable ;)
>
> Yeah, it's not that we _can't_ pull it in, it's just that we either need to
> merge in -rc5 manually first, or otherwise manually verify diffstat since
> it'd otherwise cover the full delta.
Hmm sounds like something's not right then, at least for the fixes
branch. If you do the pull request for Linus against -rc5, it should
only show the patches you merged, not the delta from -rc4 to -rc5.
If you mean that you need to be able to diff between the earlier pull
request against -rc4 and the new pull request against -rc5, then that
should work too without showing the full delta of non-arm-soc patches.
For your branches, it should not be necessary to manually merge
any upstream tags, you can just let the branches automatically
get updated when merging in branches and pulling in branches.
Especially for the fixes branch as that should not have dependencies
to other external branches :)
> My request for people to not always eagerly pick up latest -rc as base for
> their branches is new for this release cycle, mostly to see how well it works
> out. It would keep the history of our arm-soc changes somewhat cleaner than if
> we have new -rcs "anchor in" on the graph in multiple locations like we
> sometimes do now. But it might just be annoying for everyone to deal with
> complying too, so we'll see how it goes.
Yes.. I think that's against natural way of developing things as that
requires testing against multiple trees and rebasing patches that
can often introduce new issues.
The issue of generating pull requests when there are dependencies
to earlier branches not yet merged still remains though.
Regards,
Tony
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2013-08-22 7:10 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-16 7:19 [GIT PULL] omap fixes against v3.11-rc5 Tony Lindgren
2013-08-16 21:58 ` Olof Johansson
2013-08-20 12:32 ` Tony Lindgren
2013-08-22 5:26 ` Olof Johansson
2013-08-22 7:10 ` Tony Lindgren
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).