commit | da21c5a58a7f30db69e04e06dfb6777ccbb1113c | [log] [tgz] |
---|---|---|
author | Anna-Maria Gleixner <[email protected]> | Thu Dec 21 11:41:41 2017 +0100 |
committer | Ingo Molnar <[email protected]> | Tue Jan 16 02:35:46 2018 +0100 |
tree | 569a93757d6308a69a37df5f1982a33a791ab24f | |
parent | 3f0b9e8eec7262648ab9c8321bf931624ee5c10a [diff] |
hrtimer: Make room in 'struct hrtimer_cpu_base' The upcoming softirq based hrtimers support requires an additional field in the hrtimer_cpu_base struct, which would grow the struct size beyond a cache line. The hrtimer_cpu_base::nr_retries and ::nr_hangs members are solely used for diagnostic output and have no requirement to be 'unsigned int'. Make them 'unsigned short' to create room for the new struct member. No functional change. Signed-off-by: Anna-Maria Gleixner <[email protected]> Cc: Christoph Hellwig <[email protected]> Cc: John Stultz <[email protected]> Cc: Linus Torvalds <[email protected]> Cc: Peter Zijlstra <[email protected]> Cc: Thomas Gleixner <[email protected]> Cc: [email protected] Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Ingo Molnar <[email protected]>