/Linux-v5.15/net/sunrpc/ |
D | sched.c | 45 static void rpc_release_task(struct rpc_task *task); 61 rpc_task_timeout(const struct rpc_task *task) in rpc_task_timeout() argument 63 unsigned long timeout = READ_ONCE(task->tk_timeout); in rpc_task_timeout() 80 __rpc_disable_timer(struct rpc_wait_queue *queue, struct rpc_task *task) in __rpc_disable_timer() argument 82 if (list_empty(&task->u.tk_wait.timer_list)) in __rpc_disable_timer() 84 task->tk_timeout = 0; in __rpc_disable_timer() 85 list_del(&task->u.tk_wait.timer_list); in __rpc_disable_timer() 106 __rpc_add_timer(struct rpc_wait_queue *queue, struct rpc_task *task, in __rpc_add_timer() argument 109 task->tk_timeout = timeout; in __rpc_add_timer() 112 list_add(&task->u.tk_wait.timer_list, &queue->timer_list.list); in __rpc_add_timer() [all …]
|
D | clnt.c | 58 static void call_start(struct rpc_task *task); 59 static void call_reserve(struct rpc_task *task); 60 static void call_reserveresult(struct rpc_task *task); 61 static void call_allocate(struct rpc_task *task); 62 static void call_encode(struct rpc_task *task); 63 static void call_decode(struct rpc_task *task); 64 static void call_bind(struct rpc_task *task); 65 static void call_bind_status(struct rpc_task *task); 66 static void call_transmit(struct rpc_task *task); 67 static void call_status(struct rpc_task *task); [all …]
|
D | xprt.c | 75 static void xprt_request_init(struct rpc_task *task); 266 int xprt_reserve_xprt(struct rpc_xprt *xprt, struct rpc_task *task) in xprt_reserve_xprt() argument 268 struct rpc_rqst *req = task->tk_rqstp; in xprt_reserve_xprt() 271 if (task == xprt->snd_task) in xprt_reserve_xprt() 277 xprt->snd_task = task; in xprt_reserve_xprt() 280 trace_xprt_reserve_xprt(xprt, task); in xprt_reserve_xprt() 286 task->tk_status = -EAGAIN; in xprt_reserve_xprt() 287 if (RPC_IS_SOFT(task)) in xprt_reserve_xprt() 288 rpc_sleep_on_timeout(&xprt->sending, task, NULL, in xprt_reserve_xprt() 291 rpc_sleep_on(&xprt->sending, task, NULL); in xprt_reserve_xprt() [all …]
|
/Linux-v5.15/drivers/infiniband/sw/rxe/ |
D | rxe_task.c | 13 int __rxe_do_task(struct rxe_task *task) in __rxe_do_task() argument 18 while ((ret = task->func(task->arg)) == 0) in __rxe_do_task() 21 task->ret = ret; in __rxe_do_task() 36 struct rxe_task *task = from_tasklet(task, t, tasklet); in rxe_do_task() local 38 spin_lock_irqsave(&task->state_lock, flags); in rxe_do_task() 39 switch (task->state) { in rxe_do_task() 41 task->state = TASK_STATE_BUSY; in rxe_do_task() 42 spin_unlock_irqrestore(&task->state_lock, flags); in rxe_do_task() 46 task->state = TASK_STATE_ARMED; in rxe_do_task() 49 spin_unlock_irqrestore(&task->state_lock, flags); in rxe_do_task() [all …]
|
/Linux-v5.15/kernel/livepatch/ |
D | transition.c | 74 struct task_struct *g, *task; in klp_complete_transition() local 111 for_each_process_thread(g, task) { in klp_complete_transition() 112 WARN_ON_ONCE(test_tsk_thread_flag(task, TIF_PATCH_PENDING)); in klp_complete_transition() 113 task->patch_state = KLP_UNDEFINED; in klp_complete_transition() 118 task = idle_task(cpu); in klp_complete_transition() 119 WARN_ON_ONCE(test_tsk_thread_flag(task, TIF_PATCH_PENDING)); in klp_complete_transition() 120 task->patch_state = KLP_UNDEFINED; in klp_complete_transition() 164 void klp_update_patch_state(struct task_struct *task) in klp_update_patch_state() argument 184 if (test_and_clear_tsk_thread_flag(task, TIF_PATCH_PENDING)) in klp_update_patch_state() 185 task->patch_state = READ_ONCE(klp_target_state); in klp_update_patch_state() [all …]
|
/Linux-v5.15/drivers/gpu/drm/exynos/ |
D | exynos_drm_ipp.c | 85 WARN_ON(ipp->task); in exynos_drm_ipp_unregister() 259 struct exynos_drm_ipp_task *task; in exynos_drm_ipp_task_alloc() local 261 task = kzalloc(sizeof(*task), GFP_KERNEL); in exynos_drm_ipp_task_alloc() 262 if (!task) in exynos_drm_ipp_task_alloc() 265 task->dev = ipp->dev; in exynos_drm_ipp_task_alloc() 266 task->ipp = ipp; in exynos_drm_ipp_task_alloc() 269 task->src.rect.w = task->dst.rect.w = UINT_MAX; in exynos_drm_ipp_task_alloc() 270 task->src.rect.h = task->dst.rect.h = UINT_MAX; in exynos_drm_ipp_task_alloc() 271 task->transform.rotation = DRM_MODE_ROTATE_0; in exynos_drm_ipp_task_alloc() 273 DRM_DEV_DEBUG_DRIVER(task->dev, "Allocated task %pK\n", task); in exynos_drm_ipp_task_alloc() [all …]
|
/Linux-v5.15/drivers/scsi/aic94xx/ |
D | aic94xx_task.c | 36 static int asd_map_scatterlist(struct sas_task *task, in asd_map_scatterlist() argument 40 struct asd_ascb *ascb = task->lldd_task; in asd_map_scatterlist() 45 if (task->data_dir == DMA_NONE) in asd_map_scatterlist() 48 if (task->num_scatter == 0) { in asd_map_scatterlist() 49 void *p = task->scatter; in asd_map_scatterlist() 51 task->total_xfer_len, in asd_map_scatterlist() 52 task->data_dir); in asd_map_scatterlist() 54 sg_arr[0].size = cpu_to_le32(task->total_xfer_len); in asd_map_scatterlist() 61 if (sas_protocol_ata(task->task_proto)) in asd_map_scatterlist() 62 num_sg = task->num_scatter; in asd_map_scatterlist() [all …]
|
/Linux-v5.15/arch/powerpc/kernel/ |
D | signal.h | 33 struct task_struct *task); 35 struct task_struct *task); 36 extern unsigned long copy_vsx_from_user(struct task_struct *task, 38 extern unsigned long copy_ckvsx_from_user(struct task_struct *task, 40 unsigned long copy_fpr_to_user(void __user *to, struct task_struct *task); 41 unsigned long copy_ckfpr_to_user(void __user *to, struct task_struct *task); 42 unsigned long copy_fpr_from_user(struct task_struct *task, void __user *from); 43 unsigned long copy_ckfpr_from_user(struct task_struct *task, void __user *from); 45 #define unsafe_copy_fpr_to_user(to, task, label) do { \ argument 46 struct task_struct *__t = task; \ [all …]
|
/Linux-v5.15/include/linux/ |
D | cn_proc.h | 23 void proc_fork_connector(struct task_struct *task); 24 void proc_exec_connector(struct task_struct *task); 25 void proc_id_connector(struct task_struct *task, int which_id); 26 void proc_sid_connector(struct task_struct *task); 27 void proc_ptrace_connector(struct task_struct *task, int which_id); 28 void proc_comm_connector(struct task_struct *task); 29 void proc_coredump_connector(struct task_struct *task); 30 void proc_exit_connector(struct task_struct *task); 32 static inline void proc_fork_connector(struct task_struct *task) in proc_fork_connector() argument 35 static inline void proc_exec_connector(struct task_struct *task) in proc_exec_connector() argument [all …]
|
/Linux-v5.15/drivers/scsi/pm8001/ |
D | pm8001_sas.c | 49 static int pm8001_find_tag(struct sas_task *task, u32 *tag) in pm8001_find_tag() argument 51 if (task->lldd_task) { in pm8001_find_tag() 53 ccb = task->lldd_task; in pm8001_find_tag() 304 u32 pm8001_get_ncq_tag(struct sas_task *task, u32 *tag) in pm8001_get_ncq_tag() argument 306 struct ata_queued_cmd *qc = task->uldd_task; in pm8001_get_ncq_tag() 380 static int pm8001_task_exec(struct sas_task *task, in pm8001_task_exec() argument 383 struct domain_device *dev = task->dev; in pm8001_task_exec() 387 struct sas_task *t = task; in pm8001_task_exec() 401 pm8001_ha = pm8001_find_ha_by_dev(task->dev); in pm8001_task_exec() 456 ccb->task = t; in pm8001_task_exec() [all …]
|
/Linux-v5.15/drivers/video/fbdev/ |
D | uvesafb.c | 75 struct uvesafb_ktask *task; in uvesafb_cn_callback() local 84 task = uvfb_tasks[msg->seq]; in uvesafb_cn_callback() 86 if (!task || msg->ack != task->ack) { in uvesafb_cn_callback() 94 if (task->t.buf_len < utask->buf_len || in uvesafb_cn_callback() 103 memcpy(&task->t, utask, sizeof(*utask)); in uvesafb_cn_callback() 105 if (task->t.buf_len && task->buf) in uvesafb_cn_callback() 106 memcpy(task->buf, utask + 1, task->t.buf_len); in uvesafb_cn_callback() 108 complete(task->done); in uvesafb_cn_callback() 144 static int uvesafb_exec(struct uvesafb_ktask *task) in uvesafb_exec() argument 149 int len = sizeof(task->t) + task->t.buf_len; in uvesafb_exec() [all …]
|
/Linux-v5.15/arch/riscv/kernel/ |
D | stacktrace.c | 21 void notrace walk_stackframe(struct task_struct *task, struct pt_regs *regs, in walk_stackframe() argument 30 } else if (task == NULL || task == current) { in walk_stackframe() 36 fp = task->thread.s[0]; in walk_stackframe() 37 sp = task->thread.sp; in walk_stackframe() 38 pc = task->thread.ra; in walk_stackframe() 70 void notrace walk_stackframe(struct task_struct *task, in walk_stackframe() argument 79 } else if (task == NULL || task == current) { in walk_stackframe() 84 sp = task->thread.sp; in walk_stackframe() 85 pc = task->thread.ra; in walk_stackframe() 109 noinline void dump_backtrace(struct pt_regs *regs, struct task_struct *task, in dump_backtrace() argument [all …]
|
/Linux-v5.15/drivers/scsi/isci/ |
D | task.c | 76 static void isci_task_refuse(struct isci_host *ihost, struct sas_task *task, in isci_task_refuse() argument 85 __func__, task, response, status); in isci_task_refuse() 87 spin_lock_irqsave(&task->task_state_lock, flags); in isci_task_refuse() 89 task->task_status.resp = response; in isci_task_refuse() 90 task->task_status.stat = status; in isci_task_refuse() 93 task->task_state_flags |= SAS_TASK_STATE_DONE; in isci_task_refuse() 94 task->task_state_flags &= ~(SAS_TASK_AT_INITIATOR | in isci_task_refuse() 96 task->lldd_task = NULL; in isci_task_refuse() 97 spin_unlock_irqrestore(&task->task_state_lock, flags); in isci_task_refuse() 99 task->task_done(task); in isci_task_refuse() [all …]
|
/Linux-v5.15/drivers/gpu/drm/lima/ |
D | lima_sched.c | 112 int lima_sched_task_init(struct lima_sched_task *task, in lima_sched_task_init() argument 119 task->bos = kmemdup(bos, sizeof(*bos) * num_bos, GFP_KERNEL); in lima_sched_task_init() 120 if (!task->bos) in lima_sched_task_init() 126 err = drm_sched_job_init(&task->base, &context->base, vm); in lima_sched_task_init() 128 kfree(task->bos); in lima_sched_task_init() 132 task->num_bos = num_bos; in lima_sched_task_init() 133 task->vm = lima_vm_get(vm); in lima_sched_task_init() 135 xa_init_flags(&task->deps, XA_FLAGS_ALLOC); in lima_sched_task_init() 140 void lima_sched_task_fini(struct lima_sched_task *task) in lima_sched_task_fini() argument 146 drm_sched_job_cleanup(&task->base); in lima_sched_task_fini() [all …]
|
/Linux-v5.15/drivers/scsi/ |
D | libiscsi.c | 134 void iscsi_prep_data_out_pdu(struct iscsi_task *task, struct iscsi_r2t_info *r2t, in iscsi_prep_data_out_pdu() argument 137 struct iscsi_conn *conn = task->conn; in iscsi_prep_data_out_pdu() 140 task->hdr_len = sizeof(struct iscsi_data); in iscsi_prep_data_out_pdu() 147 hdr->lun = task->lun; in iscsi_prep_data_out_pdu() 148 hdr->itt = task->hdr_itt; in iscsi_prep_data_out_pdu() 164 static int iscsi_add_hdr(struct iscsi_task *task, unsigned len) in iscsi_add_hdr() argument 166 unsigned exp_len = task->hdr_len + len; in iscsi_add_hdr() 168 if (exp_len > task->hdr_max) { in iscsi_add_hdr() 174 task->hdr_len = exp_len; in iscsi_add_hdr() 181 static int iscsi_prep_ecdb_ahs(struct iscsi_task *task) in iscsi_prep_ecdb_ahs() argument [all …]
|
/Linux-v5.15/fs/proc/ |
D | base.c | 172 static int get_task_root(struct task_struct *task, struct path *root) in get_task_root() argument 176 task_lock(task); in get_task_root() 177 if (task->fs) { in get_task_root() 178 get_fs_root(task->fs, root); in get_task_root() 181 task_unlock(task); in get_task_root() 187 struct task_struct *task = get_proc_task(d_inode(dentry)); in proc_cwd_link() local 190 if (task) { in proc_cwd_link() 191 task_lock(task); in proc_cwd_link() 192 if (task->fs) { in proc_cwd_link() 193 get_fs_pwd(task->fs, path); in proc_cwd_link() [all …]
|
D | fd.c | 26 struct task_struct *task; in seq_show() local 28 task = get_proc_task(m->private); in seq_show() 29 if (!task) in seq_show() 32 task_lock(task); in seq_show() 33 files = task->files; in seq_show() 51 task_unlock(task); in seq_show() 52 put_task_struct(task); in seq_show() 78 struct task_struct *task = get_proc_task(inode); in seq_fdinfo_open() local 80 if (!task) in seq_fdinfo_open() 83 allowed = ptrace_may_access(task, PTRACE_MODE_READ_FSCREDS); in seq_fdinfo_open() [all …]
|
D | namespaces.c | 47 struct task_struct *task; in proc_ns_get_link() local 54 task = get_proc_task(inode); in proc_ns_get_link() 55 if (!task) in proc_ns_get_link() 58 if (!ptrace_may_access(task, PTRACE_MODE_READ_FSCREDS)) in proc_ns_get_link() 61 error = ns_get_path(&ns_path, task, ns_ops); in proc_ns_get_link() 67 put_task_struct(task); in proc_ns_get_link() 75 struct task_struct *task; in proc_ns_readlink() local 79 task = get_proc_task(inode); in proc_ns_readlink() 80 if (!task) in proc_ns_readlink() 83 if (ptrace_may_access(task, PTRACE_MODE_READ_FSCREDS)) { in proc_ns_readlink() [all …]
|
D | array.c | 403 static void task_cpus_allowed(struct seq_file *m, struct task_struct *task) in task_cpus_allowed() argument 406 cpumask_pr_args(&task->cpus_mask)); in task_cpus_allowed() 408 cpumask_pr_args(&task->cpus_mask)); in task_cpus_allowed() 427 struct pid *pid, struct task_struct *task) in proc_pid_status() argument 429 struct mm_struct *mm = get_task_mm(task); in proc_pid_status() 432 proc_task_name(m, task, true); in proc_pid_status() 435 task_state(m, ns, pid, task); in proc_pid_status() 443 task_sig(m, task); in proc_pid_status() 444 task_cap(m, task); in proc_pid_status() 445 task_seccomp(m, task); in proc_pid_status() [all …]
|
/Linux-v5.15/scripts/gdb/linux/ |
D | tasks.py | 43 for task in task_lists(): 44 if int(task['pid']) == pid: 45 return task 59 task = get_task_by_pid(pid) 60 if task: 61 return task.dereference() 77 for task in task_lists(): 79 task.format_string().split()[0], 80 task["pid"].format_string(), 81 task["comm"].string())) [all …]
|
/Linux-v5.15/kernel/bpf/ |
D | task_iter.c | 28 struct task_struct *task = NULL; in task_seq_get_next() local 36 task = get_pid_task(pid, PIDTYPE_PID); in task_seq_get_next() 37 if (!task) { in task_seq_get_next() 40 } else if (skip_if_dup_files && !thread_group_leader(task) && in task_seq_get_next() 41 task->files == task->group_leader->files) { in task_seq_get_next() 42 put_task_struct(task); in task_seq_get_next() 43 task = NULL; in task_seq_get_next() 50 return task; in task_seq_get_next() 56 struct task_struct *task; in task_seq_start() local 58 task = task_seq_get_next(info->common.ns, &info->tid, false); in task_seq_start() [all …]
|
D | bpf_task_storage.c | 50 struct task_struct *task = owner; in task_storage_ptr() local 52 return &task->bpf_storage; in task_storage_ptr() 56 task_storage_lookup(struct task_struct *task, struct bpf_map *map, in task_storage_lookup() argument 62 task_storage = rcu_dereference(task->bpf_storage); in task_storage_lookup() 70 void bpf_task_storage_free(struct task_struct *task) in bpf_task_storage_free() argument 80 local_storage = rcu_dereference(task->bpf_storage); in bpf_task_storage_free() 119 struct task_struct *task; in bpf_pid_task_storage_lookup_elem() local 133 task = pid_task(pid, PIDTYPE_PID); in bpf_pid_task_storage_lookup_elem() 134 if (!task) { in bpf_pid_task_storage_lookup_elem() 140 sdata = task_storage_lookup(task, map, true); in bpf_pid_task_storage_lookup_elem() [all …]
|
/Linux-v5.15/arch/mips/include/asm/ |
D | syscall.h | 29 static inline bool mips_syscall_is_indirect(struct task_struct *task, in mips_syscall_is_indirect() argument 34 test_tsk_thread_flag(task, TIF_32BIT_REGS)) && in mips_syscall_is_indirect() 38 static inline long syscall_get_nr(struct task_struct *task, in syscall_get_nr() argument 44 static inline void mips_syscall_update_nr(struct task_struct *task, in mips_syscall_update_nr() argument 51 if (mips_syscall_is_indirect(task, regs)) in mips_syscall_update_nr() 52 task_thread_info(task)->syscall = regs->regs[4]; in mips_syscall_update_nr() 54 task_thread_info(task)->syscall = regs->regs[2]; in mips_syscall_update_nr() 58 struct task_struct *task, struct pt_regs *regs, unsigned int n) in mips_get_syscall_arg() argument 77 if (test_tsk_thread_flag(task, TIF_32BIT_REGS)) in mips_get_syscall_arg() 93 static inline long syscall_get_error(struct task_struct *task, in syscall_get_error() argument [all …]
|
/Linux-v5.15/kernel/ |
D | task_work.c | 32 int task_work_add(struct task_struct *task, struct callback_head *work, in task_work_add() argument 41 head = READ_ONCE(task->task_works); in task_work_add() 45 } while (cmpxchg(&task->task_works, head, work) != head); in task_work_add() 51 set_notify_resume(task); in task_work_add() 54 set_notify_signal(task); in task_work_add() 73 task_work_cancel_match(struct task_struct *task, in task_work_cancel_match() argument 77 struct callback_head **pprev = &task->task_works; in task_work_cancel_match() 81 if (likely(!task->task_works)) in task_work_cancel_match() 89 raw_spin_lock_irqsave(&task->pi_lock, flags); in task_work_cancel_match() 96 raw_spin_unlock_irqrestore(&task->pi_lock, flags); in task_work_cancel_match() [all …]
|
/Linux-v5.15/drivers/scsi/mvsas/ |
D | mv_sas.c | 12 static int mvs_find_tag(struct mvs_info *mvi, struct sas_task *task, u32 *tag) in mvs_find_tag() argument 14 if (task->lldd_task) { in mvs_find_tag() 16 slot = task->lldd_task; in mvs_find_tag() 302 struct sas_task *task = tei->task; in mvs_task_prep_smp() local 304 struct domain_device *dev = task->dev; in mvs_task_prep_smp() 320 sg_req = &task->smp_task.smp_req; in mvs_task_prep_smp() 326 sg_resp = &task->smp_task.smp_resp; in mvs_task_prep_smp() 395 MVS_CHIP_DISP->make_prd(task->scatter, tei->n_elem, buf_prd); in mvs_task_prep_smp() 400 dma_unmap_sg(mvi->dev, &tei->task->smp_task.smp_resp, 1, in mvs_task_prep_smp() 403 dma_unmap_sg(mvi->dev, &tei->task->smp_task.smp_req, 1, in mvs_task_prep_smp() [all …]
|