rcu: Print stall-warning NMI dyntick state in hexadecimal
authorPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Mon, 11 Jun 2018 19:29:16 +0000 (12:29 -0700)
committerPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Thu, 12 Jul 2018 22:39:24 +0000 (15:39 -0700)
commit89b4cd4b9ebf15b01f70b85105ea5f5c6b2a3788
treeb1ecd0b814851eb3fe2274090e2e0fb0b746e2e6
parentcfe15038f4fc83503711a0880ba438f2deee91ff
rcu: Print stall-warning NMI dyntick state in hexadecimal

The ->dynticks_nmi_nesting field records the nesting depth of both
interrupt and NMI handlers.  Because the kernel can enter interrupts
and never leave them (and vice versa) and because NMIs can interrupt
manipulation of the ->dynticks_nmi_nesting field, the values in this
field must be both chosen and maniupated very carefully.  As a result,
although the value is zero when the corresponding CPU is executing
neither an interrupt nor an NMI handler, it is 4,611,686,018,427,387,906
on 64-bit systems when there is a single level of interrupt/NMI handling
in progress.

This number is difficult to remember and interpret, so this commit
switches the output to hexadecimal, resulting in the much nicer
0x4000000000000002.

Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
kernel/rcu/tree_plugin.h