/openbmc/linux/include/asm-generic/ |
H A D | io.h | 191 log_read_mmio(8, addr, _THIS_IP_, _RET_IP_); in readb() 206 log_read_mmio(16, addr, _THIS_IP_, _RET_IP_); in readw() 221 log_read_mmio(32, addr, _THIS_IP_, _RET_IP_); in readl() 237 log_read_mmio(64, addr, _THIS_IP_, _RET_IP_); in readq() 251 log_write_mmio(value, 8, addr, _THIS_IP_, _RET_IP_); in writeb() 263 log_write_mmio(value, 16, addr, _THIS_IP_, _RET_IP_); in writew() 308 log_read_mmio(8, addr, _THIS_IP_, _RET_IP_); in readb_relaxed() 321 log_read_mmio(16, addr, _THIS_IP_, _RET_IP_); in readw_relaxed() 334 log_read_mmio(32, addr, _THIS_IP_, _RET_IP_); in readl_relaxed() 347 log_read_mmio(64, addr, _THIS_IP_, _RET_IP_); in readq_relaxed() [all …]
|
/openbmc/linux/fs/btrfs/ |
H A D | locking.h | 101 rwsem_acquire(&owner->lock##_map, 0, 0, _THIS_IP_); \ 102 rwsem_release(&owner->lock##_map, _THIS_IP_); \ 117 rwsem_acquire_read(&owner->lock##_map, 0, 0, _THIS_IP_) 124 rwsem_release(&owner->lock##_map, _THIS_IP_) 132 rwsem_acquire(&owner->btrfs_state_change_map[i], 0, 0, _THIS_IP_); \ 133 rwsem_release(&owner->btrfs_state_change_map[i], _THIS_IP_); \ 137 rwsem_acquire_read(&owner->btrfs_state_change_map[i], 0, 0, _THIS_IP_) 140 rwsem_release(&owner->btrfs_state_change_map[i], _THIS_IP_)
|
/openbmc/linux/include/linux/ |
H A D | kernel.h | 333 __trace_bprintk(_THIS_IP_, trace_printk_fmt, ##args); \ 335 __trace_printk(_THIS_IP_, fmt, ##args); \ 375 __trace_bputs(_THIS_IP_, trace_printk_fmt); \ 377 __trace_puts(_THIS_IP_, str, strlen(str)); \ 396 __ftrace_vbprintk(_THIS_IP_, trace_printk_fmt, vargs); \ 398 __ftrace_vprintk(_THIS_IP_, fmt, vargs); \
|
H A D | instruction_pointer.h | 9 #ifndef _THIS_IP_ 10 #define _THIS_IP_ ({ __label__ __here; __here: (unsigned long)&&__here; }) macro
|
H A D | lockdep.h | 579 #define lock_map_acquire(l) lock_acquire_exclusive(l, 0, 0, NULL, _THIS_IP_) 580 #define lock_map_acquire_try(l) lock_acquire_exclusive(l, 0, 1, NULL, _THIS_IP_) 581 #define lock_map_acquire_read(l) lock_acquire_shared_recursive(l, 0, 0, NULL, _THIS_IP_) 583 #define lock_map_release(l) lock_release(l, _THIS_IP_) 584 #define lock_map_sync(l) lock_sync(l, 0, 0, 1, NULL, _THIS_IP_) 590 lock_acquire(&(lock)->dep_map, 0, 0, 0, 1, NULL, _THIS_IP_); \ 591 lock_release(&(lock)->dep_map, _THIS_IP_); \ 596 lock_acquire(&(lock)->dep_map, 0, 0, 1, 1, NULL, _THIS_IP_); \ 597 lock_release(&(lock)->dep_map, _THIS_IP_); \ 603 _THIS_IP_); \ [all …]
|
H A D | bottom_half.h | 20 __local_bh_disable_ip(_THIS_IP_, SOFTIRQ_DISABLE_OFFSET); in local_bh_disable() 33 __local_bh_enable_ip(_THIS_IP_, SOFTIRQ_DISABLE_OFFSET); in local_bh_enable()
|
H A D | spinlock_api_up.h | 34 do { __local_bh_disable_ip(_THIS_IP_, SOFTIRQ_LOCK_OFFSET); ___LOCK(lock); } while (0) 49 do { __local_bh_enable_ip(_THIS_IP_, SOFTIRQ_LOCK_OFFSET); \
|
H A D | trace.h | 43 str ? __trace_array_puts(tr, _THIS_IP_, str, strlen(str)) : -1; \
|
H A D | rcupdate.h | 334 lock_acquire(map, 0, 0, 2, 0, NULL, _THIS_IP_); in rcu_lock_acquire() 339 lock_acquire(map, 0, 1, 2, 0, NULL, _THIS_IP_); in rcu_try_lock_acquire() 344 lock_release(map, _THIS_IP_); in rcu_lock_release()
|
H A D | ww_mutex.h | 188 mutex_release(&ctx->dep_map, _THIS_IP_); in ww_acquire_fini()
|
H A D | jbd2.h | 1305 rwsem_acquire(&j->j_trans_commit_map, 0, 0, _THIS_IP_); \ 1306 rwsem_release(&j->j_trans_commit_map, _THIS_IP_); \
|
/openbmc/linux/lib/ |
H A D | locking-selftest.c | 1855 mutex_release(&o2.base.dep_map, _THIS_IP_); in ww_test_edeadlk_normal() 1880 mutex_release(&o2.base.dep_map, _THIS_IP_); in ww_test_edeadlk_normal_slow() 1907 mutex_release(&o2.base.dep_map, _THIS_IP_); in ww_test_edeadlk_no_unlock() 1931 mutex_release(&o2.base.dep_map, _THIS_IP_); in ww_test_edeadlk_no_unlock_slow() 1956 mutex_release(&o2.base.dep_map, _THIS_IP_); in ww_test_edeadlk_acquire_more() 1977 mutex_release(&o2.base.dep_map, _THIS_IP_); in ww_test_edeadlk_acquire_more_slow() 1998 mutex_release(&o2.base.dep_map, _THIS_IP_); in ww_test_edeadlk_acquire_more_edeadlk() 2002 mutex_release(&o3.base.dep_map, _THIS_IP_); in ww_test_edeadlk_acquire_more_edeadlk() 2024 mutex_release(&o2.base.dep_map, _THIS_IP_); in ww_test_edeadlk_acquire_more_edeadlk_slow() 2028 mutex_release(&o3.base.dep_map, _THIS_IP_); in ww_test_edeadlk_acquire_more_edeadlk_slow() [all …]
|
/openbmc/linux/samples/ftrace/ |
H A D | sample-trace-array.c | 55 trace_array_printk(tr, _THIS_IP_, "trace_array_printk: count=%d\n", in simple_thread_func()
|
/openbmc/linux/arch/sh/include/asm/ |
H A D | kexec.h | 65 newregs->pc = _THIS_IP_; in crash_setup_regs()
|
/openbmc/linux/arch/x86/include/asm/ |
H A D | linkage.h | 16 #define _THIS_IP_ ({ unsigned long __here; asm ("lea 0(%%rip), %0" : "=r" (__here)); __here; }) macro
|
H A D | kexec.h | 115 newregs->ip = _THIS_IP_; in crash_setup_regs()
|
/openbmc/linux/drivers/md/bcache/ |
H A D | closure.h | 204 cl->ip = _THIS_IP_; in closure_set_ip()
|
/openbmc/linux/drivers/dma-buf/ |
H A D | dma-fence.c | 340 lock_release(&dma_fence_lockdep_map, _THIS_IP_); in __dma_fence_might_wait() 344 lock_acquire(&dma_fence_lockdep_map, 0, 0, 1, 1, NULL, _THIS_IP_); in __dma_fence_might_wait()
|
/openbmc/linux/arch/s390/include/asm/ |
H A D | processor.h | 366 psw.addr = _THIS_IP_; in disabled_wait()
|
/openbmc/linux/kernel/printk/ |
H A D | printk.c | 1871 spin_acquire(&console_owner_dep_map, 0, 0, _THIS_IP_); in console_lock_spinning_enable() 1906 spin_release(&console_owner_dep_map, _THIS_IP_); in console_lock_spinning_disable_and_check() 1916 spin_release(&console_owner_dep_map, _THIS_IP_); in console_lock_spinning_disable_and_check() 1923 spin_release(&console_owner_dep_map, _THIS_IP_); in console_lock_spinning_disable_and_check() 1935 mutex_release(&console_lock_dep_map, _THIS_IP_); in console_lock_spinning_disable_and_check() 1995 spin_acquire(&console_owner_dep_map, 0, 0, _THIS_IP_); in console_trylock_spinning() 1999 spin_release(&console_owner_dep_map, _THIS_IP_); in console_trylock_spinning() 2008 mutex_acquire(&console_lock_dep_map, 0, 1, _THIS_IP_); in console_trylock_spinning()
|
/openbmc/linux/drivers/gpu/drm/i915/gt/ |
H A D | intel_gtt.c | 263 mutex_acquire(&vm->mutex.dep_map, 0, 0, _THIS_IP_); in i915_address_space_init() 265 mutex_release(&vm->mutex.dep_map, _THIS_IP_); in i915_address_space_init()
|
/openbmc/linux/arch/arm64/kvm/hyp/nvhe/ |
H A D | switch.c | 380 _THIS_IP_); in hyp_panic()
|
/openbmc/linux/drivers/base/power/ |
H A D | runtime.c | 511 trace_rpm_return_int(dev, _THIS_IP_, 0); in rpm_idle() 533 trace_rpm_return_int(dev, _THIS_IP_, retval); in rpm_idle() 716 trace_rpm_return_int(dev, _THIS_IP_, retval); in rpm_suspend() 938 trace_rpm_return_int(dev, _THIS_IP_, retval); in rpm_resume()
|
/openbmc/linux/mm/kasan/ |
H A D | quarantine.c | 166 ___cache_free(cache, object, _THIS_IP_); in qlink_free()
|
/openbmc/linux/include/net/ |
H A D | inet_connection_sock.h | 227 sk, what, when, (void *)_THIS_IP_); in inet_csk_reset_xmit_timer()
|