/openbmc/linux/include/linux/ |
H A D | irqflags.h | 66 } while (0) 70 } while (0) 74 } while (0) 91 } while (0) 96 } while (0) 101 } while (0) 107 } while (0) 112 } while (0) 115 # define trace_hardirqs_on_prepare() do { } while (0) 116 # define trace_hardirqs_off_finish() do { } while (0) [all …]
|
H A D | lockdep.h | 169 } while (0) 174 } while (0) 318 do { WARN_ON(debug_locks && !(cond)); } while (0) 321 do { WARN_ON_ONCE(debug_locks && !(cond)); } while (0) 375 # define lock_acquire(l, s, t, r, c, n, i) do { } while (0) 376 # define lock_release(l, i) do { } while (0) 377 # define lock_downgrade(l, i) do { } while (0) 378 # define lock_set_class(l, n, key, s, i) do { (void)(key); } while (0) 379 # define lock_set_novalidate_class(l, n, i) do { } while (0) 380 # define lock_set_subclass(l, s, i) do { } while (0) [all …]
|
H A D | hid-debug.h | 40 #define hid_dump_input(a,b,c) do { } while (0) 41 #define hid_dump_report(a,b,c,d) do { } while (0) 42 #define hid_dump_device(a,b) do { } while (0) 43 #define hid_dump_field(a,b,c) do { } while (0) 44 #define hid_resolv_usage(a,b) do { } while (0) 45 #define hid_debug_register(a, b) do { } while (0) 46 #define hid_debug_unregister(a) do { } while (0) 47 #define hid_debug_init() do { } while (0) 48 #define hid_debug_exit() do { } while (0) 49 #define hid_debug_event(a,b) do { } while (0)
|
H A D | local_lock_internal.h | 63 } while (0) 69 } while (0) 75 } while (0) 81 } while (0) 87 } while (0) 93 } while (0) 99 } while (0) 105 * critical section while staying preemptible. 114 } while (0) 120 } while (0) [all …]
|
H A D | rwlock.h | 25 } while (0) 28 do { *(lock) = __RW_LOCK_UNLOCKED(lock); } while (0) 39 # define do_raw_read_lock(rwlock) do {__acquire(lock); arch_read_lock(&(rwlock)->raw_lock); } while… 41 … do_raw_read_unlock(rwlock) do {arch_read_unlock(&(rwlock)->raw_lock); __release(lock); } while (0) 42 …ne do_raw_write_lock(rwlock) do {__acquire(lock); arch_write_lock(&(rwlock)->raw_lock); } while (0) 44 …o_raw_write_unlock(rwlock) do {arch_write_unlock(&(rwlock)->raw_lock); __release(lock); } while (0) 70 } while (0) 75 } while (0) 83 } while (0) 88 } while (0) [all …]
|
H A D | spinlock_api_up.h | 19 #define assert_raw_spin_locked(lock) do { (void)(lock); } while (0) 28 do { __acquire(lock); (void)(lock); } while (0) 31 do { preempt_disable(); ___LOCK(lock); } while (0) 34 do { __local_bh_disable_ip(_THIS_IP_, SOFTIRQ_LOCK_OFFSET); ___LOCK(lock); } while (0) 37 do { local_irq_disable(); __LOCK(lock); } while (0) 40 do { local_irq_save(flags); __LOCK(lock); } while (0) 43 do { __release(lock); (void)(lock); } while (0) 46 do { preempt_enable(); ___UNLOCK(lock); } while (0) 50 ___UNLOCK(lock); } while (0) 53 do { local_irq_enable(); __UNLOCK(lock); } while (0) [all …]
|
/openbmc/u-boot/include/linux/ |
H A D | compat.h | 120 #define DECLARE_WAITQUEUE(...) do { } while (0) 121 #define add_wait_queue(...) do { } while (0) 122 #define remove_wait_queue(...) do { } while (0) 169 #define module_put(...) do { } while (0) 206 #define dev_set_name(...) do { } while (0) 210 #define volume_sysfs_close(...) do { } while (0) 212 #define init_waitqueue_head(...) do { } while (0) 214 #define wake_up_interruptible(...) do { } while (0) 215 #define dump_stack(...) do { } while (0) 218 #define set_freezable(...) do { } while (0) [all …]
|
/openbmc/linux/drivers/scsi/qla4xxx/ |
H A D | ql4_dbg.h | 19 #define DEBUG(x) do {x;} while (0); 21 #define DEBUG(x) do {} while (0); 25 #define DEBUG2(x) do {if(ql4xextended_error_logging == 2) x;} while (0); 26 #define DEBUG2_3(x) do {x;} while (0); 28 #define DEBUG2(x) do {} while (0); 32 #define DEBUG3(x) do {if(ql4xextended_error_logging == 3) x;} while (0); 34 #define DEBUG3(x) do {} while (0); 36 #define DEBUG2_3(x) do {} while (0); 40 #define DEBUG4(x) do {x;} while (0); 42 #define DEBUG4(x) do {} while (0); [all …]
|
/openbmc/linux/include/asm-generic/ |
H A D | barrier.h | 30 #define mb() do { kcsan_mb(); __mb(); } while (0) 34 #define rmb() do { kcsan_rmb(); __rmb(); } while (0) 38 #define wmb() do { kcsan_wmb(); __wmb(); } while (0) 42 #define dma_mb() do { kcsan_mb(); __dma_mb(); } while (0) 46 #define dma_rmb() do { kcsan_rmb(); __dma_rmb(); } while (0) 50 #define dma_wmb() do { kcsan_wmb(); __dma_wmb(); } while (0) 99 #define smp_mb() do { kcsan_mb(); __smp_mb(); } while (0) 103 #define smp_rmb() do { kcsan_rmb(); __smp_rmb(); } while (0) 107 #define smp_wmb() do { kcsan_wmb(); __smp_wmb(); } while (0) 127 #define __smp_store_mb(var, value) do { WRITE_ONCE(var, value); __smp_mb(); } while (0) [all …]
|
/openbmc/qemu/tests/qemu-iotests/ |
H A D | 251.out | 6 qemu-img: warning: error while reading block status at offset status_fail_offset_0: Input/output er… 7 qemu-img: warning: error while reading block status at offset status_fail_offset_1: Input/output er… 8 qemu-img: warning: error while reading block status at offset status_fail_offset_0: Input/output er… 9 qemu-img: warning: error while reading offset read_fail_offset_0: Input/output error 10 qemu-img: warning: error while reading block status at offset status_fail_offset_1: Input/output er… 11 qemu-img: warning: error while reading offset status_fail_offset_1: Input/output error 12 qemu-img: warning: error while reading offset read_fail_offset_2: Input/output error 13 qemu-img: warning: error while reading offset read_fail_offset_3: Input/output error 14 qemu-img: warning: error while reading offset read_fail_offset_4: Input/output error 15 qemu-img: warning: error while reading offset read_fail_offset_5: Input/output error [all …]
|
/openbmc/linux/arch/csky/abiv2/inc/abi/ |
H A D | cacheflush.h | 13 #define flush_cache_all() do { } while (0) 14 #define flush_cache_mm(mm) do { } while (0) 15 #define flush_cache_dup_mm(mm) do { } while (0) 16 #define flush_cache_range(vma, start, end) do { } while (0) 17 #define flush_cache_page(vma, vmaddr, pfn) do { } while (0) 34 #define flush_dcache_mmap_lock(mapping) do { } while (0) 35 #define flush_dcache_mmap_unlock(mapping) do { } while (0) 43 #define flush_cache_vmap(start, end) do { } while (0) 44 #define flush_cache_vmap_early(start, end) do { } while (0) 45 #define flush_cache_vunmap(start, end) do { } while (0) [all …]
|
/openbmc/linux/arch/mips/include/asm/ |
H A D | hazards.h | 77 } while (0) 153 } while (0) 159 } while (0) 185 #define instruction_hazard() do { } while (0) 211 #define instruction_hazard() do { } while (0) 262 #define instruction_hazard() do { } while (0) 326 } while (0) 333 } while (0) 341 } while (0) 349 } while (0) [all …]
|
/openbmc/linux/arch/loongarch/include/asm/ |
H A D | cacheflush.h | 42 #define flush_cache_all() do { } while (0) 43 #define flush_cache_mm(mm) do { } while (0) 44 #define flush_cache_dup_mm(mm) do { } while (0) 45 #define flush_cache_range(vma, start, end) do { } while (0) 46 #define flush_cache_page(vma, vmaddr, pfn) do { } while (0) 47 #define flush_cache_vmap(start, end) do { } while (0) 48 #define flush_cache_vunmap(start, end) do { } while (0) 49 #define flush_icache_user_page(vma, page, addr, len) do { } while (0) 50 #define flush_dcache_page(page) do { } while (0) 51 #define flush_dcache_mmap_lock(mapping) do { } while (0) [all …]
|
/openbmc/qemu/linux-user/ppc/ |
H A D | cpu_loop.c | 88 cpu_abort(cs, "Critical interrupt while in user mode. " in cpu_loop() 92 cpu_abort(cs, "Machine check exception while in user mode. " in cpu_loop() 102 cpu_abort(cs, "External interrupt while in user mode. " in cpu_loop() 202 cpu_abort(cs, "Syscall exception while in user mode. " in cpu_loop() 206 cpu_abort(cs, "Decrementer interrupt while in user mode. " in cpu_loop() 210 cpu_abort(cs, "Fix interval timer interrupt while in user mode. " in cpu_loop() 214 cpu_abort(cs, "Watchdog timer interrupt while in user mode. " in cpu_loop() 218 cpu_abort(cs, "Data TLB exception while in user mode. " in cpu_loop() 222 cpu_abort(cs, "Instruction TLB exception while in user mode. " in cpu_loop() 235 cpu_abort(cs, "Doorbell interrupt while in user mode. " in cpu_loop() [all …]
|
/openbmc/linux/arch/xtensa/include/asm/ |
H A D | cacheflush.h | 114 } while (0) 120 #define flush_cache_vmap_early(start,end) do { } while (0) 139 #define flush_cache_all() do { } while (0) 140 #define flush_cache_mm(mm) do { } while (0) 141 #define flush_cache_dup_mm(mm) do { } while (0) 143 #define flush_cache_vmap(start,end) do { } while (0) 144 #define flush_cache_vmap_early(start,end) do { } while (0) 145 #define flush_cache_vunmap(start,end) do { } while (0) 148 #define flush_dcache_page(page) do { } while (0) 151 #define flush_cache_page(vma, addr, pfn) do { } while (0) [all …]
|
/openbmc/linux/drivers/scsi/mpi3mr/ |
H A D | mpi3mr_debug.h | 54 } while (0) 60 } while (0) 66 } while (0) 72 } while (0) 78 } while (0) 84 } while (0) 90 } while (0) 96 } while (0) 102 } while (0) 108 } while (0) [all …]
|
/openbmc/openbmc-tools/adcapp/src/ |
H A D | EINTR_wrappers.c | 99 while (1) in sigwrap_semop() 119 while (1) 150 while (1) in sigwrap_epoll_wait() 185 while (1) in sigwrap_epoll_pwait() 208 while (1) in sigwrap_sigwaitinfo() 227 while (1) in sigwrap_sigtimedwait() 252 while (1) in sigwrap_nanosleep() 274 while (1) in sigwrap_clock_nanosleep() 301 while (1) in sigwrap_usleep() 331 while (1) in sigwrap_poll() [all …]
|
/openbmc/openbmc-tools/pwmtachtool/src/ |
H A D | EINTR_wrappers.c | 99 while (1) in sigwrap_semop() 123 while (1) in sigwrap_epoll_wait() 158 while (1) in sigwrap_epoll_pwait() 181 while (1) in sigwrap_sigwaitinfo() 200 while (1) in sigwrap_sigtimedwait() 225 while (1) in sigwrap_nanosleep() 247 while (1) in sigwrap_clock_nanosleep() 274 while (1) in sigwrap_usleep() 304 while (1) in sigwrap_poll() 328 while (1) in sigwrap_select() [all …]
|
/openbmc/linux/fs/nls/ |
H A D | nls_ucs2_utils.h | 54 while (*ucs1++) in UniStrcat() 57 while ((*ucs1++ = *ucs2++)) in UniStrcat() 71 while ((*ucs != uc) && *ucs) in UniStrchr() 89 while ((*ucs1 == *ucs2) && *ucs1) { in UniStrcmp() 103 while ((*ucs1++ = *ucs2++)) in UniStrcpy() 115 while (*ucs1++) in UniStrlen() 128 while (*ucs1++) { in UniStrnlen() 143 while (*ucs1++) in UniStrncat() 146 while (n-- && (*ucs1 = *ucs2)) { /* copy s2 after s1 */ in UniStrncat() 161 while ((*ucs1 == *ucs2) && *ucs1 && --n) { in UniStrncmp() [all …]
|
/openbmc/linux/arch/powerpc/kernel/ |
H A D | io.c | 39 } while (--count != 0); in _insb() 53 } while (--count != 0); in _outsb() 70 } while (--count != 0); in _insw_ns() 84 } while (--count != 0); in _outsw_ns() 101 } while (--count != 0); in _insl_ns() 115 } while (--count != 0); in _outsl_ns() 131 while(n && !IO_CHECK_ALIGN(p, 4)) { in _memset_io() 136 while(n >= 4) { in _memset_io() 141 while(n) { in _memset_io() 156 while(n && (!IO_CHECK_ALIGN(vsrc, 4) || !IO_CHECK_ALIGN(dest, 4))) { in _memcpy_fromio() [all …]
|
/openbmc/linux/arch/mips/cavium-octeon/crypto/ |
H A D | octeon-crypto.h | 37 } while (0) 63 } while (0) 74 } while (0) 85 } while (0) 96 } while (0) 111 } while (0) 137 } while (0) 148 } while (0) 159 } while (0) 170 } while (0) [all …]
|
/openbmc/linux/arch/parisc/lib/ |
H A D | io.c | 23 while ((unsigned long)dst & 3) { in memcpy_toio() 28 while (count > 3) { in memcpy_toio() 35 while (count--) { in memcpy_toio() 79 while (count > 3) { in memcpy_fromio() 87 while (count > 1) { in memcpy_fromio() 95 while (count--) { in memcpy_fromio() 109 while ((unsigned long)addr & 3) { in memset_io() 113 while (count > 3) { in memset_io() 118 while (count--) { in memset_io() 133 while (((unsigned long)p) & 0x3) { in insb() [all …]
|
/openbmc/linux/arch/loongarch/kernel/ |
H A D | io.c | 14 while (count && !IS_ALIGNED((unsigned long)from, 8)) { in __memcpy_fromio() 21 while (count >= 8) { in __memcpy_fromio() 28 while (count) { in __memcpy_fromio() 42 while (count && !IS_ALIGNED((unsigned long)to, 8)) { in __memcpy_toio() 49 while (count >= 8) { in __memcpy_toio() 56 while (count) { in __memcpy_toio() 76 while (count && !IS_ALIGNED((unsigned long)dst, 8)) { in __memset_io() 82 while (count >= 8) { in __memset_io() 88 while (count) { in __memset_io()
|
/openbmc/linux/arch/csky/kernel/ |
H A D | io.c | 12 while (count && !IS_ALIGNED((unsigned long)from, 4)) { in __memcpy_fromio() 19 while (count >= 4) { in __memcpy_fromio() 26 while (count) { in __memcpy_fromio() 40 while (count && !IS_ALIGNED((unsigned long)to, 4)) { in __memcpy_toio() 47 while (count >= 4) { in __memcpy_toio() 54 while (count) { in __memcpy_toio() 73 while (count && !IS_ALIGNED((unsigned long)dst, 4)) { in __memset_io() 79 while (count >= 4) { in __memset_io() 85 while (count) { in __memset_io()
|
/openbmc/linux/arch/arm64/kernel/ |
H A D | io.c | 17 while (count && !IS_ALIGNED((unsigned long)from, 8)) { in __memcpy_fromio() 24 while (count >= 8) { in __memcpy_fromio() 31 while (count) { in __memcpy_fromio() 45 while (count && !IS_ALIGNED((unsigned long)to, 8)) { in __memcpy_toio() 52 while (count >= 8) { in __memcpy_toio() 59 while (count) { in __memcpy_toio() 79 while (count && !IS_ALIGNED((unsigned long)dst, 8)) { in __memset_io() 85 while (count >= 8) { in __memset_io() 91 while (count) { in __memset_io()
|