linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* RE: git pull on Linux/ACPI release tree
@ 2006-01-09  8:05 Brown, Len
  2006-01-09 16:47 ` Linus Torvalds
  0 siblings, 1 reply; 59+ messages in thread
From: Brown, Len @ 2006-01-09  8:05 UTC (permalink / raw)
  To: Luck, Tony, Linus Torvalds
  Cc: Junio C Hamano, Martin Langhoff, David S. Miller, linux-acpi,
	linux-kernel, akpm, git

Linus,
I think Tony has articulated the work-flow problem that
originally started this thread, as well as the fix.

>I'll try to update the using-topic-branches document to capture this.
>Some of the problem is that it doesn't quite capture what I'm doing
>with my test/release branches.
>
>My release branch really is just used as a transfer point to Linus.
>I usually[1] don't leave patches sitting in "release" for long enough
>that I'll be tempted to merge in from Linus ... once I decide that
>some patches are ready to go to Linus I'll update "release" from Linus
>(which will be a fast-forward, so no history) merge in the topic
>branches, do one final sanity build, push to kernel.org and send
>the "please pull" e-mail.
>
>The huge majority of my "automatic update from upstream" merges
>go into my test branch ... which never becomes part of the real
>history as I never ask Linus to pull from it.
>
>-Tony
>
>[1] Sometimes I goof on this because I forget that I've applied
>a trivial patch directly to the release branch without going through
>a topic branch.  I think I'll fix my update script to check 
>for this case.

I figured that checking some trivial patches directly into "release"
would be a convenient way to make sure I didn't forget to push them --
as they didn't depend on anything else in my tree.  Okay.

To make sure that my test branch (where I generate my consolidated
plain patch, and what Andrew pulls) includes everything, I then pull
"release" into "test".  Still good.

But then I decide I need to update my test tree from upstream.
I did this by pulling "linus" into "release", and then pulling
"release" into "test".  This creates the book-keeping merge
in "release" that irritates gitk users.

This "flow", BTW, is a habit I picked up from the
"two-phase release strategy" that we used in bk days.
There I'd pull from upstream down into my to-linus tree and then pull
from the to-linus tree into the to-andrew tree.
I expect BK also created a merge cset, but apparently
nobody was looking at the history like they do with gitk today.

So if I simply don't pull from "linus" into a modified
"release" branch then the cluttered history issue goes away.
I should fetch "linus" into "release" right before I merge
the topic branches into "release" and push upstream.
The fetch is a clean fast-forward, and the merges all have
real content.

This will work as long as "release" doesn't get too old
to be pulled upstream without conflicts.  Based on past
experience with low latency pulls upstream, I think this will be rare.

Andrew will still get cluttered history in the test tree,
but as he's focused on the content and not the (throw-away) history,
this is surely a non-issue.

So problem #1 is solved, yes?

Going forward...
I'm hopeful that gitk users will not be irritated also
by the liberal use of topic branches.  I'm starting to like using
them quite a bit.  Yes, it is true that I could cherry-pick
the topics out of their original context to re-manufacture linear
history.  But that is extra work.  Also, as you poined out,
there is real value in the real history because the context is accurate.
Further, I find that sometimes I need to augment a topic branch
with a follow-up patch.  I can checkout the topic branch an plop
the follow-up right on the tip where it logically should live,
and (Tony's) scripts will remind me when the branch is not fully
pulled into test or release -- so it will never get misplaced.

In the case where a topic branch is a single commit, gitk users
will see both the original commit, as well as the merge commit
back into "release".

-Len

^ permalink raw reply	[flat|nested] 59+ messages in thread
* RE: git pull on Linux/ACPI release tree
@ 2006-01-09  7:34 Brown, Len
  2006-01-09 10:11 ` Martin Langhoff
  0 siblings, 1 reply; 59+ messages in thread
From: Brown, Len @ 2006-01-09  7:34 UTC (permalink / raw)
  To: Martin Langhoff
  Cc: David S. Miller, torvalds, linux-acpi, linux-kernel, akpm, git

Martin,
I appologize for using the phrase "completely insane".
The rebase proposal caught me somewhat off-guard and
I was expressing surprise -- hopefully not taken as insult.

Further, I thank you for your thoughful follow-up.

While I don't expect it to become a routine occurnece for me,
I do see that rebase has utility in some situations.

-Len

^ permalink raw reply	[flat|nested] 59+ messages in thread
* RE: git pull on Linux/ACPI release tree
@ 2006-01-09  6:27 Brown, Len
  0 siblings, 0 replies; 59+ messages in thread
From: Brown, Len @ 2006-01-09  6:27 UTC (permalink / raw)
  To: David S. Miller, torvalds
  Cc: martin.langhoff, linux-acpi, linux-kernel, akpm, git


>From: David S. Miller

>I think merges with conflicts that need to get resolved by hand create
>a lot of noise and useless information and therefore to me they are
>pointless.  But this is just my opinion.  It simply works easier to me
>to shuffle the patches in by hand and deal with the rejects one by
>one.  It's very much akin to how Andrew's -mm tree works.

I guess in this model you can do all your development with quilt,
and the value of git is a high-bandwidth bransport medium to
replace e-mail.

>I think a clean history is worth an extra few minutes of someone's
>time.  And note that subsystem development is largely linear anyways.

Maybe true in your neck of the woods, but not true here.

I have more than a dozen topic branches in my tree, and they mature
at different rates.

When a topic branch is in the test tree and and a follow-up patch
is needed, I check out that topic branch and put the patch
exactly in non-linear 3D history where it is meant to live.
When the topic seems fully baked, I can pull the top of the
branch into the release tree.

-Len

^ permalink raw reply	[flat|nested] 59+ messages in thread
* RE: git pull on Linux/ACPI release tree
@ 2006-01-09  6:13 Brown, Len
  0 siblings, 0 replies; 59+ messages in thread
From: Brown, Len @ 2006-01-09  6:13 UTC (permalink / raw)
  To: Linus Torvalds, Martin Langhoff
  Cc: David S. Miller, linux-acpi, linux-kernel, akpm, git

 
>Which just means that a commit that was tested and found to be working 
>might suddenly not work any more, which can be very surprising ("But I 
>didn't change anything!").

This is why I try to follow the top of tree as closely as possible.
While parts of ACPI are well contained, other parts get stomped on constantly.
My two updates in 10 hours were not becaudse of what I did,
it was in response to seeing the flood gates in 2.6.16 open.

Also, it isn't accurate that nothing changed at my end.
I put some trivial patches into my release branch,
udpated the release branch with upstream,
and then pulled the release branch into my test branch
where there are other patches you haven't seen yet.

I pushed the release branch just to 'clear the deck' of
the trivial patches there since there was no reason to delay
them behind all the stuff still on the test branch.

>So trying out git-rebase and git-cherry-pick just in case you 
>decide to want to use them might be worthwhile. Making it part of your 
>daily routine like David has done? Somewhat questionable, but hey,
>it seems to be working for David, and it does make some things much easier, so..

In the past I have use git-cherry-pick to recover from when a "good" patch
was checked in on top of a "bad" patch, and I wanted to push
the good without the bad.

But the linearization model will not work for me in general.
Branches enable parallel lines of development in git.  If that
is thrown out, then we're basically back at quilt.

thanks,
-Len

^ permalink raw reply	[flat|nested] 59+ messages in thread
* Re: git pull on Linux/ACPI release tree
@ 2006-01-09  5:55 linux
  0 siblings, 0 replies; 59+ messages in thread
From: linux @ 2006-01-09  5:55 UTC (permalink / raw)
  To: ltuikov; +Cc: git, linux-kernel

> And lastly, is there a tool whereby I can "see" changes
> between repos, kind of like git-diff but being able to
> give URLs too?

Write it yourself.  It's git-fetch + git-diff.

Or, put another way, if you think you need a special tool for working
with a remote repository, you don't understand git-fetch.

Since git history is immutable, there is no difference between a remote
copy and a local copy.  And since fetching is harmless to your local
repository, there's no problem.

If you don't want to copy the entire history, just fetch the tree rather
than the commit.  (Does git-fetch do that?  It's a subset of its current
effects, so would be an easy enough extension.)

^ permalink raw reply	[flat|nested] 59+ messages in thread
* RE: git pull on Linux/ACPI release tree
@ 2006-01-09  5:53 Brown, Len
  2006-01-09  6:08 ` Martin Langhoff
  0 siblings, 1 reply; 59+ messages in thread
From: Brown, Len @ 2006-01-09  5:53 UTC (permalink / raw)
  To: Martin Langhoff
  Cc: David S. Miller, torvalds, linux-acpi, linux-kernel, akpm, git


>On 1/9/06, Brown, Len <len.brown@intel.com> wrote:
>> Perhaps the tools should try to support what "a lot of people"
>> expect, rather than making "a lot of people" do extra work
>> because of the tools?
>
>I think it does. All the tricky stuff that David and Junio have been
>discussing is actually done very transparently by
>
>    git-rebase <upstream>
>
>Now, git-rebase uses git-format-patch <options> | git-am <options> so
>it sometimes has problems merging. In that case, you can choose to
>either resolve the problem (see the doco for how to signal to git-am
>that you've resolved a conflict) or to cancel the rebase. If you
>choose to cancel the rebase, do
>
>   cp .git/refs/heads/{<headname>,<headnamebadrebase>}
>   cat .git/HEAD_ORIG > .git/refs/heads/<headname>
>   git-reset --hard
>   rm -fr .dotest
>
>and you'll be back to where you started. Perhaps this could be rolled
>into something like git-rebase --cancel to make it easier, but that's
>about it. The toolchain definitely supports it.

This is completely insane.
Do you have any idea what "sometimes has problems merging" means
in practice?  It means the tools are really nifty in the trivial
case but worse than worthless when you need them the most.

-Len

^ permalink raw reply	[flat|nested] 59+ messages in thread
* RE: git pull on Linux/ACPI release tree
@ 2006-01-08 18:28 Brown, Len
  2006-01-08 19:19 ` Martin Langhoff
  2006-01-08 19:41 ` Linus Torvalds
  0 siblings, 2 replies; 59+ messages in thread
From: Brown, Len @ 2006-01-08 18:28 UTC (permalink / raw)
  To: David S. Miller; +Cc: torvalds, linux-acpi, linux-kernel, akpm, git

 
>I know a lot of people react to this kind of usage with "what's the
>point of the source control system if you're just messing with patches
>in and out of the tree all the time" But as a subsystem maintainer,
>you deal with a lot of changes and it's important to get a pristine
>clean history when you push things to Linus.
>
>In fact, I do this so much that Linus's tree HEAD often equals my
>origin when he pulls.
>
>Merges really suck and I also hate it when the tree gets cluttered
>up with them, and Linus is right, ACPI is the worst offender here.
>
>Yes, we can grep the merges out of the shortlog or whatever, but that
>merging crap is still physically in the tree.
>
>Just don't do it.  Merge into a private branch for testing if you
>don't want to rebuild trees like I do, but push the clean tree to
>Linus.

Perhaps the tools should try to support what "a lot of people"
expect, rather than making "a lot of people" do extra work
because of the tools?

Call me old fashioned, but I believe that tools are supposed to
make work easier, not harder.

-Len

^ permalink raw reply	[flat|nested] 59+ messages in thread
* RE: git pull on Linux/ACPI release tree
@ 2006-01-08  7:47 Brown, Len
  2006-01-08  8:16 ` Catalin Marinas
                   ` (2 more replies)
  0 siblings, 3 replies; 59+ messages in thread
From: Brown, Len @ 2006-01-08  7:47 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-acpi, linux-kernel, akpm, git

Hi Linus,

adding git@vger.kernel.org...

>> please pull this batch of trivial patches from: 
>> 
>> 
>git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git release
>
>Len,
>
>I _really_ wish you wouldn't have those automatic merges.
>
>Why do you do them? They add nothing but ugly and unnecessary 
>history, and in this pull, I think almost exactly half of the
>commits were just these empty merges.

Is it possible for it git, like bk, to simply ignore merge commits in its summary output?

Note that "Auto-update from upstream" is just the place-holder comment
embedded in the wrapper script in git/Documentation/howto/using-topic-branches.txt
All instances of it here are from me manually updating --
the only "auto" happening here is the automatic insertion of that comment:-)

I think that Tony's howto above captures two key requirements
from all kernel maintainers -- which the exception of you --
who hang out  in the middle of the process rather than
at the top of the tree.

1. It is important that we be able (and encouraged, not discouraged)
to track the top of tree as closely as we have time to handle.
Divergence and conflicts are best handled as soon as they are noticed
and can be a huge pain if left to fester and discovered
only when it is time to push patches upstream.
Plus, tracking the top of tree means we force more folks to
track the top of tree, and so it gets more testing.  This is goodness.

Earlier in your release cycle when changes are appearing faster,
my need/desire to sync is greater than later in the cycle when changes
are smaller and infrequent.  On average, I think that one sync/day
from upstream is an entirely reasonable frequency.

2. It is also important that we be able to cherry pick individual patches
in our trees so that they don't block each other from going upstream.
Tony's using-topic-branches.txt above is the best way I know of doing that.
I think it is a big improvement over the bk model since I can have a simple
branch for each patch or group of patches rather than an entire repository
dedicatd to each.  But for this to work, I need to be able to update
any and all of the topic branches from upstream, and to merge them with
each other -- just like I could with BK.  Otherwise they become "dated"
in the time they were first integrated, and it is not convenient to do
simple apples/apples comparisons that are needed to debug and test.

I'm probably a naïve git user -- but I expect I have a lot of company.
If there is a better way of using the tool to get the job done,
I'm certainly a willing customer with open ears.

thanks,
-Len

^ permalink raw reply	[flat|nested] 59+ messages in thread
* git pull on Linux/ACPI release tree
@ 2005-12-01  8:05 Len Brown
  2005-12-06  8:17 ` Len Brown
  0 siblings, 1 reply; 59+ messages in thread
From: Len Brown @ 2005-12-01  8:05 UTC (permalink / raw)
  To: torvalds; +Cc: acpi-devel, linux-kernel, akpm

Hi Linus,

please pull from: 

git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git release

This will update the files shown below.

thanks!

-Len

 arch/i386/kernel/acpi/boot.c     |    7 +
 drivers/acpi/Kconfig             |    1 
 drivers/acpi/Makefile            |    2 
 drivers/acpi/processor_core.c    |   15 ++
 drivers/acpi/processor_idle.c    |   29 +++-
 drivers/acpi/processor_thermal.c |   38 +++---
 drivers/acpi/scan.c              |    2 
 drivers/acpi/thermal.c           |  163 ++++++++++++++-------------
 drivers/acpi/video.c             |    2 
 9 files changed, 157 insertions(+), 102 deletions(-)

through these commits:

Al Viro:
      [ACPI] IA64 build: blacklist.c is used only on X86

Borislav Petkov:
      [ACPI] delete "default y" on Kconfig for ibm_acpi extras driver

David Shaohua Li:
      [ACPI] properly detect pmtimer on ASUS a8v motherboard

Thomas Renninger:
      [ACPI] fix HP nx8220 boot hang regression
      [ACPI] Allow return to active cooling mode once passive mode is entered
      [ACPI] Fix Null pointer deref in video/lcd/brightness

Venkatesh Pallipadi:
      [ACPI] Prefer _CST over FADT for C-state capabilities
      [ACPI] Add support for FADT P_LVL2_UP flag
      [ACPI] fix 2.6.13 boot hang regression on HT box w/ broken BIOS

with this log:

commit 220ec706645ecf13ee3a87046d17316303905698
Merge: 16071a073d44ef3ca3f79d0b49371a79464d9ac0 
1cbf4c563c0eaaf11c552a88b374e213181c6ddd
Author: Len Brown <len.brown@intel.com>
Date:   Thu Dec 1 01:42:17 2005 -0500

    Pull 3410 into release branch

commit 16071a073d44ef3ca3f79d0b49371a79464d9ac0
Merge: b7639dafb4e175ddd637425da5ff65f03e08028e 
cd8e2b48daee891011a4f21e2c62b210d24dcc9e
Author: Len Brown <len.brown@intel.com>
Date:   Thu Dec 1 01:39:55 2005 -0500

    Pull 5452 into release branch

commit b7639dafb4e175ddd637425da5ff65f03e08028e
Merge: c8734a9663806b7ebd3b5e33bae65a60ff6553bd 
59d399d357a7705568f424c6e861ee8657f7f655
Author: Len Brown <len.brown@intel.com>
Date:   Thu Dec 1 01:39:41 2005 -0500

    Pull 5571 into release branch

commit cd8e2b48daee891011a4f21e2c62b210d24dcc9e
Author: Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>
Date:   Fri Oct 21 19:22:00 2005 -0400

    [ACPI] fix 2.6.13 boot hang regression on HT box w/ broken BIOS
    
    http://bugzilla.kernel.org/show_bug.cgi?id=5452
    
    Signed-off-by: Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>
    Signed-off-by: Len Brown <len.brown@intel.com>

commit 59d399d357a7705568f424c6e861ee8657f7f655
Author: Thomas Renninger <trenn@suse.de>
Date:   Tue Nov 8 05:27:00 2005 -0500

    [ACPI] Fix Null pointer deref in video/lcd/brightness
    
    http://bugzilla.kernel.org/show_bug.cgi?id=5571
    
    Signed-off-by: Thomas Renninger <trenn@suse.de>
    Signed-off-by: Nishanth Aravamudan <nacc@us.ibm.com>
    Signed-off-by: Yu Luming <luming.yu@gmail.com>
    Cc: <stable@kernel.org>
    Signed-off-by: Andrew Morton <akpm@osdl.org>
    Signed-off-by: Len Brown <len.brown@intel.com>

commit 1cbf4c563c0eaaf11c552a88b374e213181c6ddd
Author: Thomas Renninger <trenn@suse.de>
Date:   Thu Sep 16 11:07:00 2004 -0400

    [ACPI] Allow return to active cooling mode once passive mode is entered
    
    http://bugzilla.kernel.org/show_bug.cgi?id=3410
    https://bugzilla.novell.com/show_bug.cgi?id=131543
    
    Signed-off-by: Thomas Renninger <trenn@suse.de>
    Signed-off-by: Konstantin Karasyov <konstantin.a.karasyov@intel.com>
    Signed-off-by: Alexey Starikovskiy <alexey.y.starikovskiy@intel.com>
    Signed-off-by: Yu Luming <luming.yu@gmail.com>
    Signed-off-by: Andrew Morton <akpm@osdl.org>

commit c8734a9663806b7ebd3b5e33bae65a60ff6553bd
Merge: 8e9887cc3b8d9f1c88c6f3842346a9478e52718f 
e6e87b4bfe3720b4308a8e669078d9be58bc9780
Author: Len Brown <len.brown@intel.com>
Date:   Wed Nov 30 22:28:15 2005 -0500

    Pull 5283 into release branch

commit e6e87b4bfe3720b4308a8e669078d9be58bc9780
Author: David Shaohua Li <shaohua.li@intel.com>
Date:   Wed Sep 21 01:35:00 2005 -0400

    [ACPI] properly detect pmtimer on ASUS a8v motherboard
    
    Handle FADT 2.0 xpmtmr address 0 case.
    
    http://bugzilla.kernel.org/show_bug.cgi?id=5283
    
    Signed-off-by: Shaohua Li<shaohua.li@intel.com>
    Signed-off-by: Andrew Morton <akpm@osdl.org>
    Signed-off-by: Len Brown <len.brown@intel.com>

commit 8e9887cc3b8d9f1c88c6f3842346a9478e52718f
Merge: 0a47c906342e2447003e207d23917dfa5c912071 
d2149b542382bfc206cb28485108f6470c979566
Author: Len Brown <len.brown@intel.com>
Date:   Wed Nov 30 22:22:52 2005 -0500

    Auto-update from upstream

commit 0a47c906342e2447003e207d23917dfa5c912071
Author: Borislav Petkov <petkov@uni-muenster.de>
Date:   Wed Nov 30 22:12:45 2005 -0500

    [ACPI] delete "default y" on Kconfig for ibm_acpi extras driver
    
    Signed-off-by: Borislav Petkov <petkov@uni-muenster.de>
    Signed-off-by: Andrew Morton <akpm@osdl.org>
    Signed-off-by: Len Brown <len.brown@intel.com>

commit 5d8e7aa6e5c21e14843404c5e4c04d4cf043e40e
Author: Al Viro <viro@ftp.linux.org.uk>
Date:   Thu Sep 22 01:15:57 2005 -0400

    [ACPI] IA64 build: blacklist.c is used only on X86
    
    Signed-off-by: Al Viro <viro@ftp.linux.org.uk>
    Signed-off-by: Len Brown <len.brown@intel.com>
    (cherry picked from ef4611613657dfb8af8d336f2f61f08cfcdc9d8a commit)

commit 7dac562f6d89b3f70c3f12b0e17878b07af42298
Merge: 3141b6708dd9ad09b6667c23393cfdc25b127771 
4c0335526c95d90a1d958e0059f40a5745fc7c5d
Author: Len Brown <len.brown@intel.com>
Date:   Wed Nov 30 21:55:14 2005 -0500

    Pull 5165 into release branch

commit 3141b6708dd9ad09b6667c23393cfdc25b127771
Merge: d2149b542382bfc206cb28485108f6470c979566 
bd7ce5b5ff930c29b1c0405051e9c9388660b785
Author: Len Brown <len.brown@intel.com>
Date:   Wed Nov 30 21:55:02 2005 -0500

    Pull 5221 into release branch

commit bd7ce5b5ff930c29b1c0405051e9c9388660b785
Author: Thomas Renninger <trenn@suse.de>
Date:   Mon Oct 3 10:39:00 2005 -0700

    [ACPI] fix HP nx8220 boot hang regression
    
    This patch reverts the acpi_bus_find_driver() return value check
    that came in via the PCI tree via 3fb02738b0fd36f47710a2bf207129efd2f5daa2
    
            [PATCH] acpi bridge hotadd: Allow ACPI .add and .start
    	operations to be done independently
    
    This particular change broke booting of some HP/Compaq laptops unless
    acpi=noirq is used.
    
    http://bugzilla.kernel.org/show_bug.cgi?id=5221
    https://bugzilla.novell.com/show_bug.cgi?id=116763
    
    Signed-off-by: Thomas Renninger <trenn@suse.de>
    Cc: Rajesh Shah <rajesh.shah@intel.com>
    Signed-off-by: Len Brown <len.brown@intel.com>

commit 4c0335526c95d90a1d958e0059f40a5745fc7c5d
Author: Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>
Date:   Thu Sep 15 12:20:00 2005 -0400

    [ACPI] Add support for FADT P_LVL2_UP flag
    which tells us if C2 is valid for UP-only, or SMP.
    
    As there is no separate bit for C3,  use P_LVL2_UP
    bit to cover both C2 and C3.
    
    http://bugzilla.kernel.org/show_bug.cgi?id=5165
    
    Signed-off-by: Venkatesh Pallipadi<venkatesh.pallipadi@intel.com>
    Signed-off-by: Len Brown <len.brown@intel.com>
    (cherry picked from 28b86b368af3944eb383078fc5797caf2dc8ce44 commit)

commit 6d93c64803a5fea84839789aae13290419c62d92
Author: Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>
Date:   Thu Sep 15 12:19:00 2005 -0400

    [ACPI] Prefer _CST over FADT for C-state capabilities
    
    Note: This ACPI standard compliance may cause regression
    on some system, if they have _CST present, but _CST value
    is bogus. "nocst" module parameter should workaround
    that regression.
    
    http://bugzilla.kernel.org/show_bug.cgi?id=5165
    
    Signed-off-by: Venkatesh Pallipadi<venkatesh.pallipadi@intel.com>
    Signed-off-by: Len Brown <len.brown@intel.com>
    (cherry picked from 883baf7f7e81cca26f4683ae0d25ba48f094cc08 commit)


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

end of thread, other threads:[~2006-01-13 23:41 UTC | newest]

Thread overview: 59+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-01-09  8:05 git pull on Linux/ACPI release tree Brown, Len
2006-01-09 16:47 ` Linus Torvalds
2006-01-09 16:57   ` Linus Torvalds
2006-01-09 22:51     ` Luben Tuikov
2006-01-09 23:07       ` Linus Torvalds
2006-01-09 23:34         ` Martin Langhoff
2006-01-10  2:50       ` Linus Torvalds
2006-01-10  6:33         ` Kyle Moffett
2006-01-10  6:38           ` Martin Langhoff
2006-01-10 18:05             ` Kyle Moffett
2006-01-10 18:27               ` Linus Torvalds
2006-01-10 18:45                 ` Johannes Schindelin
2006-01-10 19:01                   ` Linus Torvalds
2006-01-10 19:28                     ` Linus Torvalds
2006-01-13 23:35                     ` Matthias Urlichs
2006-01-11  3:32               ` Luben Tuikov
2006-01-09 20:06   ` Junio C Hamano
2006-01-10 15:31     ` Alex Riesen
  -- strict thread matches above, loose matches on Subject: below --
2006-01-09  7:34 Brown, Len
2006-01-09 10:11 ` Martin Langhoff
2006-01-09 12:31   ` Johannes Schindelin
2006-01-09  6:27 Brown, Len
2006-01-09  6:13 Brown, Len
2006-01-09  5:55 linux
2006-01-09  5:53 Brown, Len
2006-01-09  6:08 ` Martin Langhoff
2006-01-09  6:13   ` Linus Torvalds
2006-01-09  6:46     ` Junio C Hamano
2006-01-08 18:28 Brown, Len
2006-01-08 19:19 ` Martin Langhoff
2006-01-08 19:33   ` Junio C Hamano
2006-01-08 19:57     ` Linus Torvalds
2006-01-08 20:50       ` Tony Luck
2006-01-08 19:56   ` Linus Torvalds
2006-01-08 20:35     ` David S. Miller
2006-01-08 21:20     ` Luben Tuikov
2006-01-09  1:13       ` Linus Torvalds
2006-01-08 19:41 ` Linus Torvalds
2006-01-08 23:06   ` Adrian Bunk
2006-01-08 23:53     ` Willy Tarreau
2006-01-09  3:26     ` Linus Torvalds
2006-01-09  4:34       ` Martin Langhoff
2006-01-10 20:19       ` Adrian Bunk
2006-01-10 20:31         ` Linus Torvalds
2006-01-10 20:33         ` Martin Langhoff
2006-01-12  1:37         ` Greg KH
2006-01-12 16:10           ` Catalin Marinas
2006-01-13 14:50           ` Adrian Bunk
2006-01-08  7:47 Brown, Len
2006-01-08  8:16 ` Catalin Marinas
2006-01-08  8:16 ` David S. Miller
2006-01-08 19:10 ` Linus Torvalds
2006-01-09  0:48   ` Al Viro
2006-01-09  3:50     ` Linus Torvalds
2005-12-01  8:05 Len Brown
2005-12-06  8:17 ` Len Brown
2005-12-23  5:42   ` Len Brown
2006-01-07 15:54     ` Len Brown
2006-01-07 18:22       ` Linus Torvalds

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).