Re: Announce: Linux-next (Or Andrew's dream :-))

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Linus Torvalds
Date: Tuesday, February 12, 2008 - 8:31 pm

On Tue, 12 Feb 2008, James Bottomley wrote:

Hey, I know, you could use.. drumroll..

	"git rebase"

I know that's a big leap of faith, to use git rebase for rebasing, but 
there you have it. Us git people are kind of odd that way.

IOW, if you know the old broken base, and the new base, just do

	git rebase --onto newbase oldbase

and it should do exactly that (basically lots of automated cherry-picks).

[ But the fact is, if you did anything fancy (like pulled in other peoples 
  work), you cannot sanely rebase _those_ peoples work. They didn't screw 
  up to begin with! You can play with "git rebase -i --preserve-merges", 
  of course, but I really think you're doing something wrong if you start 
  pulling other peoples work into an unstable thing, so while it may work, 
  I'd strongly suggest against even trying, because the problem is your 
  workflow ]

So let's say that you have a remote branch that you track that goes 
rebasing (let's call it "origin/pu" to match the real-life git behaviour), 
then you should literally be able to do

	old=$(git rev-parse origin/pu)	&&
	git fetch			&&
	new=$(git rev-parse origin/pu)	&&
	git rebase --onto $new $old

and no, I didn't actually test it, but hey, it really should be that 
simple.

[ And no, you don't really need to do those "old=" and "new=" things, they 
  are there to make it explicit - you could easily just have done

	git fetch
	.. oh, noticed that origin/pu changed ..
	git rebase --onto origin/pu origin/pu@{1}

  where we just let git take care of the old/new itself using the reflog, 
  so that "origin/pu@{1}" assumes that you just know that the only thing 
  that has changed origin/pu was that previous "git fetch", and that 
  really *did* change it. ]

In other words, git does give you exactly what you want, but nothing 
really changes the fact that you should only rebase like this only if:

 - you haven't already exported the result (or only exported it as those 
   unstables branches that people know to avoid)

 - your changes on top are just your own linear series of commits (where 
   "applying a patch from somebody else" is still _your_ commit, of 
   course, just with authorship attributed to somebody else)

so that part really is very fundamental.

			Linus
--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
Announce: Linux-next (Or Andrew's dream :-)), Stephen Rothwell, (Mon Feb 11, 6:02 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), James Bottomley, (Mon Feb 11, 6:36 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Stephen Rothwell, (Mon Feb 11, 7:23 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Stephen Rothwell, (Mon Feb 11, 7:25 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), James Bottomley, (Mon Feb 11, 8:32 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Greg KH, (Mon Feb 11, 9:21 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Arjan van de Ven, (Mon Feb 11, 9:31 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Greg KH, (Mon Feb 11, 9:43 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Trond Myklebust, (Mon Feb 11, 9:45 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Stephen Rothwell, (Mon Feb 11, 10:07 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Theodore Tso, (Mon Feb 11, 10:11 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Arjan van de Ven, (Mon Feb 11, 10:17 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Greg KH, (Mon Feb 11, 10:53 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Greg KH, (Mon Feb 11, 10:56 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), David Miller, (Mon Feb 11, 11:02 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), David Miller, (Mon Feb 11, 11:07 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Stephen Rothwell, (Mon Feb 11, 11:10 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), David Miller, (Mon Feb 11, 11:11 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Andrew Morton, (Mon Feb 11, 11:15 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Harvey Harrison, (Mon Feb 11, 11:21 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Arjan van de Ven, (Tue Feb 12, 12:06 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Stephen Rothwell, (Tue Feb 12, 4:57 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Greg KH, (Tue Feb 12, 7:57 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), James Bottomley, (Tue Feb 12, 8:07 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Benny Halevy, (Tue Feb 12, 8:32 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), James Bottomley, (Tue Feb 12, 9:00 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Jeff Garzik, (Tue Feb 12, 9:31 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Jeff Garzik, (Tue Feb 12, 9:36 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Benny Halevy, (Tue Feb 12, 9:46 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), James Bottomley, (Tue Feb 12, 10:03 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), John W. Linville, (Tue Feb 12, 10:04 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Linus Torvalds, (Tue Feb 12, 10:09 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Roland Dreier, (Tue Feb 12, 10:38 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), James Bottomley, (Tue Feb 12, 10:41 am)
Re: multiple drivers, single device, Roland Dreier, (Tue Feb 12, 10:42 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Greg KH, (Tue Feb 12, 10:48 am)
Re: multiple drivers, single device, Greg KH, (Tue Feb 12, 10:51 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Benny Halevy, (Tue Feb 12, 10:53 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Linus Torvalds, (Tue Feb 12, 11:00 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Jeff Garzik, (Tue Feb 12, 11:02 am)
Re: multiple drivers, single device, Jeff Garzik, (Tue Feb 12, 11:08 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Jeff Garzik, (Tue Feb 12, 11:11 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), James Bottomley, (Tue Feb 12, 11:24 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Linus Torvalds, (Tue Feb 12, 11:26 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Linus Torvalds, (Tue Feb 12, 11:36 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Linus Torvalds, (Tue Feb 12, 11:48 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Jeff Garzik, (Tue Feb 12, 11:48 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Linus Torvalds, (Tue Feb 12, 11:59 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Greg KH, (Tue Feb 12, 12:15 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), James Bottomley, (Tue Feb 12, 12:17 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Greg KH, (Tue Feb 12, 12:19 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Benny Halevy, (Tue Feb 12, 12:25 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), J. Bruce Fields, (Tue Feb 12, 12:37 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Al Viro, (Tue Feb 12, 12:41 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Al Viro, (Tue Feb 12, 12:46 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Linus Torvalds, (Tue Feb 12, 12:55 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Russell King, (Tue Feb 12, 1:03 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Linus Torvalds, (Tue Feb 12, 1:07 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Jiri Kosina, (Tue Feb 12, 1:18 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Andrew Morton, (Tue Feb 12, 1:23 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Linus Torvalds, (Tue Feb 12, 1:31 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Greg KH, (Tue Feb 12, 1:48 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Greg KH, (Tue Feb 12, 1:50 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), James Bottomley, (Tue Feb 12, 2:00 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Al Viro, (Tue Feb 12, 2:08 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Greg KH, (Tue Feb 12, 2:20 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Matthew Wilcox, (Tue Feb 12, 2:25 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Linus Torvalds, (Tue Feb 12, 2:36 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Alan Cox, (Tue Feb 12, 2:51 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Andrew Morton, (Tue Feb 12, 3:17 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Alan Cox, (Tue Feb 12, 3:20 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Jan Engelhardt, (Tue Feb 12, 3:34 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Al Viro, (Tue Feb 12, 3:41 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Theodore Tso, (Tue Feb 12, 3:44 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Greg KH, (Tue Feb 12, 3:55 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Alan Cox, (Tue Feb 12, 3:59 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Alan Cox, (Tue Feb 12, 4:01 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Greg KH, (Tue Feb 12, 4:26 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Greg KH, (Tue Feb 12, 4:27 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Theodore Tso, (Tue Feb 12, 4:49 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), David Miller, (Tue Feb 12, 4:51 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Al Viro, (Tue Feb 12, 4:54 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), David Miller, (Tue Feb 12, 4:58 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), David Miller, (Tue Feb 12, 5:12 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), J. Bruce Fields, (Tue Feb 12, 5:16 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), David Miller, (Tue Feb 12, 5:27 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Greg KH, (Tue Feb 12, 5:29 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), David Miller, (Tue Feb 12, 5:31 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), David Miller, (Tue Feb 12, 5:33 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), David Miller, (Tue Feb 12, 5:36 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Andrew Morton, (Tue Feb 12, 5:37 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), David Miller, (Tue Feb 12, 5:41 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Linus Torvalds, (Tue Feb 12, 5:44 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Andrew Morton, (Tue Feb 12, 5:47 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Al Viro, (Tue Feb 12, 5:48 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Linus Torvalds, (Tue Feb 12, 5:49 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), David Miller, (Tue Feb 12, 5:50 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Linus Torvalds, (Tue Feb 12, 5:53 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), J. Bruce Fields, (Tue Feb 12, 5:56 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Linus Torvalds, (Tue Feb 12, 5:59 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), David Miller, (Tue Feb 12, 6:16 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Randy Dunlap, (Tue Feb 12, 6:20 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), David Miller, (Tue Feb 12, 6:20 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), David Miller, (Tue Feb 12, 6:23 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), David Miller, (Tue Feb 12, 6:24 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Al Viro, (Tue Feb 12, 6:25 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), David Miller, (Tue Feb 12, 6:25 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Linus Torvalds, (Tue Feb 12, 6:31 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), David Miller, (Tue Feb 12, 6:38 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Linus Torvalds, (Tue Feb 12, 6:41 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), David Miller, (Tue Feb 12, 6:46 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Andrew Morton, (Tue Feb 12, 6:46 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Linus Torvalds, (Tue Feb 12, 6:57 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Andrew Morton, (Tue Feb 12, 7:06 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Theodore Tso, (Tue Feb 12, 7:16 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Linus Torvalds, (Tue Feb 12, 7:18 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), David Miller, (Tue Feb 12, 7:20 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), James Bottomley, (Tue Feb 12, 7:25 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Linus Torvalds, (Tue Feb 12, 7:35 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Joel Becker, (Tue Feb 12, 7:47 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), James Bottomley, (Tue Feb 12, 8:00 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Linus Torvalds, (Tue Feb 12, 8:31 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Linus Torvalds, (Tue Feb 12, 8:48 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), James Bottomley, (Tue Feb 12, 9:10 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Paul Mundt, (Tue Feb 12, 9:19 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), J. Bruce Fields, (Tue Feb 12, 9:25 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), J. Bruce Fields, (Tue Feb 12, 9:52 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Kumar Gala, (Tue Feb 12, 10:03 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Nicolas Pitre, (Tue Feb 12, 10:14 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Nicolas Pitre, (Tue Feb 12, 10:17 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Linus Torvalds, (Tue Feb 12, 10:43 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Greg KH, (Tue Feb 12, 11:16 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Geert Uytterhoeven, (Wed Feb 13, 12:28 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Geert Uytterhoeven, (Wed Feb 13, 12:38 am)
Re: distributed module configuration, David Miller, (Wed Feb 13, 1:54 am)
Re: distributed module configuration, Sam Ravnborg, (Wed Feb 13, 2:04 am)
Re: distributed module configuration, David Miller, (Wed Feb 13, 2:06 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Russell King, (Wed Feb 13, 3:05 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Russell King, (Wed Feb 13, 3:07 am)
Re: distributed module configuration, Giacomo A. Catenazzi, (Wed Feb 13, 3:09 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Theodore Tso, (Wed Feb 13, 3:36 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Catalin Marinas, (Wed Feb 13, 3:48 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Christoph Hellwig, (Wed Feb 13, 3:54 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Catalin Marinas, (Wed Feb 13, 3:58 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Jeff Garzik, (Wed Feb 13, 5:06 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Russell King, (Wed Feb 13, 5:19 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Frank Seidel, (Wed Feb 13, 5:53 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), John W. Linville, (Wed Feb 13, 8:06 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Joel Becker, (Wed Feb 13, 9:45 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Roel Kluin, (Wed Feb 13, 10:12 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Adrian Bunk, (Wed Feb 13, 10:24 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), J. Bruce Fields, (Wed Feb 13, 10:52 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Adrian Bunk, (Wed Feb 13, 10:53 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Greg KH, (Wed Feb 13, 10:55 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Alan Cox, (Wed Feb 13, 11:08 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Linus Torvalds, (Wed Feb 13, 11:09 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Ann Davis, (Wed Feb 13, 1:24 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Adrian Bunk, (Wed Feb 13, 1:57 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Russell King, (Thu Feb 14, 1:14 am)
Re: distributed module configuration [Was: Announce: Linux ..., Geert Uytterhoeven, (Thu Feb 14, 1:48 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Stephen Rothwell, (Thu Feb 14, 5:22 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Benny Halevy, (Thu Feb 14, 10:35 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Linus Torvalds, (Thu Feb 14, 11:01 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Gene Heskett, (Thu Feb 14, 11:32 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Greg KH, (Thu Feb 14, 1:32 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Gene Heskett, (Thu Feb 14, 1:39 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Roland Dreier, (Thu Feb 14, 4:22 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Stephen Rothwell, (Thu Feb 14, 6:02 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Ingo Molnar, (Thu Feb 14, 6:11 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Valdis.Kletnieks, (Thu Feb 14, 11:29 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Valdis.Kletnieks, (Thu Feb 14, 11:44 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Gene Heskett, (Fri Feb 15, 2:26 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Valdis.Kletnieks, (Fri Feb 15, 7:52 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), J. Bruce Fields, (Fri Feb 15, 10:15 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Roel Kluin, (Fri Feb 15, 3:59 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Roel Kluin, (Fri Feb 15, 4:05 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Russell King, (Fri Feb 15, 4:23 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Andrew Morton, (Fri Feb 15, 4:37 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Randy Dunlap, (Fri Feb 15, 4:47 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Alan Cox, (Fri Feb 15, 5:03 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Russell King, (Fri Feb 15, 5:09 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Andrew Morton, (Fri Feb 15, 5:12 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Russell King, (Fri Feb 15, 5:17 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Andrew Morton, (Fri Feb 15, 5:21 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Randy Dunlap, (Fri Feb 15, 5:25 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Russell King, (Fri Feb 15, 5:31 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Alexey Dobriyan, (Fri Feb 15, 5:42 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Andrew Morton, (Fri Feb 15, 5:45 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Russell King, (Sat Feb 16, 1:08 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Thomas Gleixner, (Sat Feb 16, 4:16 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), James Bottomley, (Sat Feb 16, 8:14 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Stephen Rothwell, (Sat Feb 16, 10:25 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), David Woodhouse, (Sun Feb 17, 5:42 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), James Bottomley, (Sun Feb 17, 7:27 am)
Re: distributed module configuration, Pavel Machek, (Sun Feb 17, 8:51 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Frank Seidel, (Mon Feb 18, 5:45 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Stephen Rothwell, (Wed Feb 20, 7:55 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Stefan Richter, (Wed Feb 20, 8:38 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Theodore Tso, (Wed Feb 20, 8:42 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Adrian Bunk, (Wed Feb 20, 10:13 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Theodore Tso, (Thu Feb 21, 6:22 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Stephen Rothwell, (Mon Feb 25, 8:54 pm)
Re: Announce: Linux-next (Or Andrew's dream :-)), Stephen Rothwell, (Fri Feb 29, 5:45 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Adrian Bunk, (Fri Feb 29, 6:04 am)
Re: Announce: Linux-next (Or Andrew's dream :-)), Stephen Rothwell, (Fri Feb 29, 4:45 pm)