/linux/kernel/locking/ |
H A D | rtmutex_api.c | 70 __rt_mutex_lock_common(lock, TASK_UNINTERRUPTIBLE, NULL, subclass); in rt_mutex_lock_nested() 76 __rt_mutex_lock_common(lock, TASK_UNINTERRUPTIBLE, nest_lock, 0); in _rt_mutex_lock_nest_lock() 89 __rt_mutex_lock_common(lock, TASK_UNINTERRUPTIBLE, NULL, 0); in rt_mutex_lock() 547 __mutex_lock_common(lock, TASK_UNINTERRUPTIBLE, subclass, NULL, _RET_IP_); in mutex_lock_nested() 554 __mutex_lock_common(lock, TASK_UNINTERRUPTIBLE, 0, nest_lock, _RET_IP_); in _mutex_lock_nest_lock() 579 __mutex_lock_common(lock, TASK_UNINTERRUPTIBLE, subclass, NULL, _RET_IP_); in mutex_lock_io_nested() 603 __mutex_lock_common(lock, TASK_UNINTERRUPTIBLE, 0, NULL, _RET_IP_); in mutex_lock() 623 __mutex_lock_common(lock, TASK_UNINTERRUPTIBLE, 0, NULL, _RET_IP_); in mutex_lock_io()
|
H A D | mutex.c | 812 __mutex_lock(lock, TASK_UNINTERRUPTIBLE, subclass, NULL, _RET_IP_); in mutex_lock_nested() 820 __mutex_lock(lock, TASK_UNINTERRUPTIBLE, 0, nest, _RET_IP_); in _mutex_lock_nest_lock() 847 __mutex_lock_common(lock, TASK_UNINTERRUPTIBLE, in mutex_lock_io_nested() 885 ret = __ww_mutex_lock(&lock->base, TASK_UNINTERRUPTIBLE, in ww_mutex_lock() 1049 __mutex_lock(lock, TASK_UNINTERRUPTIBLE, 0, NULL, _RET_IP_); in __mutex_lock_slowpath() 1067 return __ww_mutex_lock(&lock->base, TASK_UNINTERRUPTIBLE, 0, in __ww_mutex_lock_slowpath()
|
H A D | rwsem.c | 1069 if (state == TASK_UNINTERRUPTIBLE) in rwsem_down_read_slowpath() 1091 if (state == TASK_UNINTERRUPTIBLE) in rwsem_down_read_slowpath() 1155 if (state == TASK_UNINTERRUPTIBLE) in rwsem_down_write_slowpath() 1192 if (state == TASK_UNINTERRUPTIBLE) in rwsem_down_write_slowpath() 1274 __down_read_common(sem, TASK_UNINTERRUPTIBLE); in __down_read() 1326 __down_write_common(sem, TASK_UNINTERRUPTIBLE); in __down_write() 1466 rwbase_read_lock(&sem->rwbase, TASK_UNINTERRUPTIBLE); in __down_read() 1491 rwbase_write_lock(&sem->rwbase, TASK_UNINTERRUPTIBLE); in __down_write()
|
H A D | percpu-rwsem.c | 160 set_current_state(TASK_UNINTERRUPTIBLE | in percpu_rwsem_wait() 256 rcuwait_wait_event(&sem->writer, readers_active_check(sem), TASK_UNINTERRUPTIBLE); in percpu_down_write()
|
H A D | semaphore.c | 303 __down_common(sem, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT); in __down() 318 return __down_common(sem, TASK_UNINTERRUPTIBLE, timeout); in __down_timeout()
|
H A D | ww_rt_mutex.c | 81 return __ww_rt_mutex_lock(lock, ctx, TASK_UNINTERRUPTIBLE, _RET_IP_); in ww_mutex_lock()
|
/linux/include/linux/ |
H A D | wait_bit.h | 281 ___wait_var_event(var, condition, TASK_UNINTERRUPTIBLE, 0, 0, \ 284 ___wait_var_event(var, condition, TASK_UNINTERRUPTIBLE, 0, 0, \ 372 TASK_UNINTERRUPTIBLE, 0, timeout, \ 489 wait_var_event_any_lock(var, condition, lock, spin, TASK_UNINTERRUPTIBLE) 510 wait_var_event_any_lock(var, condition, lock, mutex, TASK_UNINTERRUPTIBLE)
|
H A D | rcupdate_wait.h | 35 #define wait_rcu_gp(...) _wait_rcu_gp(false, TASK_UNINTERRUPTIBLE, __VA_ARGS__) 60 _wait_rcu_gp(IS_ENABLED(CONFIG_TINY_RCU), TASK_UNINTERRUPTIBLE, __VA_ARGS__)
|
H A D | wait.h | 330 (void)___wait_event(wq_head, condition, TASK_UNINTERRUPTIBLE, 0, 0, \ 354 (void)___wait_event(wq_head, condition, TASK_UNINTERRUPTIBLE, 0, 0, \ 395 TASK_UNINTERRUPTIBLE, 0, timeout, \ 445 (void)___wait_event(wq_head, condition, TASK_UNINTERRUPTIBLE, 1, 0, \ 458 (void)___wait_event(wq_head, condition, TASK_UNINTERRUPTIBLE, 0, 0, \ 592 TASK_UNINTERRUPTIBLE); \ 1007 (void)___wait_event(wq_head, condition, TASK_UNINTERRUPTIBLE, 0, 0, \ 1191 TASK_UNINTERRUPTIBLE); \
|
H A D | swait.h | 183 (void)___swait_event(wq, condition, TASK_UNINTERRUPTIBLE, 0, \ 195 TASK_UNINTERRUPTIBLE, timeout, \
|
H A D | delay.h | 77 usleep_range_state(min, max, TASK_UNINTERRUPTIBLE); in usleep_range()
|
/linux/lib/ |
H A D | closure.c | 143 set_current_state(TASK_UNINTERRUPTIBLE); in __closure_sync() 174 set_current_state(TASK_UNINTERRUPTIBLE); in closure_return_sync() 197 set_current_state(TASK_UNINTERRUPTIBLE); in __closure_sync_timeout()
|
/linux/rust/kernel/sync/ |
H A D | condvar.rs | 13 MAX_SCHEDULE_TIMEOUT, TASK_FREEZABLE, TASK_INTERRUPTIBLE, TASK_NORMAL, TASK_UNINTERRUPTIBLE, 146 self.wait_internal(TASK_UNINTERRUPTIBLE, guard, MAX_SCHEDULE_TIMEOUT); in wait()
|
/linux/drivers/tty/ |
H A D | tty_ldsem.c | 194 set_current_state(TASK_UNINTERRUPTIBLE); in down_read_failed() 257 set_current_state(TASK_UNINTERRUPTIBLE); in down_write_failed() 264 set_current_state(TASK_UNINTERRUPTIBLE); in down_write_failed()
|
/linux/fs/jfs/ |
H A D | jfs_lock.h | 28 set_current_state(TASK_UNINTERRUPTIBLE);\
|
/linux/rust/kernel/ |
H A D | task.rs | 26 pub const TASK_UNINTERRUPTIBLE: c_int = bindings::TASK_UNINTERRUPTIBLE as c_int; constant
|
/linux/fs/gfs2/ |
H A D | util.c | 189 wait_on_bit(&i_gl->gl_flags, GLF_DEMOTE, TASK_UNINTERRUPTIBLE); in signal_our_withdraw() 211 wait_on_bit(&i_gl->gl_flags, GLF_UNLOCKED, TASK_UNINTERRUPTIBLE); in signal_our_withdraw() 324 TASK_UNINTERRUPTIBLE); in gfs2_withdraw()
|
/linux/drivers/gpu/drm/i915/selftests/ |
H A D | igt_reset.c | 29 TASK_UNINTERRUPTIBLE); in igt_global_reset_lock()
|
H A D | i915_active.c | 157 __i915_active_wait(&active->base, TASK_UNINTERRUPTIBLE); in live_active_wait() 235 __i915_active_wait(&active->base, TASK_UNINTERRUPTIBLE); in live_active_barrier()
|
/linux/fs/netfs/ |
H A D | fscache_volume.c | 158 TASK_UNINTERRUPTIBLE, 20 * HZ); in fscache_wait_on_volume_collision() 164 TASK_UNINTERRUPTIBLE); in fscache_wait_on_volume_collision() 321 TASK_UNINTERRUPTIBLE); in fscache_create_volume()
|
/linux/drivers/mtd/chips/ |
H A D | cfi_cmdset_0020.c | 353 set_current_state(TASK_UNINTERRUPTIBLE); in do_read_onechip() 486 set_current_state(TASK_UNINTERRUPTIBLE); in do_write_buffer() 543 set_current_state(TASK_UNINTERRUPTIBLE); in do_write_buffer() 779 set_current_state(TASK_UNINTERRUPTIBLE); in do_erase_oneblock() 808 set_current_state(TASK_UNINTERRUPTIBLE); in do_erase_oneblock() 1006 set_current_state(TASK_UNINTERRUPTIBLE); in cfi_staa_sync() 1076 set_current_state(TASK_UNINTERRUPTIBLE); in do_lock_oneblock() 1222 set_current_state(TASK_UNINTERRUPTIBLE); in do_unlock_oneblock()
|
/linux/drivers/gpu/drm/vmwgfx/ |
H A D | vmwgfx_irq.c | 195 TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE); in vmw_fallback_wait() 214 TASK_UNINTERRUPTIBLE); in vmw_fallback_wait()
|
/linux/block/ |
H A D | blk-rq-qos.c | 278 TASK_UNINTERRUPTIBLE); in rq_qos_wait() 310 set_current_state(TASK_UNINTERRUPTIBLE); in rq_qos_wait()
|
/linux/kernel/ |
H A D | umh.c | 249 TASK_UNINTERRUPTIBLE); in usermodehelper_read_lock_wait() 403 unsigned int state = TASK_UNINTERRUPTIBLE; in call_usermodehelper_exec()
|
/linux/fs/ |
H A D | fs_pin.c | 54 set_current_state(TASK_UNINTERRUPTIBLE); in pin_kill()
|