/device/soc/rockchip/common/sdk_linux/kernel/sched/ |
H A D | rt.c | 53 void init_rt_bandwidth(struct rt_bandwidth *rt_b, u64 period, u64 runtime) in init_rt_bandwidth() argument 56 rt_b->rt_runtime = runtime; in init_rt_bandwidth() 706 * We ran out of runtime, see if we can borrow some from our neighbours. 730 * Either all rqs have inf runtime and there's nothing to steal in do_balance_runtime() 762 * Ensure this RQ takes back all the runtime it lend to its neighbours. 784 * exactly the right amount of runtime to take out. in __disable_runtime() 793 * and what we current have, that's the amount of runtime in __disable_runtime() 831 * We cannot be left wanting - that would mean some runtime in __disable_runtime() 838 * runtime - in which case borrowing doesn't make sense. in __disable_runtime() 935 u64 runtime; in do_sched_rt_period_timer() local 1011 u64 runtime = sched_rt_runtime(rt_rq); sched_rt_runtime_exceeded() local 2915 u64 period, runtime; tg_rt_schedulable() local 2970 __rt_schedulable(struct task_group *tg, u64 period, u64 runtime) __rt_schedulable() argument [all...] |
H A D | fair.c | 159 * Amount of runtime to allocate from global (tg) to local (per-cfs_rq) pool 162 * Note: in the case that the slice exceeds the runtime remaining (either due 892 * Update the current task's runtime statistics. 2329 u64 runtime, delta, now; in numa_get_avg_runtime() local 2332 runtime = p->se.sum_exec_runtime; in numa_get_avg_runtime() 2335 delta = runtime - p->last_sum_exec_runtime; in numa_get_avg_runtime() 2347 p->last_sum_exec_runtime = runtime; in numa_get_avg_runtime() 2453 u64 runtime, period; in task_numa_placement() local 2470 runtime = numa_get_avg_runtime(p, &period); in task_numa_placement() 2503 * number of faults. Tasks with little runtime hav in task_numa_placement() 2830 u64 runtime = p->se.sum_exec_runtime; task_numa_work() local 5153 u64 runtime, remaining = 1; distribute_cfs_runtime() local 5353 u64 runtime = 0, slice = sched_cfs_bandwidth_slice(); do_sched_cfs_slack_timer() local [all...] |
H A D | sched.h | 226 * Single value that denotes runtime == period, ie unlimited time. 355 * do not decrease any runtime while the group "executes", neither we 390 * CPU original capacity and the runtime/deadline ratio of the task. 393 * @cpu scaled by SCHED_CAPACITY_SCALE >= runtime/deadline ratio of the 430 u64 runtime; member 1854 * ENQUEUE_REPLENISH - CBS (replenish runtime and postpone deadline) 2043 extern void init_rt_bandwidth(struct rt_bandwidth *rt_b, u64 period, u64 runtime); 2046 extern void init_dl_bandwidth(struct dl_bandwidth *dl_b, u64 period, u64 runtime); 2055 unsigned long to_ratio(u64 period, u64 runtime); 2452 * Otherwise ksoftirqd's sum_exec_runtime is substracted its own runtime [all...] |
H A D | core.c | 132 * p->dl.dl_{runtime, deadline, period, flags, bw, density} 1603 * at runtime. in __setscheduler_uclamp() 3688 unsigned long to_ratio(u64 period, u64 runtime) in to_ratio() argument 3690 if (runtime == RUNTIME_INF) { in to_ratio() 3703 return div64_u64(runtime << BW_SHIFT, period); in to_ratio() 4332 * Return accounted runtime for the task. 4333 * In case the task is currently running, return the runtime plus current's 4334 * pending runtime that have not been accounted yet. 5744 * or reduce their runtime (both ways reducing utilization) in __sched_setscheduler() 5852 * Do not allow realtime tasks into groups that have no runtime in __sched_setscheduler() [all...] |
/device/soc/rockchip/common/kernel/drivers/gpu/arm/bifrost/ |
H A D | mali_kbase_pbha.h | 45 * @runtime: true if it's called at runtime and false if it's called on init. 52 int kbase_pbha_record_settings(struct kbase_device *kbdev, bool runtime,
|
H A D | mali_kbase_pbha.c | 126 int kbase_pbha_record_settings(struct kbase_device *kbdev, bool runtime, in kbase_pbha_record_settings() argument 135 if (runtime) { in kbase_pbha_record_settings()
|
/device/soc/rockchip/common/sdk_linux/include/trace/events/ |
H A D | sched.h | 299 * Tracepoint for accounting runtime (time the task is executing
304 TP_PROTO(struct task_struct *tsk, u64 runtime, u64 vruntime),
306 TP_ARGS(tsk, __perf_count(runtime), vruntime),
308 TP_STRUCT__entry(__array(char, comm, TASK_COMM_LEN) __field(pid_t, pid) __field(u64, runtime)
312 __entry->runtime = runtime; __entry->vruntime = vruntime;),
314 TP_printk("comm=%s pid=%d runtime=%Lu [ns] vruntime=%Lu [ns]", __entry->comm, __entry->pid,
315 (unsigned long long)__entry->runtime, (unsigned long long)__entry->vruntime));
317 DEFINE_EVENT(sched_stat_runtime, sched_stat_runtime, TP_PROTO(struct task_struct *tsk, u64 runtime, u64 vruntime),
318 TP_ARGS(tsk, runtime, vruntim [all...] |
/device/soc/rockchip/common/sdk_linux/drivers/gpu/drm/nouveau/ |
H A D | nouveau_drm.c | 789 static int nouveau_do_suspend(struct drm_device *dev, bool runtime) in nouveau_do_suspend() argument 802 ret = nouveau_display_suspend(dev, runtime); in nouveau_do_suspend() 850 nouveau_display_resume(dev, runtime); in nouveau_do_suspend() 855 static int nouveau_do_resume(struct drm_device *dev, bool runtime) in nouveau_do_resume() argument 876 nouveau_display_resume(dev, runtime); in nouveau_do_resume()
|
/device/soc/hisilicon/common/platform/wifi/hi3881v100/driver/wal/ |
H A D | wal_cfg80211.c | 1188 hi_u32 runtime; in wal_cfg80211_get_station_filter() local 1197 runtime = current_time - hmac_user->rssi_last_timestamp; in wal_cfg80211_get_station_filter() 1199 runtime = (hi_u32)(HI_U32_MAX - (hmac_user->rssi_last_timestamp - current_time) / HI_MILLISECOND_PER_TICK) * in wal_cfg80211_get_station_filter() 1203 if (runtime < WAL_GET_STATION_THRESHOLD) { in wal_cfg80211_get_station_filter()
|
/device/soc/rockchip/common/sdk_linux/include/linux/ |
H A D | sched.h | 624 u64 dl_runtime; /* Maximum runtime for each instance */
633 * the remaining runtime could be < 0 in case we are in overrun.
635 s64 runtime; /* Remaining runtime for this instance */
member 642 * @dl_throttled tells if we exhausted the runtime. If so, the
651 * all its available runtime during the last job.
660 * @dl_overrun tells if the task asked to be informed about runtime
|
/device/soc/hisilicon/common/hal/middleware/ffmpeg_adapt/ |
H A D | configure_llvm | 108 --disable-runtime-cpudetect disable detecting CPU capabilities at runtime (smaller binary) 416 --enable-hardcoded-tables use hardcoded tables instead of runtime generation 466 2 causes a slowdown at runtime. 5139 # Disable DSP stuff for generic CPU, it can't be detected at runtime. 5643 die "ERROR: MinGW32 runtime version must be >= 3.15." 5910 # MSA and MSA2 can be detected at runtime so we supply extra flags here 5920 # MMI can be detected at runtime too 7304 echo "runtime cpu detection ${runtime_cpudetect-no}"
|