On Wed, 03 Nov 2010 13:39:57 +1000 Michael Sallaway <michael@xxxxxxxxxxxx> wrote: > > On 3/11/2010 1:20 PM, ClÃudio Martins wrote: > > Also, as a last resort, you could try to apply the patch and rebuild > > using the sources of your favorite distro kernel. The patch is quite > > simple, but be warned that the MPTSAS module also got some other > > potentially interesting fixes on the 2.6.36 cycle. > > Interesting.... where might I find out more info about that? (trying to > figure out if I should stay with .35 for now....) > Hi, What I do is follow Linus' git repository history periodically. I did a "git clone" of his repo and now do a "git pull" from time to time. If you don't have done it already, taking a little time to get to know the git basic commands is really useful for this kind of stuff. You don't even need to know all the details of commiting, etc, but just knowing how to use git-log and git-diff is already useful. For example, you would do git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git cd linux-2.6 git log --pretty=oneline drivers/message/fusion/ Would give you commits related to mpt and mptsas drivers, while ignoring unrelated commits. It is also easy to find out whether a given release has a specific commit or not and find commits by a specific author and much, much more. The commit messages also tend to explain quite well the issues fixed, so it is usually enough to figure if a given commit is interesting or not. git-diff will also generate a patch which is often good enough to apply to an older kernel, provided the piece of code hasn't changed a lot. Hope this helps. Best regards ClÃudio -- To unsubscribe from this list: send the line "unsubscribe linux-raid" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html