lockdep: Fix lock_chain::base size
authorPeter Zijlstra <[email protected]>
Wed, 30 Mar 2016 09:36:59 +0000 (11:36 +0200)
committerIngo Molnar <[email protected]>
Sat, 23 Apr 2016 11:53:03 +0000 (13:53 +0200)
commit75dd602a5198a6e5f75534db52b6e6fbaabb33d1
treec7ea5657c955e30f93c11127f954343519161252
parentc24697566298df04cac9913e0601501b5ee2b3f5
lockdep: Fix lock_chain::base size

lock_chain::base is used to store an index into the chain_hlocks[]
array, however that array contains more elements than can be indexed
using the u16.

Change the lock_chain structure to use a bitfield to encode the data
it needs and add BUILD_BUG_ON() assertions to check the fields are
wide enough.

Also, for DEBUG_LOCKDEP, assert that we don't run out of elements of
that array; as that would wreck the collision detectoring.

Signed-off-by: Peter Zijlstra (Intel) <[email protected]>
Cc: Alfredo Alvarez Fernandez <[email protected]>
Cc: Andrew Morton <[email protected]>
Cc: Linus Torvalds <[email protected]>
Cc: Paul E. McKenney <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Sedat Dilek <[email protected]>
Cc: Theodore Ts'o <[email protected]>
Cc: Thomas Gleixner <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Ingo Molnar <[email protected]>
include/linux/lockdep.h
kernel/locking/lockdep.c
kernel/locking/lockdep_proc.c