On Thu, Sep 30, 2010 at 07:29:27AM +0200, Florian Mickler wrote: > git-log is not that expressive here, as it only shows the history of > current HEAD (the currently checked out version). You can post the > output of 'git bisect log'. > If you wanna know how the region looks like you can type 'git bisect > visualize'. Wow that's neat. I can't be sure I understand exactly what its saying but if I'm looking at it right I'm in the middle of a temporary fork that was created just after 2.6.34-rc6 and was merged with 2.6.35-rc1. This is what my git bisect log looks like: tm@roll:~/src/linux-2.6$ git bisect log git bisect start # good: [e40152ee1e1c7a63f4777791863215e3faa37a86] Linus 2.6.34 git bisect good e40152ee1e1c7a63f4777791863215e3faa37a86 # bad: [9fe6206f400646a2322096b56c59891d530e8d51] Linux 2.6.35 git bisect bad 9fe6206f400646a2322096b56c59891d530e8d51 # skip: [e0bc5d4a54938eedcde14005210e6c08aa9727e4] Merge branch 'i2c-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging git bisect skip e0bc5d4a54938eedcde14005210e6c08aa9727e4 # good: [c72ea83d39efa71bf0e3fc1125e780071a79f1bc] e1000e: Remove unnessary log message git bisect good c72ea83d39efa71bf0e3fc1125e780071a79f1bc # skip: [4403158ba295c8e36f6736b1bb12d0f7e1923dac] Ban ecryptfs over ecryptfs git bisect skip 4403158ba295c8e36f6736b1bb12d0f7e1923dac # bad: [c392c4c6dccf7c64c113b473c7eceedf25eddd51] Merge branch 'perf' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux-2.6 into perf/core git bisect bad c392c4c6dccf7c64c113b473c7eceedf25eddd51 # good: [f869097e884d8cb65b2bb7831ca57b7dffb66fdd] perf session: Make read_build_id routines look at the host_machine too git bisect good f869097e884d8cb65b2bb7831ca57b7dffb66fdd # bad: [b8ae30ee26d379db436b0b8c8c3ff1b52f69e5d1] Merge branch 'sched-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip git bisect bad b8ae30ee26d379db436b0b8c8c3ff1b52f69e5d1 # good: [1014cfe2fb4cdd663137aafb21448cb613dd6a7d] Merge branch 'core-locking-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip git bisect good 1014cfe2fb4cdd663137aafb21448cb613dd6a7d # good: [3aaf51ace5975050ab43c7d4d7e439e0ae7d13d7] Merge branch 'oprofile-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip git bisect good 3aaf51ace5975050ab43c7d4d7e439e0ae7d13d7 # good: [371fd7e7a56a5c136d31aa980011bd2f131c3ef5] sched: Add enqueue/dequeue flags git bisect good 371fd7e7a56a5c136d31aa980011bd2f131c3ef5 # bad: [e7858f52a5cb868289a72264534a1f05f3340c6c] Merge branch 'cpu_stop' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/misc into sched/core git bisect bad e7858f52a5cb868289a72264534a1f05f3340c6c Just a few more steps until we find the culprit, it said 7 revisions remained after this bisect. Tim McGrath