basic-profiling.rst 1.8 KB
Newer Older
1 2 3 4
Basic kernel profiling
======================


L
Linus Torvalds 已提交
5
These instructions are deliberately very basic. If you want something clever,
6 7 8
go read the real docs ;-)

Please don't add more stuff, but feel free to
L
Linus Torvalds 已提交
9
correct my mistakes ;-)    (mbligh@aracnet.com)
10

L
Linus Torvalds 已提交
11 12
Thanks to John Levon, Dave Hansen, et al. for help writing this.

13 14
``<test>`` is the thing you're trying to measure.
Make sure you have the correct ``System.map`` / ``vmlinux`` referenced!
L
Linus Torvalds 已提交
15

16 17 18
It is probably easiest to use ``make install`` for linux and hack
``/sbin/installkernel`` to copy ``vmlinux`` to ``/boot``, in addition to
``vmlinuz``, ``config``, ``System.map``, which are usually installed by default.
L
Linus Torvalds 已提交
19 20 21

Readprofile
-----------
22 23

A recent ``readprofile`` command is needed for 2.6, such as found in util-linux
L
Linus Torvalds 已提交
24 25
2.12a, which can be downloaded from:

26
	http://www.kernel.org/pub/linux/utils/util-linux/
L
Linus Torvalds 已提交
27 28 29

Most distributions will ship it already.

30
Add ``profile=2`` to the kernel command line.
L
Linus Torvalds 已提交
31

32 33 34 35 36
Some ``readprofile`` commands::

	clear		readprofile -r
			<test>
	dump output	readprofile -m /boot/System.map > captured_profile
L
Linus Torvalds 已提交
37 38 39

Oprofile
--------
40 41

Get the source (see Changes for required version) from
42
http://oprofile.sourceforge.net/ and add ``idle=poll`` to the kernel command
43 44
line.

45
Configure with ``CONFIG_PROFILING=y`` and ``CONFIG_OPROFILE=y`` & reboot on new kernel::
46

47 48
	./configure --with-kernel-support
	make install
L
Linus Torvalds 已提交
49 50 51 52 53

For superior results, be sure to enable the local APIC. If opreport sees
a 0Hz CPU, APIC was not on. Be aware that idle=poll may mean a performance
penalty.

54 55 56 57 58
One time setup::

			opcontrol --setup --vmlinux=/boot/vmlinux

Some ``opcontrol`` commands::
L
Linus Torvalds 已提交
59

60 61
	clear		opcontrol --reset
	start		opcontrol --start
L
Linus Torvalds 已提交
62
		<test>
63 64
	stop		opcontrol --stop
	dump output	opreport >  output_file
L
Linus Torvalds 已提交
65

66
To only report on the kernel, run ``opreport -l /boot/vmlinux > output_file``
L
Linus Torvalds 已提交
67 68

A reset is needed to clear old statistics, which survive a reboot.