Tagged Questions
7
votes
1answer
111 views
Is oprofile still alive and well?
Is the oprofile project still alive and well?
I know it is still supported in the default linux kernel and that the user space utilities works (at least on the Arch linux I'm running), but the ...
5
votes
4answers
958 views
Is there any similar tool for Linux that works like Shark on Mac OS X?
Shark on Mac OS X is a great tool for profiling an application on a running system. Is there any similar tools for Linux?
OProfile looks like it could be, anyone used it?
4
votes
2answers
528 views
How am I supposed to interpret OProfile output?
I tried profiling my application with OProfile recently. The data gathered is already very valuable to me, but I'm having difficulties with its precise interpretation. After running my app with ...
2
votes
1answer
422 views
Monitoring context switches in Linux
Is there any way to determine whenever a context switch takes place without the use of profilers? I have written a C program to monitor the time taken for different processes in a program to finish ...
1
vote
1answer
240 views
oprofile can not use hardware performance counters
I have debian 5.0 linux server on an IBM HS22 blade with 2 Xeon E5504 processors. I found out that oprofile could not recognize hardware performance counters on this setup, only timer interrupt is ...
1
vote
1answer
160 views
Basic doubt in Oprofile
I am trying to profile my software (in Linux) with oprofile. My software consists of both userspace and kernel module. First my doubt is what does the --separate=kernel option do? What will be the ...
0
votes
0answers
15 views
Ubuntu 2.6.35 vmlinux image for kernel profiling using oprofile
HI i want to run profiling on Kernel using Oprofile but it requires uncompressed vmlinux image and ubuntu 10.10 provides vmlinuz which is stripped and compressed. Pls help
0
votes
1answer
40 views
Using O-Profile with Linux RedHat OS => conflict with NMI watchdog
I was trying to run o-profile (a profiling program for linux) and kept getting an error while starting saying something like counter 0 was being use by 'NMI watchdog'. Is NMI part of the OS or is it a ...
0
votes
1answer
38 views
Setup OProfile on proprietary kernel
I'm trying to set up OProfile on our proprietary kernel with no success.
The kernel is based on: 2.6.34.8 running on mips74k CPU.
Is it possible to do so?
If so, I would really appreciate any guide ...
0
votes
1answer
55 views
oprofile isn't sampling LLC_MISSES cache events
I'm trying to use oprofile to record cache misses in a large realtime app:
$ sudo opcontrol --no-vmlinux --event=LLC_MISSES:100000 --session-dir=/var/tmp/oprofile -c=5 --start
But when I look at ...
0
votes
2answers
47 views
Can oprofile be made to use a directory other than /root/.oprofile?
We're trying to use oprofile to track down performance problems on a server cluster. However, the servers in question have a read-only file system, where /var/tmp is the only writeable directory.
...