3

What is the time unit in the lock stat output from /proc/lock_stat? microsecond or nanosecond?

class name    con-bounces    contentions   waittime-min   waittime-max waittime-total    acq-bounces   acquisitions   holdtime-min   holdtime-max holdtime-total
-----------------------------------------------------------------------------
&(&dentry->d_lock)->rlock:       2917691        3323806           0.10      157427.70  2221545741.66        8786458       19485395           0.00         235.65    38647798.25
eddyxu
  • 817

1 Answers1

3

Buried in the documentation is the following line:

The integer part of the time values is in us.

So those values are in microseconds.