n-alexander
n-alexander

Reputation: 15363

find process that's generating CAL interrupts (syscalls)

I have a peak of CAL type interrupts, 20,000 per second. How do I find the process that's generating them on SUSE11?

Thanks!

Upvotes: 0

Views: 879

Answers (1)

sespindola
sespindola

Reputation: 156

You could easily determine that with SystemTap

It's a dynamic probing system, similar to Dtrace in Solaris that allows you to inspect
the kernel and applications syscalls.

Here's how to install it in SLES 11:
http://publib.boulder.ibm.com/infocenter/lnxinfo/v3r0m0/topic/liaai/systemTap/liaaisystapsuse.htm

Upvotes: 1

Related Questions