• Home
  • Raw
  • Download

Lines Matching refs:attr

2699 		      const struct sched_attr *attr)  in sched_dl_overflow()  argument
2701 u64 period = attr->sched_period ?: attr->sched_deadline; in sched_dl_overflow()
2702 u64 runtime = attr->sched_runtime; in sched_dl_overflow()
2708 if (attr->sched_flags & SCHED_FLAG_SUGOV) in sched_dl_overflow()
2764 void __setparam_dl(struct task_struct *p, const struct sched_attr *attr) in __setparam_dl() argument
2768 dl_se->dl_runtime = attr->sched_runtime; in __setparam_dl()
2769 dl_se->dl_deadline = attr->sched_deadline; in __setparam_dl()
2770 dl_se->dl_period = attr->sched_period ?: dl_se->dl_deadline; in __setparam_dl()
2771 dl_se->flags = attr->sched_flags & SCHED_DL_FLAGS; in __setparam_dl()
2776 void __getparam_dl(struct task_struct *p, struct sched_attr *attr) in __getparam_dl() argument
2780 attr->sched_priority = p->rt_priority; in __getparam_dl()
2781 attr->sched_runtime = dl_se->dl_runtime; in __getparam_dl()
2782 attr->sched_deadline = dl_se->dl_deadline; in __getparam_dl()
2783 attr->sched_period = dl_se->dl_period; in __getparam_dl()
2784 attr->sched_flags &= ~SCHED_DL_FLAGS; in __getparam_dl()
2785 attr->sched_flags |= dl_se->flags; in __getparam_dl()
2806 bool __checkparam_dl(const struct sched_attr *attr) in __checkparam_dl() argument
2811 if (attr->sched_flags & SCHED_FLAG_SUGOV) in __checkparam_dl()
2815 if (attr->sched_deadline == 0) in __checkparam_dl()
2822 if (attr->sched_runtime < (1ULL << DL_SCALE)) in __checkparam_dl()
2829 if (attr->sched_deadline & (1ULL << 63) || in __checkparam_dl()
2830 attr->sched_period & (1ULL << 63)) in __checkparam_dl()
2833 period = attr->sched_period; in __checkparam_dl()
2835 period = attr->sched_deadline; in __checkparam_dl()
2838 if (period < attr->sched_deadline || in __checkparam_dl()
2839 attr->sched_deadline < attr->sched_runtime) in __checkparam_dl()
2875 bool dl_param_changed(struct task_struct *p, const struct sched_attr *attr) in dl_param_changed() argument
2879 if (dl_se->dl_runtime != attr->sched_runtime || in dl_param_changed()
2880 dl_se->dl_deadline != attr->sched_deadline || in dl_param_changed()
2881 dl_se->dl_period != attr->sched_period || in dl_param_changed()
2882 dl_se->flags != (attr->sched_flags & SCHED_DL_FLAGS)) in dl_param_changed()