/kernel/linux/linux-5.10/Documentation/admin-guide/mm/ |
D | numa_memory_policy.rst | 17 Memory policies should not be confused with cpusets 20 memory may be allocated by a set of processes. Memory policies are a 22 both cpusets and policies are applied to a task, the restrictions of the cpuset 23 takes priority. See :ref:`Memory Policies and cpusets <mem_pol_and_cpusets>` 29 Scope of Memory Policies 63 In a multi-threaded task, task policies apply only to the thread 90 VMA policies have a few complicating details: 102 * VMA policies are shared between all tasks that share a 105 fork(). However, because VMA policies refer to a specific 107 space is discarded and recreated on exec*(), VMA policies [all …]
|
/kernel/linux/linux-5.10/net/netlink/ |
D | policy.c | 24 } policies[]; member 38 if (state->policies[i].policy == policy && in add_policy() 39 state->policies[i].maxtype == maxtype) in add_policy() 42 if (!state->policies[i].policy) { in add_policy() 43 state->policies[i].policy = policy; in add_policy() 44 state->policies[i].maxtype = maxtype; in add_policy() 50 state = krealloc(state, struct_size(state, policies, n_alloc), in add_policy() 55 memset(&state->policies[state->n_alloc], 0, in add_policy() 56 flex_array_size(state, policies, n_alloc - state->n_alloc)); in add_policy() 58 state->policies[state->n_alloc].policy = policy; in add_policy() [all …]
|
/kernel/linux/linux-5.10/Documentation/filesystems/ |
D | fscrypt.rst | 148 Limitations of v1 policies 151 v1 encryption policies have some weaknesses with respect to online 167 All the above problems are fixed with v2 encryption policies. For 169 policies on all new encrypted directories. 212 the key is used for v1 encryption policies or for v2 encryption 213 policies. Users **must not** use the same key for both v1 and v2 214 encryption policies. (No real-world attack is currently known on this 218 For v1 encryption policies, the KDF only supports deriving per-file 224 For v2 encryption policies, the KDF is HKDF-SHA512. The master key is 259 DIRECT_KEY policies [all …]
|
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/gt/uc/ |
D | intel_guc_ads.c | 38 struct guc_policies policies; member 68 static void guc_policies_init(struct guc_policies *policies) in guc_policies_init() argument 73 policies->dpc_promote_time = POLICY_DEFAULT_DPC_PROMOTE_TIME_US; in guc_policies_init() 74 policies->max_num_work_items = POLICY_MAX_NUM_WI; in guc_policies_init() 78 policy = &policies->policy[p][i]; in guc_policies_init() 84 policies->is_valid = 1; in guc_policies_init() 128 /* GuC scheduling policies */ in __guc_ads_init() 129 guc_policies_init(&blob->policies); in __guc_ads_init() 184 blob->ads.scheduler_policies = base + ptr_offset(blob, policies); in __guc_ads_init()
|
/kernel/linux/linux-5.10/tools/testing/selftests/net/ |
D | xfrm_policy.sh | 59 # add policies with different netmasks, to make sure kernel carries 60 # the policies contained within new netmask over when search tree is 68 # policies it carries need to be merged with the existing one(s). 98 # the sub-tree. As no duplicates are allowed, policies in 110 # similar to above: add policies (with partially random address), with shrinking prefixes. 152 # policies that are not supposed to match any packets generated in this test. 290 # insert non-overlapping policies in a random order and check that 446 # insert block policies with adjacent/overlapping netmasks 449 check_exceptions "exceptions and block policies" 459 check_exceptions "exceptions and block policies after hresh changes" [all …]
|
/kernel/uniproton/ |
D | OAT.xml | 32 … <filefilter name="defaultPolicyFilter" desc="Filters for compatibility,license header policies"> 37 <filefilter name="copyrightPolicyFilter" desc="Filters for copyright header policies"> 42 <filefilter name="licenseFileNamePolicyFilter" desc="Filters for LICENSE file policies"> 47 <filefilter name="readmeFileNamePolicyFilter" desc="Filters for README file policies"> 52 …ter name="readmeOpenSourcefileNamePolicyFilter" desc="Filters for README.OpenSource file policies"> 57 <filefilter name="binaryFileTypePolicyFilter" desc="Filters for binary file policies">
|
/kernel/liteos_m/ |
D | OAT.xml | 43 … <filefilter name="defaultPolicyFilter" desc="Filters for compatibility,license header policies"> 48 <filefilter name="copyrightPolicyFilter" desc="Filters for copyright header policies"> 53 <filefilter name="licenseFileNamePolicyFilter" desc="Filters for LICENSE file policies"> 58 <filefilter name="readmeFileNamePolicyFilter" desc="Filters for README file policies"> 63 …ter name="readmeOpenSourcefileNamePolicyFilter" desc="Filters for README.OpenSource file policies"> 68 <filefilter name="binaryFileTypePolicyFilter" desc="Filters for binary file policies">
|
/kernel/liteos_a/ |
D | OAT.xml | 42 <filefilter name="defaultPolicyFilter" desc="Filters for license header policies"> 47 <filefilter name="copyrightPolicyFilter" desc="Filters for copyright header policies"> 52 <filefilter name="licenseFileNamePolicyFilter" desc="Filters for LICENSE file policies"> 57 <filefilter name="readmeFileNamePolicyFilter" desc="Filters for README file policies"> 62 …ter name="readmeOpenSourcefileNamePolicyFilter" desc="Filters for README.OpenSource file policies"> 67 <filefilter name="binaryFileTypePolicyFilter" desc="Filters for binary file policies">
|
/kernel/linux/linux-5.10/include/uapi/linux/ |
D | mempolicy.h | 3 * NUMA memory policies for Linux. 18 /* Policies */ 60 #define MPOL_F_SHARED (1 << 0) /* identify shared policies */
|
/kernel/linux/linux-5.10/tools/testing/selftests/cpufreq/ |
D | cpufreq.sh | 31 policies=$(ls $CPUFREQROOT| grep "policy[0-9].*") 32 for policy in $policies; do 39 policies=$(ls $CPUFREQROOT| grep "policy[0-9].*") 40 for policy in $policies; do
|
/kernel/linux/linux-5.10/tools/perf/trace/beauty/ |
D | sched_policy.c | 22 const char *policies[] = { in syscall_arg__scnprintf_sched_policy() local 31 printed = scnprintf(bf, size, "%s%s", show_prefix ? prefix : "", policies[policy]); in syscall_arg__scnprintf_sched_policy()
|
/kernel/linux/linux-5.10/include/linux/ |
D | mempolicy.h | 3 * NUMA memory policies for Linux. 74 * Currently only needed for shared policies. 112 * Tree of shared policies for a shared memory region. 113 * Maintain the policies in a pseudo mm that contains vmas. The vmas
|
/kernel/linux/linux-5.10/Documentation/admin-guide/device-mapper/ |
D | cache-policies.rst | 2 Guidance for writing policies 7 makes it easier to write the policies. 26 Overview of supplied cache replacement policies
|
D | index.rst | 8 cache-policies
|
D | cache.rst | 158 Policies will have different tunables, specific to each one, so we 160 messages are used. Refer to cache-policies.txt. 199 See cache-policies.txt for details. 295 Policies will have different tunables, specific to each one, so we
|
/kernel/linux/linux-5.10/Documentation/admin-guide/LSM/ |
D | SafeSetID.rst | 100 applicable restriction policy is in place. Policies are configured through 109 Note on GID policies and setgroups() 116 policies add no meaningful security. setgroups() restrictions will be enforced
|
/kernel/linux/linux-5.10/drivers/staging/wfx/ |
D | data_tx.c | 159 struct tx_policy *policies = wvif->tx_policy_cache.cache; in wfx_tx_policy_upload() local 166 is_used = memzcmp(policies[i].rates, in wfx_tx_policy_upload() 167 sizeof(policies[i].rates)); in wfx_tx_policy_upload() 168 if (!policies[i].uploaded && is_used) in wfx_tx_policy_upload() 172 policies[i].uploaded = true; in wfx_tx_policy_upload() 173 memcpy(tmp_rates, policies[i].rates, sizeof(tmp_rates)); in wfx_tx_policy_upload()
|
/kernel/linux/linux-5.10/fs/nfsd/ |
D | Kconfig | 155 SELinux and Smack to label files to facilitate enforcement of their policies. 159 Smack policies on NFSv4 files, say N.
|
/kernel/linux/linux-5.10/fs/crypto/ |
D | keysetup_v1.c | 3 * Key setup for v1 encryption policies 18 * - Handling policies with the DIRECT_KEY flag set using a master key table 31 /* Table of keys referenced by DIRECT_KEY policies */
|
/kernel/linux/linux-5.10/tools/power/cpupower/man/ |
D | cpupower-info.1 | 10 registers affecting processor power saving policies.
|
/kernel/linux/linux-5.10/block/ |
D | Kconfig | 100 the IO rate to a device. IO rate policies are per cgroup and 102 cgroups and specifying per device IO rate policies.
|
/kernel/linux/linux-5.10/drivers/md/ |
D | dm-cache-metadata.h | 130 * policies are changed, then hints will be lost. If the machine crashes, 133 * The hints are indexed by the cblock, but many policies will not
|
/kernel/linux/linux-5.10/Documentation/ABI/removed/ |
D | raw1394 | 7 to implement sensible device security policies, and its low level
|
/kernel/linux/linux-5.10/net/netfilter/ |
D | xt_cgroup.c | 6 * policies in contrast to global policies based on control groups.
|
/kernel/linux/linux-5.10/Documentation/admin-guide/cgroup-v1/ |
D | blkio-controller.rst | 8 a need of various kinds of IO control policies (like proportional BW, max BW) 11 and based on user options switch IO policies in the background. 292 Common files among various policies
|