http://www.ibm.com/developerworks/cn/linux/l-gnuprof.html
http://blog.chinaunix.net/uid-13746440-id-3152484.html
http://www.cnblogs.com/bangerlee/archive/2012/08/30/2659435.html
The easiest way to profile Ceph’s CPU consumption is to use the oprofile system-wide profiler. Installation If you are using a Debian/Ubuntu distribution, you can install oprofile by executing the fol
OProfile是Linux内核支持的一种性能分析机制。 它在时钟中断处理入口处建立监测点,记录被中断的上下文现场,由配套的用户态的工具oprof_start负责在用户态收集数据,opreport则分析数据并给出分析报告。 通过这个工具,开发人员可以得知一个程序的瓶颈在哪里,进而指导代码优化。