Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is "hrtimer: interrupt took x ns" mean? seen in dmesg

Tags:

linux

What is 'hrtimer - interrupt took x ns' mean?

I see this in dmesg on Linux (RH)

like image 765
Jijo John Avatar asked Sep 20 '16 17:09

Jijo John


2 Answers

It just indicates that CPU took x nano seconds to finish processing all soft-expired timers.

like image 200
Apoorv Avatar answered Sep 19 '22 12:09

Apoorv


This message is often found in cases of high CPU usage, and is an interrupt event for your CPU. For more information consider reading this: https://www.linux.com/tutorials/kernel-interrupt-overview/

like image 42
ruppsn Avatar answered Sep 18 '22 12:09

ruppsn