/linux/drivers/gpu/drm/radeon/ |
H A D | r420.c | 48 rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_off_ps_idx = rdev->pm.default_power_state_index; in r420_pm_init_profile() 49 rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_on_ps_idx = rdev->pm.default_power_state_index; in r420_pm_init_profile() 50 rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_off_cm_idx = 0; in r420_pm_init_profile() 51 rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_on_cm_idx = 0; in r420_pm_init_profile() 53 rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_off_ps_idx = 0; in r420_pm_init_profile() 54 rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_on_ps_idx = 0; in r420_pm_init_profile() 55 rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_off_cm_idx = 0; in r420_pm_init_profile() 56 rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_on_cm_idx = 0; in r420_pm_init_profile() 58 rdev->pm.profiles[PM_PROFILE_MID_SH_IDX].dpms_off_ps_idx = 0; in r420_pm_init_profile() 59 rdev->pm.profiles[PM_PROFILE_MID_SH_IDX].dpms_on_ps_idx = 1; in r420_pm_init_profile() [all …]
|
H A D | r600.c | 539 rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_off_ps_idx = rdev->pm.default_power_state_index; in rs780_pm_init_profile() 540 rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_on_ps_idx = rdev->pm.default_power_state_index; in rs780_pm_init_profile() 541 rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_off_cm_idx = 0; in rs780_pm_init_profile() 542 rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_on_cm_idx = 0; in rs780_pm_init_profile() 544 rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_off_ps_idx = 0; in rs780_pm_init_profile() 545 rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_on_ps_idx = 0; in rs780_pm_init_profile() 546 rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_off_cm_idx = 0; in rs780_pm_init_profile() 547 rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_on_cm_idx = 0; in rs780_pm_init_profile() 549 rdev->pm.profiles[PM_PROFILE_MID_SH_IDX].dpms_off_ps_idx = 0; in rs780_pm_init_profile() 550 rdev->pm.profiles[PM_PROFILE_MID_SH_IDX].dpms_on_ps_idx = 0; in rs780_pm_init_profile() [all …]
|
H A D | evergreen.c | 1502 * sumo_pm_init_profile - Initialize power profiles callback. 1515 rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_off_ps_idx = rdev->pm.default_power_state_index; in sumo_pm_init_profile() 1516 rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_on_ps_idx = rdev->pm.default_power_state_index; in sumo_pm_init_profile() 1517 rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_off_cm_idx = 0; in sumo_pm_init_profile() 1518 rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_on_cm_idx = 0; in sumo_pm_init_profile() 1526 rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_off_ps_idx = idx; in sumo_pm_init_profile() 1527 rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_on_ps_idx = idx; in sumo_pm_init_profile() 1528 rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_off_cm_idx = 0; in sumo_pm_init_profile() 1529 rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_on_cm_idx = 0; in sumo_pm_init_profile() 1531 rdev->pm.profiles[PM_PROFILE_LOW_MH_IDX].dpms_off_ps_idx = idx; in sumo_pm_init_profile() [all …]
|
/linux/security/apparmor/include/ |
H A D | policy_ns.h | 22 /* struct aa_ns_acct - accounting of profiles in namespace 23 * @max_size: maximum space allowed for all profiles in namespace 24 * @max_count: maximum number of profiles that can be in this namespace 25 * @size: current size of profiles 26 * @count: current count of profiles (includes null profiles) 35 /* struct aa_ns - namespace for a set of profiles 42 * @uniq_null: uniq value used for null learning profiles 43 * @uniq_id: a unique id count for the profiles in the namespace 47 * An aa_ns defines the set profiles that are searched to determine which 48 * profile to attach to a task. Profiles can not be shared between aa_ns [all …]
|
H A D | policy.h | 68 * FIXME: currently need a clean way to replace and remove profiles as a 70 * Either, with a set of profiles loaded at the namespace level or via 182 /* struct aa_attachment - data and rules for a profiles attachment 215 * @dents: dentries for the profiles file entries in apparmorfs 227 * Profiles have a hierarchy where hats and children profiles keep
|
H A D | lib.h | 159 /* struct aa_policy - common part of both namespaces and profiles 163 * @profiles: head of the profiles list contained in the object 169 struct list_head profiles; member
|
/linux/security/apparmor/ |
H A D | policy.c | 10 * AppArmor policy is based around profiles, which contain the rules a 13 * visible set of profiles or by following a profiles attachment rules. 16 * visible profiles. Each namespace contains a special "unconfined" profile, 29 * null-XXXX-YYYY - special automatically generated learning profiles 33 * user-XXXX - user defined profiles 39 * The namespace contains the set of visible profiles that are considered 41 * the namespace so that for example a chroot can have its own set of profiles 44 * - it allows for sub profiles or hats, which allows an application to run 50 * - it allows for binary hierarchy of profiles, so that execution history 138 * __add_profile - add a profiles to list and label tree [all …]
|
H A D | apparmorfs.c | 1039 * policy/profiles/XXXX/profiles/ * 1534 list_for_each_entry(child, &profile->base.profiles, base.list) in __aafs_profile_rmdir() 1708 dent = aafs_create_dir("profiles", dent); in __aafs_profile_mkdir() 1789 list_for_each_entry(child, &profile->base.profiles, base.list) { in __aafs_profile_mkdir() 1930 list_for_each_entry(child, &ns->base.profiles, base.list) in __aafs_ns_rmdir() 1976 dent = aafs_create_dir("profiles", dir); in __aafs_ns_mkdir_entries() 2055 /* profiles */ in __aafs_ns_mkdir() 2056 list_for_each_entry(child, &ns->base.profiles, base.list) { in __aafs_ns_mkdir() 2127 * @root: namespace that is root of profiles being displayed (NOT NULL) 2140 if (!list_empty(&ns->base.profiles)) in __first_profile() [all …]
|
H A D | domain.c | 380 * Do a linear search on the profiles in the list. There is a matching 409 /* Find the "best" matching profile. Profiles must in find_attach() 600 new = find_attach(bprm, ns, &profile->base.profiles, in x_to_label() 604 new = find_attach(bprm, ns, &ns->base.profiles, in x_to_label() 693 &profile->ns->base.profiles, name, &info); in profile_transition() 1150 /* found a hat for all profiles in ns */ in change_hat() 1163 if (!list_empty(&profile->base.profiles)) { in change_hat() 1218 * change_hat only applies to profiles in the current ns, and each profile 1255 empty &= list_empty(&profile->base.profiles); in aa_change_hat() 1543 /* only transition profiles in the current ns */ in aa_change_profile()
|
/linux/tools/testing/selftests/drivers/net/mlxsw/ |
H A D | rif_mac_profile_scale.sh | 4 # Test for RIF MAC profiles resource. The test adds VLAN netdevices according to 5 # the maximum number of RIF MAC profiles, sets each of them with a random 7 # profiles equals the maximum number of RIF MAC profiles. 46 check_err_fail $should_fail $? "Attempt to use $count profiles (actual result $occ)"
|
H A D | rif_mac_profiles_occ.sh | 37 # Reload in order to clean all the RIFs and RIF MAC profiles created 118 # MAC replacement should fail because all the MAC profiles are in use
|
/linux/drivers/net/ethernet/intel/i40e/ |
H A D | i40e_ddp.c | 27 * i40e_ddp_profiles_eq - checks if DDP profiles are the equivalent 31 * checks if DDP profiles are the equivalent. 32 * Returns true if profiles are the same. 74 * i40e_ddp_profiles_overlap - checks if DDP profiles overlap. 78 * checks if DDP profiles overlap. 79 * Returns true if profiles are overlap. 93 /* otherwise only profiles from the same group are compatible*/ in i40e_ddp_profiles_overlap() 136 * Register a profile to the list of loaded profiles. 336 netdev_err(netdev, "Failed to fetch loaded profiles."); in i40e_ddp_load() 346 netdev_err(netdev, "Failed to fetch loaded profiles."); in i40e_ddp_load() [all …]
|
/linux/Documentation/dev-tools/ |
H A D | propeller.rst | 51 pair of Propeller profiles via an offline tool. 56 profiles. This build step uses 3 profiles - the AutoFDO profile, 141 This command generates a pair of Propeller profiles: 155 profiles. ::
|
/linux/drivers/net/wireless/intel/iwlwifi/fw/ |
H A D | acpi.c | 641 * Check the validity of n_profiles. The EWRD profiles start in iwl_acpi_get_ewrd_table() 656 /* parse non-cdb chains for all profiles */ in iwl_acpi_get_ewrd_table() 660 /* The EWRD profiles officially go from 2 to 4, but we in iwl_acpi_get_ewrd_table() 679 /* parse cdb chains for all profiles */ in iwl_acpi_get_ewrd_table() 714 u8 profiles; in iwl_acpi_get_wgds_table() member 720 .profiles = ACPI_NUM_GEO_PROFILES_REV3, in iwl_acpi_get_wgds_table() 726 .profiles = ACPI_NUM_GEO_PROFILES, in iwl_acpi_get_wgds_table() 731 .profiles = ACPI_NUM_GEO_PROFILES, in iwl_acpi_get_wgds_table() 751 u32 max_size = hdr_size + profile_size * rev_data[idx].profiles; in iwl_acpi_get_wgds_table() 768 num_profiles = rev_data[idx].profiles; in iwl_acpi_get_wgds_table() [all …]
|
/linux/Documentation/ABI/obsolete/ |
H A D | sysfs-driver-hid-roccat-kovaplus | 65 Description: The mouse can store 5 profiles which can be switched by the 80 Description: The mouse can store 5 profiles which can be switched by the 92 Description: The mouse can store 5 profiles which can be switched by the 108 Description: The mouse can store 5 profiles which can be switched by the
|
H A D | sysfs-driver-hid-roccat-pyra | 54 Description: The mouse can store 5 profiles which can be switched by the 69 Description: The mouse can store 5 profiles which can be switched by the 81 Description: The mouse can store 5 profiles which can be switched by the 97 Description: The mouse can store 5 profiles which can be switched by the
|
H A D | sysfs-driver-hid-roccat-savu | 4 Description: The mouse can store 5 profiles which can be switched by the 28 Description: The mouse can store 5 profiles which can be switched by the 62 Description: The mouse can store 5 profiles which can be switched by the
|
H A D | sysfs-driver-hid-roccat-koneplus | 58 Description: The mouse can store 5 profiles which can be switched by the 73 Description: The mouse can store 5 profiles which can be switched by the 85 Description: The mouse can store 5 profiles which can be switched by the 101 Description: The mouse can store 5 profiles which can be switched by the
|
H A D | sysfs-driver-hid-roccat-konepure | 4 Description: The mouse can store 5 profiles which can be switched by the 43 Description: The mouse can store 5 profiles which can be switched by the 58 Description: The mouse can store 5 profiles which can be switched by the
|
/linux/include/xen/interface/ |
H A D | xenpmu.h | 46 * - XENPMU_MODE_HV: Guests can profile themselves, dom0 profiles 48 * - XENPMU_MODE_ALL: Only dom0 has access to VPMU and it profiles
|
/linux/fs/btrfs/ |
H A D | Kconfig | 104 profiles (currently: pid, round-robin, 113 support RAID1* profiles on zoned devices,
|
/linux/Documentation/arch/x86/ |
H A D | tlb.rst | 43 profiles. If you believe that individual invalidations being 58 profiles, or you can use the trace_tlb_flush() tracepoints. to
|
/linux/include/uapi/linux/can/ |
H A D | gw.h | 145 /* CRC8 profiles (compute CRC for additional data elements - see below) */ 212 * defined in the handling of 'checksum profiles' e.g. shown in AUTOSAR specs 216 * So far only three profiles have been implemented for illustration.
|
/linux/drivers/net/wireless/intel/iwlwifi/fw/api/ |
H A D | scan.h | 134 * @num_profiles: num of profiles in the list 153 * @profiles: profiles to search for match 157 struct iwl_scan_offload_profile profiles[IWL_SCAN_MAX_PROFILES]; member 163 * @profiles: profiles to search for match 167 struct iwl_scan_offload_profile profiles[IWL_SCAN_MAX_PROFILES_V2]; member 1199 * @matched_profiles: bitmap of matched profiles, referencing the 1243 * @matched_profiles: bitmap of matched profiles, referencing the
|
/linux/Documentation/admin-guide/laptops/ |
H A D | alienware-wmi.rst | 16 profiles, sensor monitoring and overclocking. This interface is named "AWCC" and 68 The AWCC interface exposes various firmware defined thermal profiles. These are
|