Lines Matching refs:caller
17 static inline void show (char *str, spinlock_t *lock, unsigned long caller) in show() argument
22 str, lock, cpu, (unsigned int) caller, in show()
26 static inline void show_read (char *str, rwlock_t *lock, unsigned long caller) in show_read() argument
31 str, lock, cpu, (unsigned int) caller, in show_read()
35 static inline void show_write (char *str, rwlock_t *lock, unsigned long caller) in show_write() argument
40 str, lock, cpu, (unsigned int) caller); in show_write()
53 unsigned long caller, val; in _do_spin_lock() local
58 GET_CALLER(caller); in _do_spin_lock()
69 show(str, lock, caller); in _do_spin_lock()
76 lock->owner_pc = ((unsigned int)caller); in _do_spin_lock()
79 current->thread.smp_lock_pc = ((unsigned int)caller); in _do_spin_lock()
84 unsigned long val, caller; in _spin_trylock() local
87 GET_CALLER(caller); in _spin_trylock()
94 lock->owner_pc = ((unsigned int)caller); in _spin_trylock()
97 current->thread.smp_lock_pc = ((unsigned int)caller); in _spin_trylock()
115 unsigned long caller, val; in _do_read_lock() local
120 GET_CALLER(caller); in _do_read_lock()
126 show_read(str, rw, caller); in _do_read_lock()
145 rw->reader_pc[cpu] = ((unsigned int)caller); in _do_read_lock()
147 current->thread.smp_lock_pc = ((unsigned int)caller); in _do_read_lock()
152 unsigned long caller, val; in _do_read_unlock() local
157 GET_CALLER(caller); in _do_read_unlock()
177 show_read(str, rw, caller); in _do_read_unlock()
186 unsigned long caller, val; in _do_write_lock() local
191 GET_CALLER(caller); in _do_write_lock()
197 show_write(str, rw, caller); in _do_write_lock()
222 show_write(str, rw, caller); in _do_write_lock()
233 show_write(str, rw, caller); in _do_write_lock()
251 show_write(str, rw, caller); in _do_write_lock()
260 rw->writer_pc = ((unsigned int)caller); in _do_write_lock()
263 current->thread.smp_lock_pc = ((unsigned int)caller); in _do_write_lock()
268 unsigned long caller, val; in _do_write_unlock() local
272 GET_CALLER(caller); in _do_write_unlock()
294 show_write("write_unlock", rw, caller); in _do_write_unlock()