* Re: linux-next: build problem with nfs tree (Was: Re: [mmotm][PATCH] fix ia64 build error)
2009-01-16 2:49 ` Stephen Rothwell
@ 2009-01-16 3:41 ` KOSAKI Motohiro
2009-01-16 4:34 ` Stephen Rothwell
2009-01-17 4:43 ` David Howells
2 siblings, 0 replies; 11+ messages in thread
From: KOSAKI Motohiro @ 2009-01-16 3:41 UTC (permalink / raw)
To: Stephen Rothwell
Cc: kosaki.motohiro, Andrew Morton, linux-next, Prarit Bhargava,
David Howells, LKML, linux-ia64, Sam Ravnborg, Kyle McMartin,
Tony Luck, Trond Myklebust
> Hi Andrew,
>
> On Thu, 15 Jan 2009 17:59:17 -0800 Andrew Morton <akpm@linux-foundation•org> wrote:
> >
> > I do most of my gitting across a DSL connection. It makes GUIs
> > painful.
>
> Yeah, I will think on it ...
>
> > > I have dropped the nfs tree from linux-next for today.
> >
> > Just for this buglet? That sounds a bit savage.
>
> There was another problem with the fscache code as well. Also, this was
> reported the day before yesterday and got no response. Also, the other
> patch that added EXPORT_SYMBOL(copy_page) "recently" was from
> December, *2007* ... Also, this is 2.6.30 material and they have a long
> time to fix it.
>
> Also, it is much easier on me :-)
Ghh, sorry for my really poor analysis ;)
thanks stephen.
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: linux-next: build problem with nfs tree (Was: Re: [mmotm][PATCH] fix ia64 build error)
2009-01-16 2:49 ` Stephen Rothwell
2009-01-16 3:41 ` KOSAKI Motohiro
@ 2009-01-16 4:34 ` Stephen Rothwell
2009-01-16 22:15 ` Andrew Morton
2009-01-17 4:43 ` David Howells
2 siblings, 1 reply; 11+ messages in thread
From: Stephen Rothwell @ 2009-01-16 4:34 UTC (permalink / raw)
To: Andrew Morton
Cc: linux-next, Prarit Bhargava, David Howells, KOSAKI Motohiro, LKML,
linux-ia64, Sam Ravnborg, Kyle McMartin, Tony Luck,
Trond Myklebust
Hi Andrew,
On Fri, 16 Jan 2009 13:49:30 +1100 Stephen Rothwell <sfr@canb•auug.org.au> wrote:
>
> On Thu, 15 Jan 2009 17:59:17 -0800 Andrew Morton <akpm@linux-foundation•org> wrote:
> >
> > I do most of my gitting across a DSL connection. It makes GUIs
> > painful.
>
> Yeah, I will think on it ...
With the help of Paul Mackerras, I have come up with the shell script
below. You run it with the commit id, the tag of the tree you care
about (e.g. next-20080115)(it defaults to the current top of tree) and
the name of the branch the represents Linus' tree (default to
origin/master). It will spit out the (or a) tree that contains the
commit you asked about.
-------------------------------------------------------------------------
#!/bin/bash
commit=$1
[ "$commit" ] || {
echo "$0: <commit id> [<top tag> [<linus branch>]]" 1>&2
exit 1
}
top=$2
[ "$top" ] || top=HEAD
linus=$3
[ "$linus" ] || linus=origin/master
base=$(git merge-base "$linus" "$top")
git log --first-parent --pretty='format:%H %P' "$base".."$top" |
while read m p1 p2
do
[ "$p2" ] || continue
git rev-list $base..$p2 | grep -q "$commit" || continue
branch=$(git show $m | sed -n "s/[ ]*Merge .* '\([^']*\)'/\1/p")
tree=${branch%%/*}
[ "$tree" = "quilt" ] && tree=${branch##*/}
echo "$tree"
break
done
exit 0
----------------------------------------------------------------------------
--
Cheers,
Stephen Rothwell sfr@canb•auug.org.au
http://www.canb.auug.org.au/~sfr/
^ permalink raw reply [flat|nested] 11+ messages in thread* Re: linux-next: build problem with nfs tree (Was: Re: [mmotm][PATCH] fix ia64 build error)
2009-01-16 4:34 ` Stephen Rothwell
@ 2009-01-16 22:15 ` Andrew Morton
2009-01-16 22:40 ` Stephen Rothwell
0 siblings, 1 reply; 11+ messages in thread
From: Andrew Morton @ 2009-01-16 22:15 UTC (permalink / raw)
To: Stephen Rothwell
Cc: linux-next, prarit, dhowells, kosaki.motohiro, linux-kernel,
linux-ia64, sam, kyle, tony.luck, trond.myklebust
On Fri, 16 Jan 2009 15:34:17 +1100
Stephen Rothwell <sfr@canb•auug.org.au> wrote:
> With the help of Paul Mackerras, I have come up with the shell script
> below. You run it with the commit id, the tag of the tree you care
> about (e.g. next-20080115)(it defaults to the current top of tree) and
> the name of the branch the represents Linus' tree (default to
> origin/master). It will spit out the (or a) tree that contains the
> commit you asked about.
hm. Thanks.
y:/usr/src/git26> git-checkout linux-next
Switched to branch "linux-next"
y:/usr/src/git26> who-committed.sh ba9a5918
y:/usr/src/git26> who-committed.sh 2c3fb6b1b1a43ca089032e6523207f6687c962c1
y:/usr/src/git26>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: linux-next: build problem with nfs tree (Was: Re: [mmotm][PATCH] fix ia64 build error)
2009-01-16 22:15 ` Andrew Morton
@ 2009-01-16 22:40 ` Stephen Rothwell
2009-01-16 22:49 ` Stephen Rothwell
2009-01-16 22:51 ` Andrew Morton
0 siblings, 2 replies; 11+ messages in thread
From: Stephen Rothwell @ 2009-01-16 22:40 UTC (permalink / raw)
To: Andrew Morton
Cc: linux-next, prarit, dhowells, kosaki.motohiro, linux-kernel,
linux-ia64, sam, kyle, tony.luck, trond.myklebust
[-- Attachment #1: Type: text/plain, Size: 896 bytes --]
Hi Andrew,
On Fri, 16 Jan 2009 14:15:57 -0800 Andrew Morton <akpm@linux-foundation•org> wrote:
>
> y:/usr/src/git26> git-checkout linux-next
> Switched to branch "linux-next"
> y:/usr/src/git26> who-committed.sh ba9a5918
Well that commit is from 2.6.23-rc1:
commit ba9a5918c86762fa7fae353c635bb6ed5221dfb8
Author: Douglas Thompson <dougthompson@xmission•com>
Date: Thu Jul 19 01:50:32 2007 -0700
drivers/edac: add to maintainers new info
before linux-next even existed. My script only works for things in
linux-next but not in Linus' tree ...
> y:/usr/src/git26> who-committed.sh 2c3fb6b1b1a43ca089032e6523207f6687c962c1
And that is one I committed myself because Linus' tree is broken.
I'll see if I can do better. What do you actually want to do?
--
Cheers,
Stephen Rothwell sfr@canb•auug.org.au
http://www.canb.auug.org.au/~sfr/
[-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread* Re: linux-next: build problem with nfs tree (Was: Re: [mmotm][PATCH] fix ia64 build error)
2009-01-16 22:40 ` Stephen Rothwell
@ 2009-01-16 22:49 ` Stephen Rothwell
2009-01-16 22:51 ` Andrew Morton
1 sibling, 0 replies; 11+ messages in thread
From: Stephen Rothwell @ 2009-01-16 22:49 UTC (permalink / raw)
To: Andrew Morton
Cc: linux-next, prarit, dhowells, kosaki.motohiro, linux-kernel,
linux-ia64, sam, kyle, tony.luck, trond.myklebust
[-- Attachment #1: Type: text/plain, Size: 492 bytes --]
Hi Andrew,
On Sat, 17 Jan 2009 09:40:08 +1100 Stephen Rothwell <sfr@canb•auug.org.au> wrote:
>
> > y:/usr/src/git26> who-committed.sh 2c3fb6b1b1a43ca089032e6523207f6687c962c1
>
> And that is one I committed myself because Linus' tree is broken.
It also appears as commit d992c8403a72c4067587a32a7736bcc2af6c408f in the
mfd tree but has not made it into Linus' tree yet.
--
Cheers,
Stephen Rothwell sfr@canb•auug.org.au
http://www.canb.auug.org.au/~sfr/
[-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: linux-next: build problem with nfs tree (Was: Re: [mmotm][PATCH] fix ia64 build error)
2009-01-16 22:40 ` Stephen Rothwell
2009-01-16 22:49 ` Stephen Rothwell
@ 2009-01-16 22:51 ` Andrew Morton
1 sibling, 0 replies; 11+ messages in thread
From: Andrew Morton @ 2009-01-16 22:51 UTC (permalink / raw)
To: Stephen Rothwell
Cc: linux-next, prarit, dhowells, kosaki.motohiro, linux-kernel,
linux-ia64, sam, kyle, tony.luck, trond.myklebust
On Sat, 17 Jan 2009 09:40:08 +1100
Stephen Rothwell <sfr@canb•auug.org.au> wrote:
> Hi Andrew,
>
> On Fri, 16 Jan 2009 14:15:57 -0800 Andrew Morton <akpm@linux-foundation•org> wrote:
> >
> > y:/usr/src/git26> git-checkout linux-next
> > Switched to branch "linux-next"
> > y:/usr/src/git26> who-committed.sh ba9a5918
>
> Well that commit is from 2.6.23-rc1:
>
> commit ba9a5918c86762fa7fae353c635bb6ed5221dfb8
> Author: Douglas Thompson <dougthompson@xmission•com>
> Date: Thu Jul 19 01:50:32 2007 -0700
>
> drivers/edac: add to maintainers new info
>
> before linux-next even existed. My script only works for things in
> linux-next but not in Linus' tree ...
>
> > y:/usr/src/git26> who-committed.sh 2c3fb6b1b1a43ca089032e6523207f6687c962c1
>
> And that is one I committed myself because Linus' tree is broken.
Oh, OK, sorry, drat. Two hastily and poorly chosen test cases.
> I'll see if I can do better. What do you actually want to do?
y:/usr/src/git26> who-committed.sh bcff57c25287216221d0ff82080ac37bb081969e
ide
That ;)
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: linux-next: build problem with nfs tree (Was: Re: [mmotm][PATCH] fix ia64 build error)
2009-01-16 2:49 ` Stephen Rothwell
2009-01-16 3:41 ` KOSAKI Motohiro
2009-01-16 4:34 ` Stephen Rothwell
@ 2009-01-17 4:43 ` David Howells
2009-01-17 5:00 ` Stephen Rothwell
2 siblings, 1 reply; 11+ messages in thread
From: David Howells @ 2009-01-17 4:43 UTC (permalink / raw)
To: Stephen Rothwell
Cc: dhowells, Andrew Morton, linux-next, Prarit Bhargava,
KOSAKI Motohiro, LKML, linux-ia64, Sam Ravnborg, Kyle McMartin,
Tony Luck, Trond Myklebust
Stephen Rothwell <sfr@canb•auug.org.au> wrote:
> > > I have dropped the nfs tree from linux-next for today.
> >
> > Just for this buglet? That sounds a bit savage.
>
> There was another problem with the fscache code as well. Also, this was
> reported the day before yesterday and got no response.
I've been flying to Tasmania for LCA and spending much time sitting around in
too many different airports.
> Also, the other patch that added EXPORT_SYMBOL(copy_page) "recently" was
> from December, *2007* ... Also, this is 2.6.30 material and they have a long
> time to fix it.
The patch was required Tuesday morning for my patches to build on top of
Linus's vanilla kernel. This may have changed, but I haven't checked - too
busy enjoying my pre-LCA hols in Tas:-)
David
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: linux-next: build problem with nfs tree (Was: Re: [mmotm][PATCH] fix ia64 build error)
2009-01-17 4:43 ` David Howells
@ 2009-01-17 5:00 ` Stephen Rothwell
0 siblings, 0 replies; 11+ messages in thread
From: Stephen Rothwell @ 2009-01-17 5:00 UTC (permalink / raw)
To: David Howells
Cc: Andrew Morton, linux-next, Prarit Bhargava, KOSAKI Motohiro, LKML,
linux-ia64, Sam Ravnborg, Kyle McMartin, Tony Luck,
Trond Myklebust
[-- Attachment #1: Type: text/plain, Size: 568 bytes --]
Hi David,
On Sat, 17 Jan 2009 04:43:52 +0000 David Howells <dhowells@redhat•com> wrote:
>
> Stephen Rothwell <sfr@canb•auug.org.au> wrote:
>
> > There was another problem with the fscache code as well. Also, this was
> > reported the day before yesterday and got no response.
>
> I've been flying to Tasmania for LCA and spending much time sitting around in
> too many different airports.
Sorry about that ... it should have occurred to me.
--
Cheers,
Stephen Rothwell sfr@canb•auug.org.au
http://www.canb.auug.org.au/~sfr/
[-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread