Wednesday, April 24, 2013

oprofile tutorial


http://ssvb.github.io/2011/08/23/yet-another-oprofile-tutorial.html

Friday, March 22, 2013

pdflush link

http://www.westnet.com/~gsmith/content/linux-pdflush.htm

Tuesday, February 5, 2013

full git history of Linux kernel

http://stackoverflow.com/questions/3264283/linux-kernel-historical-git-repository-with-full-history

http://archive.org/details/git-history-of-linux

http://lwn.net/Articles/285366/

Monday, November 12, 2012

svn list logs between two tags

http://www.bernzilla.com/item.php?id=613

In short:

svn log -v --stop-on-copy file:///dev/svn/tags/MY_FIRST_TAG

(get r1)

svn log -v --stop-on-copy file:///dev/svn/tags/MY_SECOND_TAG
(get r2)


svn log -v -r42:79 file:///dev/svn/trunk
(r42 is r1, 79 is r2).

Friday, November 9, 2012

lock detection in Linux kernel

Lockdep:

http://lwn.net/Articles/321663/

http://lwn.net/Articles/185666/