Symbol: TIMER_DEFERRABLE
arch/s390/kernel/lgr.c
183
timer_setup(&lgr_timer, lgr_timer_fn, TIMER_DEFERRABLE);
arch/s390/kernel/topology.c
682
timer_setup(&topology_timer, topology_timer_fn, TIMER_DEFERRABLE);
drivers/ata/libata-core.c
5669
TIMER_DEFERRABLE);
drivers/block/loop.c
2017
timer_setup(&lo->timer, loop_free_idle_workers_timer, TIMER_DEFERRABLE);
drivers/cpufreq/powernv-cpufreq.c
869
TIMER_PINNED | TIMER_DEFERRABLE);
drivers/hid/wacom_sys.c
2866
timer_setup(&wacom->idleprox_timer, &wacom_idleprox_timeout, TIMER_DEFERRABLE);
drivers/hsi/clients/ssi_protocol.c
1085
timer_setup(&ssi->rx_wd, ssip_rx_wd, TIMER_DEFERRABLE);
drivers/hsi/clients/ssi_protocol.c
1086
timer_setup(&ssi->tx_wd, ssip_tx_wd, TIMER_DEFERRABLE);
drivers/memory/tegra/tegra210-emc-core.c
1961
TIMER_DEFERRABLE);
drivers/net/ethernet/nvidia/forcedeth.c
5736
timer_setup(&np->stats_poll, nv_do_stats_poll, TIMER_DEFERRABLE);
drivers/net/vxlan/vxlan_core.c
3385
timer_setup(&vxlan->age_timer, vxlan_cleanup, TIMER_DEFERRABLE);
drivers/net/wireless/ath/ath6kl/recovery.c
108
TIMER_DEFERRABLE);
drivers/platform/x86/intel_ips.c
1044
timer_setup(&ips->timer, monitor_timeout, TIMER_DEFERRABLE);
fs/dlm/lockspace.c
536
timer_setup(&ls->ls_scan_timer, dlm_rsb_scan, TIMER_DEFERRABLE);
include/linux/timer.h
50
#define TIMER_INIT_FLAGS (TIMER_DEFERRABLE | TIMER_PINNED | TIMER_IRQSAFE)
include/linux/timer.h
54
#define TIMER_TRACE_FLAGMASK (TIMER_MIGRATING | TIMER_DEFERRABLE | TIMER_PINNED | TIMER_IRQSAFE)
include/linux/workqueue.h
258
struct delayed_work n = __DELAYED_WORK_INITIALIZER(n, f, TIMER_DEFERRABLE)
include/linux/workqueue.h
340
__INIT_DELAYED_WORK(_work, _func, TIMER_DEFERRABLE)
include/linux/workqueue.h
343
__INIT_DELAYED_WORK_ONSTACK(_work, _func, TIMER_DEFERRABLE)
include/trace/events/timer.h
43
{ TIMER_DEFERRABLE, "D" }, \
kernel/time/timer.c
589
if (!is_timers_nohz_active() || timer->flags & TIMER_DEFERRABLE)
kernel/time/timer.c
922
if (IS_ENABLED(CONFIG_NO_HZ_COMMON) && (tflags & TIMER_DEFERRABLE))
kernel/time/timer.c
936
if (IS_ENABLED(CONFIG_NO_HZ_COMMON) && (tflags & TIMER_DEFERRABLE))
kernel/workqueue.c
4859
timer_setup(&pool->idle_timer, idle_worker_timeout, TIMER_DEFERRABLE);
kernel/workqueue.c
7807
timer_setup(&wq_watchdog_timer, wq_watchdog_timer_fn, TIMER_DEFERRABLE);
mm/page-writeback.c
626
timer_setup(&dom->period_timer, writeout_period, TIMER_DEFERRABLE);
net/ipv4/tcp.c
5278
timer_setup(&tcp_orphan_timer, tcp_orphan_update, TIMER_DEFERRABLE);
net/mac80211/agg-rx.c
406
sta_rx_agg_session_timer_expired, TIMER_DEFERRABLE);
net/mac80211/agg-tx.c
731
sta_tx_agg_session_timer_expired, TIMER_DEFERRABLE);
net/sched/cls_flow.c
527
timer_setup(&fnew->perturb_timer, flow_perturbation, TIMER_DEFERRABLE);
net/sched/sch_sfq.c
782
timer_setup(&q->perturb_timer, sfq_perturbation, TIMER_DEFERRABLE);