Home
last modified time | relevance | path

Searched full:goals (Results 1 – 25 of 82) sorted by relevance

1234

/linux-6.14.4/tools/testing/selftests/damon/
D_damon_sysfs.py102 return os.path.join(self.quota.sysfs_dir(), 'goals', '%d' % self.idx)
122 goals = None # quota goals variable in DamosQuota
126 def __init__(self, sz=0, ms=0, goals=None, reset_interval_ms=0): argument
130 self.goals = goals if goals is not None else []
131 for idx, goal in enumerate(self.goals):
150 nr_goals_file = os.path.join(self.sysfs_dir(), 'goals', 'nr_goals')
154 if int(content) != len(self.goals):
155 err = write_file(nr_goals_file, len(self.goals))
158 for goal in self.goals:
475 for goal in scheme.quota.goals:
[all …]
Ddamos_quota_goal.py23 goals=[goal], reset_interval_ms=100),
/linux-6.14.4/mm/damon/
Dsysfs-schemes.c954 * quota goals directory
969 struct damos_sysfs_quota_goals *goals) in damos_sysfs_quota_goals_rm_dirs() argument
971 struct damos_sysfs_quota_goal **goals_arr = goals->goals_arr; in damos_sysfs_quota_goals_rm_dirs()
974 for (i = 0; i < goals->nr; i++) in damos_sysfs_quota_goals_rm_dirs()
976 goals->nr = 0; in damos_sysfs_quota_goals_rm_dirs()
978 goals->goals_arr = NULL; in damos_sysfs_quota_goals_rm_dirs()
982 struct damos_sysfs_quota_goals *goals, int nr_goals) in damos_sysfs_quota_goals_add_dirs() argument
987 damos_sysfs_quota_goals_rm_dirs(goals); in damos_sysfs_quota_goals_add_dirs()
995 goals->goals_arr = goals_arr; in damos_sysfs_quota_goals_add_dirs()
1000 damos_sysfs_quota_goals_rm_dirs(goals); in damos_sysfs_quota_goals_add_dirs()
[all …]
Dcore.c322 list_add_tail(&g->list, &q->goals); in damos_add_quota_goal()
382 /* quota.goals should be separately set by caller */ in damon_new_scheme()
383 INIT_LIST_HEAD(&scheme->quota.goals); in damon_new_scheme()
704 * damos_commit_quota_goals() - Commit DAMOS quota goals to another quota.
708 * Copies user-specified parameters for quota goals from @src to @dst. Users
709 * should use this function for quota goals-level parameters update of running
1737 * Called only if quota->ms, or quota->sz are set, or quota->goals is not empty
1744 if (!quota->ms && list_empty(&quota->goals)) { in damos_set_effective_quota()
1749 if (!list_empty(&quota->goals)) { in damos_set_effective_quota()
1781 if (!quota->ms && !quota->sz && list_empty(&quota->goals)) in damos_adjust_quota()
/linux-6.14.4/Documentation/filesystems/xfs/
Dxfs-maintainer-entry-profile.rst44 These people collectively decide the long term goals of the project
55 1. Does the idea fit the goals of the project?
64 coverage goals of the project, negotiating with developers to decide
/linux-6.14.4/include/linux/
Ddamon.h181 * @goals: Head of quota tuning goals (&damos_quota_goal) list.
196 * To convince the different types of quotas and goals, DAMON internally
205 * If @goals is not empty, DAMON calculates yet another size quota based on the
206 * goals using its internal feedback loop algorithm, for every @reset_interval.
222 struct list_head goals; member
791 list_for_each_entry(goal, &quota->goals, list)
794 list_for_each_entry_safe(goal, next, &(quota)->goals, list)
/linux-6.14.4/Documentation/ABI/testing/
Dsysfs-kernel-mm-damon223 scheme in bytes, which adjusted for the time quota and goals.
231 What: /sys/kernel/mm/damon/admin/kdamonds/<K>/contexts/<C>/schemes/<S>/quotas/goals/nr_goals
236 aggressiveness named '0' to 'N-1' under the goals/ directory.
238 What: /sys/kernel/mm/damon/admin/kdamonds/<K>/contexts/<C>/schemes/<S>/quotas/goals/<G>/target_met…
244 What: /sys/kernel/mm/damon/admin/kdamonds/<K>/contexts/<C>/schemes/<S>/quotas/goals/<G>/target_val…
250 What: /sys/kernel/mm/damon/admin/kdamonds/<K>/contexts/<C>/schemes/<S>/quotas/goals/<G>/current_va…
/linux-6.14.4/Documentation/admin-guide/mm/damon/
Dusage.rst82 │ │ │ │ │ │ │ │ :ref:`goals <sysfs_schemes_quota_goals>`/nr_goals
136 :ref:`quota goals <sysfs_schemes_quota_goals>`.
326 ``goals``) exist.
355 schemes/<N>/quotas/goals/
358 The directory for the :ref:`automatic quota tuning goals
369 parameters for the quota auto-tuning goals that specified on the :ref:`design
/linux-6.14.4/Documentation/security/
Dlsm-development.rst9 This allows an LSM's code to be easily compared to its goals, and so
Dself-protection.rst23 The goals for successful self-protection systems would be that they
26 is uncommon that all these goals can be met, but it is worth explicitly
/linux-6.14.4/Documentation/userspace-api/media/mediactl/
Dmedia-controller-model.rst9 is one of the goals of the media controller API. To achieve this,
/linux-6.14.4/tools/testing/selftests/futex/
DREADME21 Design and Implementation Goals
/linux-6.14.4/Documentation/devicetree/bindings/remoteproc/
Dti,davinci-rproc.txt6 achieving various system level goals.
Dti,keystone-rproc.txt6 algorithms, for achieving various system level goals.
Dti,k3-dsp-rproc.yaml15 for achieving various system level goals.
/linux-6.14.4/scripts/
DMakefile.build455 single-subdir-goals := $(filter $(addsuffix /%, $(single-subdirs)), $(MAKECMDGOALS))
457 $(single-subdir-goals): $(single-subdirs)
468 $(filter $@/%, $(single-subdir-goals))
477 targets += $(filter-out $(single-subdir-goals), $(MAKECMDGOALS))
/linux-6.14.4/drivers/cpufreq/
Damd-pstate.h65 * represents all the attributes and goals that AMD P-State requests at runtime.
/linux-6.14.4/Documentation/kbuild/
Dmakefiles.rst23 It builds these goals by recursively descending into the subdirectories of
106 Built-in object goals - obj-y
136 Loadable module goals - obj-m
191 Library file goals - lib-y
302 Always built goals - always-y
1311 An arch Makefile specifies goals that take the vmlinux file, compress
1314 The actual goals are not standardized across architectures.
/linux-6.14.4/Documentation/admin-guide/thermal/
Dintel_powerclamp.rst12 - Goals and Objectives
149 calibration is implemented. The goals for doing such a calibration
/linux-6.14.4/Documentation/arch/x86/x86_64/
Dfred.rst12 designed with the following goals:
/linux-6.14.4/Documentation/process/
Dcontribution-maturity-model.rst109 Upstream Work to work focused on directly pursuing business goals.
Dsecurity-bugs.rst78 the 3 lists pursue different goals. Coordinating between the kernel
/linux-6.14.4/Documentation/driver-api/driver-model/
Doverview.rst29 The common device and bridge interface reflects the goals of the modern
/linux-6.14.4/Documentation/scsi/
Dscsi_eh.rst203 of driving error handling. EH's goals are two - make LLDD, host and
209 To achieve these goals, EH performs recovery actions with increasing
/linux-6.14.4/Documentation/crypto/
Dapi-intro.rst15 One of the initial goals of this design was to readily support IPsec,

1234