Lock chains are only tracked with CONFIG_PROVE_LOCKING=y. Do not report
the memory required for the lock chain array if CONFIG_PROVE_LOCKING=n.
See also commit ca58abcb4a6d ("lockdep: sanitise CONFIG_PROVE_LOCKING").

Include the size of the chain_hlocks[] array.

Cc: Peter Zijlstra <pet...@infradead.org>
Cc: Waiman Long <long...@redhat.com>
Cc: Johannes Berg <johan...@sipsolutions.net>
Signed-off-by: Bart Van Assche <bvanass...@acm.org>
---
 kernel/locking/lockdep.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/kernel/locking/lockdep.c b/kernel/locking/lockdep.c
index 193fef487a15..b00c6edd6a28 100644
--- a/kernel/locking/lockdep.c
+++ b/kernel/locking/lockdep.c
@@ -4282,10 +4282,11 @@ void __init lockdep_init(void)
               (sizeof(lock_classes) +
                sizeof(classhash_table) +
                sizeof(list_entries) +
-               sizeof(lock_chains) +
                sizeof(chainhash_table)
 #ifdef CONFIG_PROVE_LOCKING
                + sizeof(lock_cq)
+               + sizeof(lock_chains)
+               + sizeof(chain_hlocks)
 #endif
                ) / 1024
                );
-- 
2.21.0.rc0.258.g878e2cd30e-goog

Reply via email to