lock_acquire      305 include/linux/lockdep.h extern void lock_acquire(struct lockdep_map *lock, unsigned int subclass,
lock_acquire      417 include/linux/lockdep.h #  define spin_acquire(l, s, t, i)		lock_acquire(l, s, t, 0, 2, NULL, i)
lock_acquire      418 include/linux/lockdep.h #  define spin_acquire_nest(l, s, t, n, i)	lock_acquire(l, s, t, 0, 2, n, i)
lock_acquire      420 include/linux/lockdep.h #  define spin_acquire(l, s, t, i)		lock_acquire(l, s, t, 0, 1, NULL, i)
lock_acquire      421 include/linux/lockdep.h #  define spin_acquire_nest(l, s, t, n, i)	lock_acquire(l, s, t, 0, 1, NULL, i)
lock_acquire      431 include/linux/lockdep.h #  define rwlock_acquire(l, s, t, i)		lock_acquire(l, s, t, 0, 2, NULL, i)
lock_acquire      432 include/linux/lockdep.h #  define rwlock_acquire_read(l, s, t, i)	lock_acquire(l, s, t, 2, 2, NULL, i)
lock_acquire      434 include/linux/lockdep.h #  define rwlock_acquire(l, s, t, i)		lock_acquire(l, s, t, 0, 1, NULL, i)
lock_acquire      435 include/linux/lockdep.h #  define rwlock_acquire_read(l, s, t, i)	lock_acquire(l, s, t, 2, 1, NULL, i)
lock_acquire      446 include/linux/lockdep.h #  define mutex_acquire(l, s, t, i)		lock_acquire(l, s, t, 0, 2, NULL, i)
lock_acquire      448 include/linux/lockdep.h #  define mutex_acquire(l, s, t, i)		lock_acquire(l, s, t, 0, 1, NULL, i)
lock_acquire      458 include/linux/lockdep.h #  define rwsem_acquire(l, s, t, i)		lock_acquire(l, s, t, 0, 2, NULL, i)
lock_acquire      459 include/linux/lockdep.h #  define rwsem_acquire_read(l, s, t, i)	lock_acquire(l, s, t, 1, 2, NULL, i)
lock_acquire      461 include/linux/lockdep.h #  define rwsem_acquire(l, s, t, i)		lock_acquire(l, s, t, 0, 1, NULL, i)
lock_acquire      462 include/linux/lockdep.h #  define rwsem_acquire_read(l, s, t, i)	lock_acquire(l, s, t, 1, 1, NULL, i)
lock_acquire      473 include/linux/lockdep.h #  define lock_map_acquire(l)		lock_acquire(l, 0, 0, 0, 2, NULL, _THIS_IP_)
lock_acquire      475 include/linux/lockdep.h #  define lock_map_acquire(l)		lock_acquire(l, 0, 0, 0, 1, NULL, _THIS_IP_)
lock_acquire      137 include/linux/rcuclassic.h 			lock_acquire(&rcu_lock_map, 0, 0, 2, 1, NULL, _THIS_IP_)