Searched refs:reaper (Results 1 - 5 of 5) sorted by relevance

/linux-master/kernel/
H A Dexit.c591 struct task_struct *reaper = pid_ns->child_reaper; variable in typeref:struct:task_struct
594 if (likely(reaper != father))
595 return reaper;
597 reaper = find_alive_thread(father);
598 if (reaper) {
599 pid_ns->child_reaper = reaper;
600 return reaper;
626 struct task_struct *thread, *reaper; local
636 * We can't check reaper != child_reaper to ensure we do not
640 * task_active_pid_ns(reaper) !
693 struct task_struct *p, *t, *reaper; local
[all...]
/linux-master/drivers/platform/surface/aggregator/
H A Dssh_request_layer.h59 * @rtx_timeout.lock: Lock for modifying the retransmission timeout reaper.
61 * @rtx_timeout.expires: Time specifying when the reaper work is next scheduled.
62 * @rtx_timeout.reaper: Work performing timeout checks and subsequent actions.
88 struct delayed_work reaper; member in struct:ssh_rtl::__anon686
H A Dssh_packet_layer.h71 * @rtx_timeout.lock: Lock for modifying the retransmission timeout reaper.
73 * @rtx_timeout.expires: Time specifying when the reaper work is next scheduled.
74 * @rtx_timeout.reaper: Work performing timeout checks and subsequent actions.
116 struct delayed_work reaper; member in struct:ssh_ptl::__anon439
H A Dssh_request_layer.c42 * direct re-scheduling of reaper work_struct.
434 /* Re-adjust / schedule reaper only if it is above resolution delta. */
437 mod_delayed_work(system_wq, &rtl->rtx_timeout.reaper, delta);
458 * Ensure timestamp is set before starting the reaper. Paired with
822 struct ssh_rtl *rtl = to_ssh_rtl(work, rtx_timeout.reaper.work);
832 * Mark reaper as "not pending". This is done before checking any
890 /* Ensure that the reaper doesn't run again immediately. */
1049 INIT_DELAYED_WORK(&rtl->rtx_timeout.reaper, ssh_rtl_timeout_reap);
1236 cancel_delayed_work_sync(&rtl->rtx_timeout.reaper);
H A Dssh_packet_layer.c72 * to transmit it. As the timeout is handled by a reaper task, no additional
85 * Packet timeouts are detected by the timeout reaper. This is a task,
207 * direct re-scheduling of reaper work_struct.
671 /* Re-adjust / schedule reaper only if it is above resolution delta. */
674 mod_delayed_work(system_wq, &ptl->rtx_timeout.reaper, delta);
827 /* Arm/update timeout reaper. */
1502 struct ssh_ptl *ptl = to_ssh_ptl(work, rtx_timeout.reaper.work);
1514 * Mark reaper as "not pending". This is done before checking any
1590 /* Ensure that reaper doesn't run again immediately. */
1944 cancel_delayed_work_sync(&ptl->rtx_timeout.reaper);
[all...]

Completed in 130 milliseconds