/openbmc/linux/Documentation/ABI/testing/ |
H A D | sysfs-kernel-mm-damon | 29 file updates contents of schemes stats files of the kdamond. 141 What: /sys/kernel/mm/damon/admin/kdamonds/<K>/contexts/<C>/schemes/nr_schemes 146 of the context named '0' to 'N-1' under the schemes/ directory. 148 What: /sys/kernel/mm/damon/admin/kdamonds/<K>/contexts/<C>/schemes/<S>/action 154 What: /sys/kernel/mm/damon/admin/kdamonds/<K>/contexts/<C>/schemes/<S>/access_pattern/sz/min 160 What: /sys/kernel/mm/damon/admin/kdamonds/<K>/contexts/<C>/schemes/<S>/access_pattern/sz/max 166 What: /sys/kernel/mm/damon/admin/kdamonds/<K>/contexts/<C>/schemes/<S>/access_pattern/nr_accesses/… 172 What: /sys/kernel/mm/damon/admin/kdamonds/<K>/contexts/<C>/schemes/<S>/access_pattern/nr_accesses/… 178 What: /sys/kernel/mm/damon/admin/kdamonds/<K>/contexts/<C>/schemes/<S>/access_pattern/age/min 184 What: /sys/kernel/mm/damon/admin/kdamonds/<K>/contexts/<C>/schemes/<S>/access_pattern/age/max [all …]
|
/openbmc/linux/Documentation/translations/zh_CN/admin-guide/mm/damon/ |
H A D | usage.rst | 75 │ │ │ │ │ schemes/nr_schemes 138 ``targets``, 和 ``schemes``)。 198 contexts/<N>/schemes/ 208 schemes/<N>/ 226 schemes/<N>/access_pattern/ 236 schemes/<N>/quotas/ 255 schemes/<N>/watermarks/ 273 schemes/<N>/stats/ 284 schemes/<N>/tried_regions/ 314 # echo 1 > kdamonds/0/contexts/0/schemes/nr_schemes [all …]
|
/openbmc/linux/Documentation/admin-guide/mm/damon/ |
H A D | usage.rst | 78 │ │ │ │ │ schemes/nr_schemes 163 and three directories (``monitoring_attrs``, ``targets``, and ``schemes``) 258 contexts/<N>/schemes/ 261 The directory for DAMON-based Operation Schemes (:ref:`DAMOS 262 <damon_design_damos>`). Users can get and set the schemes by reading from and 269 schemes/<N>/ 300 schemes/<N>/access_pattern/ 313 schemes/<N>/quotas/ 336 schemes/<N>/watermarks/ 355 schemes/<N>/filters/ [all …]
|
/openbmc/linux/drivers/net/ethernet/freescale/fman/ |
H A D | fman_keygen.c | 15 /* Maximum number of KeyGen Schemes */ 201 * schemes sharing between multiple ports is not 230 struct keygen_scheme schemes[FM_KG_MAX_NUM_OF_SCHEMES]; member 231 /* Array of schemes */ 283 * Build Action Register value for port binding to schemes 361 * Write all Schemes Registers with specified values 416 * Return: 0 on success, -EINVAL when the are no available free schemes 423 if (!keygen->schemes[i].used) { in get_free_scheme_id() 445 return &keygen->schemes[scheme_id]; in get_scheme() 450 * Bind the port to schemes [all …]
|
/openbmc/phosphor-misc/http-redirect/ |
H A D | test.awk | 158 function mkabsuris(uris, host, ports, schemes, scheme, port) 160 mkschemes(schemes) 162 for (scheme in schemes) 164 add(uris, schemes[scheme] "://" host ports[port] ) 167 function mkschemes(schemes, h, t1, t2, p, hs, ts, ps) { 176 add(schemes, hs[h] ts[t1] ts[t2] ps[p])
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/libusbgx/ |
H A D | libusbgx_git.bb | 23 PACKAGECONFIG ??= "examples gadget-schemes libconfig" 26 PACKAGECONFIG[gadget-schemes] = "--enable-gadget-schemes,--disable-gadget-schemes"
|
/openbmc/linux/tools/testing/selftests/damon/ |
H A D | sysfs_update_removed_scheme_dir.sh | 29 echo 1 > "$damon_sysfs/kdamonds/0/contexts/0/schemes/nr_schemes" 30 scheme_dir="$damon_sysfs/kdamonds/0/contexts/0/schemes/0" 38 echo 0 > "$damon_sysfs/kdamonds/0/contexts/0/schemes/nr_schemes"
|
H A D | debugfs_schemes.sh | 6 # Test schemes file 9 file="$DBGFS/schemes"
|
/openbmc/linux/mm/damon/ |
H A D | dbgfs.c | 193 static void free_schemes_arr(struct damos **schemes, ssize_t nr_schemes) in free_schemes_arr() argument 198 kfree(schemes[i]); in free_schemes_arr() 199 kfree(schemes); in free_schemes_arr() 235 struct damos *scheme, **schemes; in str_to_schemes() local 241 schemes = kmalloc_array(max_nr_schemes, sizeof(scheme), in str_to_schemes() 243 if (!schemes) in str_to_schemes() 286 schemes[*nr_schemes] = scheme; in str_to_schemes() 289 return schemes; in str_to_schemes() 291 free_schemes_arr(schemes, *nr_schemes); in str_to_schemes() 300 struct damos **schemes; in dbgfs_schemes_write() local [all …]
|
H A D | sysfs-schemes.c | 181 * schemes/stats directory 1380 * schemes directory 1388 void damon_sysfs_schemes_rm_dirs(struct damon_sysfs_schemes *schemes) in damon_sysfs_schemes_rm_dirs() argument 1390 struct damon_sysfs_scheme **schemes_arr = schemes->schemes_arr; in damon_sysfs_schemes_rm_dirs() 1393 for (i = 0; i < schemes->nr; i++) { in damon_sysfs_schemes_rm_dirs() 1397 schemes->nr = 0; in damon_sysfs_schemes_rm_dirs() 1399 schemes->schemes_arr = NULL; in damon_sysfs_schemes_rm_dirs() 1402 static int damon_sysfs_schemes_add_dirs(struct damon_sysfs_schemes *schemes, in damon_sysfs_schemes_add_dirs() argument 1408 damon_sysfs_schemes_rm_dirs(schemes); in damon_sysfs_schemes_add_dirs() 1416 schemes->schemes_arr = schemes_arr; in damon_sysfs_schemes_add_dirs() [all …]
|
H A D | sysfs.c | 637 struct damon_sysfs_schemes *schemes; member 694 struct damon_sysfs_schemes *schemes = damon_sysfs_schemes_alloc(); in damon_sysfs_context_set_schemes() local 697 if (!schemes) in damon_sysfs_context_set_schemes() 699 err = kobject_init_and_add(&schemes->kobj, &damon_sysfs_schemes_ktype, in damon_sysfs_context_set_schemes() 700 &context->kobj, "schemes"); in damon_sysfs_context_set_schemes() 702 kobject_put(&schemes->kobj); in damon_sysfs_context_set_schemes() 705 context->schemes = schemes; in damon_sysfs_context_set_schemes() 741 damon_sysfs_schemes_rm_dirs(context->schemes); in damon_sysfs_context_rm_dirs() 742 kobject_put(&context->schemes->kobj); in damon_sysfs_context_rm_dirs() 1008 * @DAMON_SYSFS_CMD_UPDATE_SCHEMES_TRIED_REGIONS: Update schemes tried [all …]
|
H A D | sysfs-common.h | 27 * schemes directory 37 void damon_sysfs_schemes_rm_dirs(struct damon_sysfs_schemes *schemes);
|
H A D | Makefile | 6 obj-$(CONFIG_DAMON_SYSFS) += sysfs-common.o sysfs-schemes.o sysfs.o
|
/openbmc/linux/include/linux/ |
H A D | damon.h | 19 /* Max priority score for DAMON-based operation schemes */ 314 * To do the work only when needed, schemes can be activated for specific 315 * system situations using &wmarks. If all schemes that registered to the 319 * If all schemes that registered to a &struct damon_ctx are inactive, DAMON 435 * @after_wmarks_check: Called after each schemes' watermarks check. 448 * operation schemes' watermarks check. If users need to make changes to the 530 * @schemes: Head of schemes (&damos) list. 559 struct list_head schemes; member 604 list_for_each_entry(s, &(ctx)->schemes, list) 607 list_for_each_entry_safe(s, next, &(ctx)->schemes, list) [all …]
|
/openbmc/u-boot/doc/ |
H A D | README.nand | 238 Though higher ECC schemes have more capability to detect and correct 242 SoC cannot support BCHx_HW ECC schemes. 244 With higher ECC schemes, more OOB/Spare area is required to 255 3 for HAM1_xx ecc schemes 256 7 for BCH4_xx ecc schemes 257 14 for BCH8_xx ecc schemes 258 26 for BCH16_xx ecc schemes
|
/openbmc/linux/Documentation/mm/damon/ |
H A D | design.rst | 223 Operation Schemes 236 One straightforward approach for such schemes would be profile-guided 246 effective, and therefore widely be used. However, implementing such schemes 254 Schemes (DAMOS). It lets users specify their desired schemes at a high 289 The access pattern of the schemes' interest. The patterns are constructed with 360 is activated. If all schemes are deactivated by the watermarks, the monitoring 377 To let users optimize DAMOS schemes with such special knowledge, DAMOS provides 389 list. Hence, users can apply specific schemes to only anonymous pages,
|
/openbmc/linux/tools/perf/pmu-events/arch/x86/amdzen2/ |
H A D | floating-point.json | 71 …ful for measuring the effectiveness of the Move elimination and Scalar code optimization schemes.", 77 …ful for measuring the effectiveness of the Move elimination and Scalar code optimization schemes.", 83 …ful for measuring the effectiveness of the Move elimination and Scalar code optimization schemes.", 89 …ful for measuring the effectiveness of the Move elimination and Scalar code optimization schemes.",
|
/openbmc/linux/drivers/usb/musb/ |
H A D | Makefile | 29 # possible I/O schemes will be enabled at a time ... 30 # PIO only, or DMA (several potential schemes).
|
/openbmc/linux/tools/perf/pmu-events/arch/x86/amdzen3/ |
H A D | floating-point.json | 70 …ful for measuring the effectiveness of the Move elimination and Scalar code optimization schemes.", 76 …ful for measuring the effectiveness of the Move elimination and Scalar code optimization schemes.", 82 …ful for measuring the effectiveness of the Move elimination and Scalar code optimization schemes.", 88 …ful for measuring the effectiveness of the Move elimination and Scalar code optimization schemes.",
|
/openbmc/openbmc/poky/bitbake/lib/bb/fetch2/ |
H A D | hg.py | 129 …lt.username=%s --config auth.default.password=%s --config \"auth.default.schemes=%s\" clone %s %s:… 137 …lt.username=%s --config auth.default.password=%s --config \"auth.default.schemes=%s\" pull" % (ud.… 142 …lt.username=%s --config auth.default.password=%s --config \"auth.default.schemes=%s\" update -C %s… 255 …lt.username=%s --config auth.default.password=%s --config \"auth.default.schemes=%s\" pull %s" % (… 259 …lt.username=%s --config auth.default.password=%s --config \"auth.default.schemes=%s\" up -C %s" % …
|
/openbmc/linux/tools/perf/pmu-events/arch/x86/amdzen1/ |
H A D | floating-point.json | 172 …g the effectiveness of the Move elimination and Scalar code optimization schemes. Number of Scalar… 179 …g the effectiveness of the Move elimination and Scalar code optimization schemes. Number of Ops th… 186 …g the effectiveness of the Move elimination and Scalar code optimization schemes. Number of SSE Mo… 193 …g the effectiveness of the Move elimination and Scalar code optimization schemes. Number of SSE Mo…
|
/openbmc/openbmc/poky/meta/files/common-licenses/ |
H A D | ODC-By-1.0 | 103 3.2 Compulsory license schemes. For the avoidance of doubt: 105 …a. Non-waivable compulsory license schemes. In those jurisdictions in which the right to collect r… 107 …b. Waivable compulsory license schemes. In those jurisdictions in which the right to collect royal… 109 …schemes. The Licensor waives the right to collect royalties, whether individually or, in the event…
|
H A D | CC-BY-ND-3.0 | 32 Non-waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royal… 33 Waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties… 34 …Schemes. The Licensor waives the right to collect royalties, whether individually or, in the event…
|
/openbmc/linux/Documentation/admin-guide/LSM/ |
H A D | Smack.rst | 348 Computer systems employ a variety of schemes to constrain how information is 349 shared among the people and services using the machine. Some of these schemes 351 access to pieces of data. These schemes are called discretionary access 353 of the user. Other schemes do not leave the decision regarding what a user or 354 program can access up to users or programs. These schemes are called mandatory 502 be "born" highly classified. To accommodate such schemes Smack includes a 552 schemes and concepts from other systems. Most often, the other systems are 650 of systems that use compatible labeling schemes, and the DOI specified on the
|
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/ |
H A D | python3-custom-inherit_2.4.1.bb | 1 SUMMARY = "A Python package that provides customized docstring inheritance schemes between derived …
|