Symbol: TASK_FREEZABLE
drivers/android/binder.c
4652
prepare_to_wait(&thread->wait, &wait, TASK_INTERRUPTIBLE|TASK_FREEZABLE);
drivers/media/pci/pt3/pt3.c
448
set_current_state(TASK_UNINTERRUPTIBLE|TASK_FREEZABLE);
drivers/tee/qcomtee/user_obj.c
259
TASK_KILLABLE | TASK_FREEZABLE)) {
fs/coredump.c
535
TASK_UNINTERRUPTIBLE|TASK_FREEZABLE);
fs/fuse/dev.c
211
(TASK_KILLABLE | TASK_FREEZABLE)))
fs/nfs/nfs4proc.c
7614
__set_current_state(TASK_INTERRUPTIBLE|TASK_FREEZABLE);
fs/nfs/nfs4proc.c
7682
wait_woken(&waiter.wait, TASK_INTERRUPTIBLE|TASK_FREEZABLE,
fs/notify/fanotify/fanotify.c
234
(TASK_KILLABLE|TASK_FREEZABLE));
fs/xfs/xfs_trans_ail.c
671
set_current_state(TASK_KILLABLE|TASK_FREEZABLE);
fs/xfs/xfs_trans_ail.c
673
set_current_state(TASK_INTERRUPTIBLE|TASK_FREEZABLE);
fs/xfs/xfs_zone_gc.c
1100
set_current_state(TASK_INTERRUPTIBLE | TASK_FREEZABLE);
include/linux/livepatch_sched.h
17
READ_ONCE(curr->__state) & TASK_FREEZABLE)
include/linux/sched.h
134
#define TASK_FREEZABLE_UNSAFE (TASK_FREEZABLE | __TASK_FREEZABLE_UNSAFE)
include/linux/wait.h
369
___wait_event(wq_head, condition, (TASK_INTERRUPTIBLE|TASK_FREEZABLE), \
include/linux/wait.h
428
(TASK_INTERRUPTIBLE|TASK_FREEZABLE), 0, timeout, \
include/linux/wait.h
650
___wait_event(wq, condition, (TASK_INTERRUPTIBLE|TASK_FREEZABLE), 1, 0,\
kernel/exit.c
442
set_current_state(TASK_IDLE|TASK_FREEZABLE);
kernel/fork.c
1430
unsigned int state = TASK_KILLABLE|TASK_FREEZABLE;
kernel/freezer.c
124
if (!(state & (TASK_FREEZABLE | __TASK_STOPPED | __TASK_TRACED)))
kernel/freezer.c
131
if (state & TASK_FREEZABLE)
kernel/futex/waitwake.c
441
set_current_state(TASK_INTERRUPTIBLE|TASK_FREEZABLE);
kernel/futex/waitwake.c
659
set_current_state(TASK_INTERRUPTIBLE|TASK_FREEZABLE);
kernel/locking/percpu-rwsem.c
161
(freeze ? TASK_FREEZABLE : 0));
kernel/signal.c
2716
__set_current_state(TASK_INTERRUPTIBLE|TASK_FREEZABLE);
kernel/signal.c
3779
__set_current_state(TASK_INTERRUPTIBLE|TASK_FREEZABLE);
kernel/time/hrtimer.c
2120
set_current_state(TASK_INTERRUPTIBLE|TASK_FREEZABLE);
kernel/umh.c
438
state |= TASK_FREEZABLE;
mm/khugepaged.c
816
__set_current_state(TASK_INTERRUPTIBLE|TASK_FREEZABLE);
net/sunrpc/sched.c
987
TASK_KILLABLE|TASK_FREEZABLE);
net/sunrpc/svc_xprt.c
728
set_current_state(TASK_IDLE | TASK_FREEZABLE);
net/sunrpc/svc_xprt.c
744
set_current_state(TASK_IDLE | TASK_FREEZABLE);
net/unix/af_unix.c
2697
unsigned int state = TASK_INTERRUPTIBLE | freezable * TASK_FREEZABLE;