/openbmc/openbmc-test-automation/gui/gui_test/security_and_access_menu/ |
H A D | test_policies_sub_menu.robot | 3 Documentation Test OpenBMC GUI "Policies" sub-menu of "Security and Access" menu. 18 ${xpath_policies_heading} //h1[text()="Policies"] 19 ${xpath_bmc_ssh_toggle} //*[@data-test-id='policies-toggle-bmcShell'] 24 ${xpath_virtual_tpm_toggle} //*[@data-test-id='policies-toggle-vtpm'] 25 ${xpath_rtad_toggle} //*[@data-test-id='policies-toggle-rtad'] 26 ${xpath_usb_firmware_update_policy_toggle} //*[@data-test-id='policies-toggle-usbFirmwareUpdateP… 27 ${xpath_secure_version_lockin_toggle} //*[@data-test-id='policies-toggle-svle'] 28 ${xpath_host_usb_enablement_toggle} //*[@data-test-id='policies-toggle-hostUsb'] 33 Verify Navigation To Policies Page 34 [Documentation] Verify navigation to policies page. [all …]
|
/openbmc/linux/Documentation/admin-guide/mm/ |
H A D | numa_memory_policy.rst | 15 Memory policies should not be confused with cpusets 18 memory may be allocated by a set of processes. Memory policies are a 20 both cpusets and policies are applied to a task, the restrictions of the cpuset 21 takes priority. See :ref:`Memory Policies and cpusets <mem_pol_and_cpusets>` 27 Scope of Memory Policies 61 In a multi-threaded task, task policies apply only to the thread 88 VMA policies have a few complicating details: 100 * VMA policies are shared between all tasks that share a 103 fork(). However, because VMA policies refer to a specific 105 space is discarded and recreated on exec*(), VMA policies [all …]
|
/openbmc/linux/net/netlink/ |
H A 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 …]
|
/openbmc/webui-vue/src/views/SecurityAndAccess/Policies/ |
H A D | Policies.vue | 17 data-test-id="policies-toggle-bmcShell" 67 data-test-id="policies-toggle-vtpm" 92 data-test-id="policies-toggle-rtad" 144 name: 'Policies', 169 return this.$store.getters['policies/sshProtocolEnabled']; 177 return this.$store.getters['policies/ipmiProtocolEnabled']; 185 if (this.$store.getters['policies/rtadEnabled'] === 'Enabled') { 197 if (this.$store.getters['policies/vtpmEnabled'] === 'Enabled') { 209 return this.$store.getters['policies/getSessionTimeoutValue']; 219 this.$store.dispatch('policies/getBiosStatus'), [all …]
|
H A D | index.js | 1 import Policies from './Policies.vue'; 2 export default Policies;
|
/openbmc/phosphor-fan-presence/presence/ |
H A D | json_parser.hpp | 30 using policies = std::vector<std::unique_ptr<RedundancyPolicy>>; typedef 61 * @brief Get the json config based fan presence policies 63 * @return - The fan presence policies 65 static const policies& get(); 78 * @brief Parses and populates the fan presence policies from 85 /* Fan presence policies */ 86 static policies _policies; 91 /* List of Fan objects to have presence policies */ 115 * policies. 163 * Redundancy policies for fan presence detection function declarations
|
H A D | json_parser.cpp | 46 policies JsonConfig::_policies; 74 const policies& JsonConfig::get() in get() 106 policies policies; in process() local 203 policies.emplace_back(std::move(policy)); in process() 207 // Success, refresh fans and policies lists in process() 212 _policies.swap(policies); in process() 347 * Redundancy policies for fan presence detection function definitions
|
/openbmc/phosphor-fan-presence/presence/templates/ |
H A D | generated.mako.hpp | 66 using Policies = std::array<std::unique_ptr<RedundancyPolicy>, ${len(policies)}>; typedef 70 static const Policies policies = in get() local 72 % for p in policies: in get() 76 return policies; in get()
|
/openbmc/linux/Documentation/filesystems/ |
H A 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 …]
|
/openbmc/linux/tools/testing/selftests/net/ |
H A 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 …]
|
/openbmc/webui-vue/src/env/router/ |
H A D | intel.js | 20 import Policies from '@/views/SecurityAndAccess/Policies'; 158 path: '/security-and-access/policies', 159 name: 'policies', 160 component: Policies, 162 title: i18n.t('appPageTitle.policies'),
|
H A D | ibm.js | 21 import Policies from '@/views/SecurityAndAccess/Policies'; 163 path: '/security-and-access/policies', 164 name: 'policies', 165 component: Policies, 167 title: i18n.t('appPageTitle.policies'),
|
/openbmc/webui-vue/src/router/ |
H A D | routes.js | 23 import Policies from '@/views/SecurityAndAccess/Policies'; 181 path: '/security-and-access/policies', 182 name: 'policies', 183 component: Policies, 185 title: i18n.global.t('appPageTitle.policies'),
|
/openbmc/linux/tools/testing/selftests/amd-pstate/ |
H A D | run.sh | 73 policies=$(ls $CPUFREQROOT| grep "policy[0-9].*") 74 for policy in $policies; do 86 policies=$(awk '{print $1}' $OUTFILE.backup_governor.log) 87 for policy in $policies; do 101 policies=$(ls $CPUFREQROOT| grep "policy[0-9].*") 102 for policy in $policies; do
|
/openbmc/linux/include/uapi/linux/ |
H A D | mempolicy.h | 3 * NUMA memory policies for Linux. 18 /* Policies */ 63 #define MPOL_F_SHARED (1 << 0) /* identify shared policies */
|
/openbmc/linux/tools/testing/selftests/cpufreq/ |
H A 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
|
/openbmc/ibm-logging/ |
H A D | policy_table.cpp | 67 policies.emplace(policy["err"], std::move(detailsList)); in load() 87 auto policy = policies.find(error); in find() 89 if (policy != policies.end()) in find()
|
/openbmc/linux/include/linux/ |
H A D | mempolicy.h | 3 * NUMA memory policies for Linux. 71 * Currently only needed for shared policies. 109 * Tree of shared policies for a shared memory region. 110 * Maintain the policies in a pseudo mm that contains vmas. The vmas
|
/openbmc/linux/tools/perf/trace/beauty/ |
H A 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()
|
/openbmc/webui-vue/src/env/components/AppNavigation/ |
H A D | intel.js | 144 id: 'policies', 145 label: i18n.global.t('appNavigation.policies'), 146 route: '/security-and-access/policies',
|
H A D | ibm.js | 119 id: 'policies', 120 label: i18n.global.t('appNavigation.policies'), 121 route: '/security-and-access/policies',
|
/openbmc/linux/drivers/gpu/drm/i915/gt/uc/ |
H A D | intel_guc_ads.c | 60 struct guc_policies policies; member 148 ads_blob_write(guc, policies.dpc_promote_time, in guc_policies_init() 150 ads_blob_write(guc, policies.max_num_work_items, in guc_policies_init() 156 ads_blob_write(guc, policies.global_flags, global_flags); in guc_policies_init() 157 ads_blob_write(guc, policies.is_valid, 1); in guc_policies_init() 166 drm_printf(dp, "Global scheduling policies:\n"); in intel_guc_ads_print_policy_info() 168 ads_blob_read(guc, policies.dpc_promote_time)); in intel_guc_ads_print_policy_info() 170 ads_blob_read(guc, policies.max_num_work_items)); in intel_guc_ads_print_policy_info() 172 ads_blob_read(guc, policies.global_flags)); in intel_guc_ads_print_policy_info() 802 /* GuC scheduling policies */ in __guc_ads_init() [all …]
|
/openbmc/bmcweb/redfish-core/schema/dmtf/json-schema/ |
H A D | KeyService.v1_0_1.json | 5 …4-2024 DMTF. For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright", 87 "description": "The NVMe-oF key policies maintained by this service.", 88 … collection of type `KeyPolicyCollection` that contains the NVMe-oF key policies maintained by thi…
|
/openbmc/linux/Documentation/admin-guide/device-mapper/ |
H A D | cache-policies.rst | 2 Guidance for writing policies 7 makes it easier to write the policies. 26 Overview of supplied cache replacement policies
|
/openbmc/webui-vue/src/components/AppNavigation/ |
H A D | AppNavigationMixin.js | 173 id: 'policies', 174 label: i18n.global.t('appNavigation.policies'), 175 route: '/security-and-access/policies',
|