Lines Matching defs:task
49 * TASK_SIZE - the maximum size of a user space task.
113 /* Hardware breakpoints pinned to this task. */
126 FP_STATE_CURRENT, /* Save based on current task state. */
208 unsigned int task_get_vl(const struct task_struct *task, enum vec_type type);
209 void task_set_vl(struct task_struct *task, enum vec_type type,
211 void task_set_vl_onexec(struct task_struct *task, enum vec_type type,
213 unsigned int task_get_vl_onexec(const struct task_struct *task,
216 static inline unsigned int task_get_sve_vl(const struct task_struct *task)
218 return task_get_vl(task, ARM64_VEC_SVE);
221 static inline unsigned int task_get_sme_vl(const struct task_struct *task)
223 return task_get_vl(task, ARM64_VEC_SME);
226 static inline void task_set_sve_vl(struct task_struct *task, unsigned long vl)
228 task_set_vl(task, ARM64_VEC_SVE, vl);
231 static inline unsigned int task_get_sve_vl_onexec(const struct task_struct *task)
233 return task_get_vl_onexec(task, ARM64_VEC_SVE);
236 static inline void task_set_sve_vl_onexec(struct task_struct *task,
239 task_set_vl_onexec(task, ARM64_VEC_SVE, vl);
392 long set_tagged_addr_ctrl(struct task_struct *task, unsigned long arg);
393 long get_tagged_addr_ctrl(struct task_struct *task);