Code:
# cat /proc/uptime
306212.35 2428180.06
Now, iirc the first is uptime, the second is idle time. How can the box be idle 8 times longer then it's been up?
Lets look at something else weird:
Code:
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.0 8396 496 ? Ss Jun19 0:48 init [2]
root 2 0.0 0.0 0 0 ? S Jun19 0:00 [kthreadd]
root 3 0.0 0.0 0 0 ? S Jun19 0:00 [migration/0]
root 4 6020368 0.0 0 0 ? S Jun19 21067849:39 [ksoftirqd/0]
normal, normal, normal . . . wtf?
Code:
# procstat 4 | grep -E 'stime'
stime: 18443940163.560001
Now those are jiffies in kernel mode. So sayeth wolframalpha,
18 billion jiffies equals:
5 years 10 months 5 days 13 hours 10 minutes 1.63560001 seconds
This just a weird xen+tickless kernel bug? nothing major just really annoying.
Seems related to
this ancient kernel bug.