/linux-4.1.27/drivers/infiniband/hw/mthca/ |
D | mthca_profile.c | 79 struct mthca_resource *profile; in mthca_make_profile() local 83 profile = kzalloc(MTHCA_RES_NUM * sizeof *profile, GFP_KERNEL); in mthca_make_profile() 84 if (!profile) in mthca_make_profile() 87 profile[MTHCA_RES_QP].size = dev_lim->qpc_entry_sz; in mthca_make_profile() 88 profile[MTHCA_RES_EEC].size = dev_lim->eec_entry_sz; in mthca_make_profile() 89 profile[MTHCA_RES_SRQ].size = dev_lim->srq_entry_sz; in mthca_make_profile() 90 profile[MTHCA_RES_CQ].size = dev_lim->cqc_entry_sz; in mthca_make_profile() 91 profile[MTHCA_RES_EQP].size = dev_lim->eqpc_entry_sz; in mthca_make_profile() 92 profile[MTHCA_RES_EEEC].size = dev_lim->eeec_entry_sz; in mthca_make_profile() 93 profile[MTHCA_RES_EQ].size = dev_lim->eqc_entry_sz; in mthca_make_profile() [all …]
|
D | mthca_main.c | 293 struct mthca_profile profile; in mthca_init_tavor() local 320 profile = hca_profile; in mthca_init_tavor() 321 profile.num_uar = dev_lim.uar_size / PAGE_SIZE; in mthca_init_tavor() 322 profile.uarc_size = 0; in mthca_init_tavor() 324 profile.num_srq = dev_lim.max_srqs; in mthca_init_tavor() 326 size = mthca_make_profile(mdev, &profile, &dev_lim, &init_hca); in mthca_init_tavor() 578 struct mthca_profile profile; in mthca_init_arbel() local 610 profile = hca_profile; in mthca_init_arbel() 611 profile.num_uar = dev_lim.uar_size / PAGE_SIZE; in mthca_init_arbel() 612 profile.num_udav = 0; in mthca_init_arbel() [all …]
|
/linux-4.1.27/drivers/net/ethernet/mellanox/mlx4/ |
D | profile.c | 84 struct mlx4_resource *profile; in mlx4_make_profile() local 89 profile = kcalloc(MLX4_RES_NUM, sizeof(*profile), GFP_KERNEL); in mlx4_make_profile() 90 if (!profile) in mlx4_make_profile() 111 profile[MLX4_RES_QP].size = dev_cap->qpc_entry_sz; in mlx4_make_profile() 112 profile[MLX4_RES_RDMARC].size = dev_cap->rdmarc_entry_sz; in mlx4_make_profile() 113 profile[MLX4_RES_ALTC].size = dev_cap->altc_entry_sz; in mlx4_make_profile() 114 profile[MLX4_RES_AUXC].size = dev_cap->aux_entry_sz; in mlx4_make_profile() 115 profile[MLX4_RES_SRQ].size = dev_cap->srq_entry_sz; in mlx4_make_profile() 116 profile[MLX4_RES_CQ].size = dev_cap->cqc_entry_sz; in mlx4_make_profile() 117 profile[MLX4_RES_EQ].size = dev_cap->eqc_entry_sz; in mlx4_make_profile() [all …]
|
D | Makefile | 4 main.o mcg.o mr.o pd.o port.o profile.o qp.o reset.o sense.o \
|
D | en_main.c | 130 struct mlx4_en_profile *params = &mdev->profile; in mlx4_en_get_profile() 305 if (mlx4_en_init_netdev(mdev, i, &mdev->profile.prof[i])) in mlx4_en_add()
|
D | en_netdev.c | 2803 priv->num_tx_rings_p_up = mdev->profile.num_tx_rings_p_up; in mlx4_en_init_netdev() 2990 mdev->profile.prof[priv->port].rx_ppp, in mlx4_en_init_netdev() 2991 mdev->profile.prof[priv->port].rx_pause, in mlx4_en_init_netdev() 2992 mdev->profile.prof[priv->port].tx_ppp, in mlx4_en_init_netdev() 2993 mdev->profile.prof[priv->port].tx_pause); in mlx4_en_init_netdev()
|
D | en_rx.c | 353 mdev->profile.prof[i].rx_ring_num = in mlx4_en_set_num_rx_rings() 1241 if (priv->mdev->profile.udp_rss) { in mlx4_en_config_rss_steer()
|
D | main.c | 2003 struct mlx4_profile profile; in mlx4_init_hca() local 2032 profile = low_mem_profile; in mlx4_init_hca() 2034 profile = default_profile; in mlx4_init_hca() 2038 profile.num_mcg = MLX4_FS_NUM_MCG; in mlx4_init_hca() 2040 icm_size = mlx4_make_profile(dev, &profile, &dev_cap, in mlx4_init_hca()
|
D | mlx4_en.h | 396 struct mlx4_en_profile profile; member
|
/linux-4.1.27/security/apparmor/ |
D | domain.c | 95 static struct file_perms change_profile_perms(struct aa_profile *profile, in change_profile_perms() argument 104 if (unconfined(profile)) { in change_profile_perms() 108 } else if (!profile->file.dfa) { in change_profile_perms() 110 } else if ((ns == profile->ns)) { in change_profile_perms() 112 aa_str_perms(profile->file.dfa, start, name, &cond, &perms); in change_profile_perms() 118 state = aa_dfa_match(profile->file.dfa, start, ns->base.name); in change_profile_perms() 119 state = aa_dfa_match_len(profile->file.dfa, state, ":", 1); in change_profile_perms() 120 aa_str_perms(profile->file.dfa, state, name, &cond, &perms); in change_profile_perms() 143 struct aa_profile *profile, *candidate = NULL; in __attach_match() local 145 list_for_each_entry_rcu(profile, head, base.list) { in __attach_match() [all …]
|
D | context.c | 50 aa_put_profile(cxt->profile); in aa_free_task_context() 66 aa_get_profile(new->profile); in aa_dup_task_context() 94 int aa_replace_current_profile(struct aa_profile *profile) in aa_replace_current_profile() argument 98 BUG_ON(!profile); in aa_replace_current_profile() 100 if (cxt->profile == profile) in aa_replace_current_profile() 108 if (unconfined(profile) || (cxt->profile->ns != profile->ns)) in aa_replace_current_profile() 118 aa_get_profile(profile); in aa_replace_current_profile() 119 aa_put_profile(cxt->profile); in aa_replace_current_profile() 120 cxt->profile = profile; in aa_replace_current_profile() 132 int aa_set_current_onexec(struct aa_profile *profile) in aa_set_current_onexec() argument [all …]
|
D | capability.c | 36 struct aa_profile *profile; member 65 static int audit_caps(struct aa_profile *profile, int cap, int error) in audit_caps() argument 79 if (likely((AUDIT_MODE(profile) != AUDIT_ALL) && in audit_caps() 80 !cap_raised(profile->caps.audit, cap))) in audit_caps() 83 } else if (KILL_MODE(profile) || in audit_caps() 84 cap_raised(profile->caps.kill, cap)) { in audit_caps() 86 } else if (cap_raised(profile->caps.quiet, cap) && in audit_caps() 87 AUDIT_MODE(profile) != AUDIT_NOQUIET && in audit_caps() 88 AUDIT_MODE(profile) != AUDIT_ALL) { in audit_caps() 95 if (profile == ent->profile && cap_raised(ent->caps, cap)) { in audit_caps() [all …]
|
D | policy.c | 426 struct aa_profile *profile) in __list_add_profile() argument 428 list_add_rcu(&profile->base.list, list); in __list_add_profile() 430 aa_get_profile(profile); in __list_add_profile() 445 static void __list_remove_profile(struct aa_profile *profile) in __list_remove_profile() argument 447 list_del_rcu(&profile->base.list); in __list_remove_profile() 448 aa_put_profile(profile); in __list_remove_profile() 459 static void __remove_profile(struct aa_profile *profile) in __remove_profile() argument 462 __profile_list_release(&profile->base.profiles); in __remove_profile() 464 __aa_update_replacedby(profile, profile->ns->unconfined); in __remove_profile() 465 __aa_fs_profile_rmdir(profile); in __remove_profile() [all …]
|
D | policy_unpack.c | 95 struct aa_profile *profile = __aa_current_profile(); in audit_iface() local 107 return aa_audit(AUDIT_APPARMOR_STATUS, profile, GFP_KERNEL, &sa, in audit_iface() 372 static bool unpack_trans_table(struct aa_ext *e, struct aa_profile *profile) in unpack_trans_table() argument 384 profile->file.trans.table = kzalloc(sizeof(char *) * size, in unpack_trans_table() 386 if (!profile->file.trans.table) in unpack_trans_table() 389 profile->file.trans.size = size; in unpack_trans_table() 398 profile->file.trans.table[i] = str; in unpack_trans_table() 430 aa_free_domain_entries(&profile->file.trans); in unpack_trans_table() 435 static bool unpack_rlimits(struct aa_ext *e, struct aa_profile *profile) in unpack_rlimits() argument 445 profile->rlimits.mask = tmp; in unpack_rlimits() [all …]
|
D | apparmorfs.c | 252 struct aa_profile *profile = aa_get_profile_rcu(&r->profile); in aa_fs_seq_profname_show() local 253 seq_printf(seq, "%s\n", profile->base.name); in aa_fs_seq_profname_show() 254 aa_put_profile(profile); in aa_fs_seq_profname_show() 275 struct aa_profile *profile = aa_get_profile_rcu(&r->profile); in aa_fs_seq_profmode_show() local 276 seq_printf(seq, "%s\n", aa_profile_mode_names[profile->mode]); in aa_fs_seq_profmode_show() 277 aa_put_profile(profile); in aa_fs_seq_profmode_show() 298 struct aa_profile *profile = aa_get_profile_rcu(&r->profile); in aa_fs_seq_profattach_show() local 299 if (profile->attach) in aa_fs_seq_profattach_show() 300 seq_printf(seq, "%s\n", profile->attach); in aa_fs_seq_profattach_show() 301 else if (profile->xmatch) in aa_fs_seq_profattach_show() [all …]
|
D | audit.c | 132 if (sa->aad->profile) { in audit_pre() 133 struct aa_profile *profile = sa->aad->profile; in audit_pre() local 134 if (profile->ns != root_ns) { in audit_pre() 136 audit_log_untrustedstring(ab, profile->ns->base.hname); in audit_pre() 139 audit_log_untrustedstring(ab, profile->base.hname); in audit_pre() 172 int aa_audit(int type, struct aa_profile *profile, gfp_t gfp, in aa_audit() argument 176 BUG_ON(!profile); in aa_audit() 180 if (AUDIT_MODE(profile) != AUDIT_ALL) in aa_audit() 183 } else if (COMPLAIN_MODE(profile)) in aa_audit() 188 if (AUDIT_MODE(profile) == AUDIT_QUIET || in aa_audit() [all …]
|
D | lsm.c | 119 struct aa_profile *profile; in apparmor_capget() local 124 profile = aa_cred_profile(cred); in apparmor_capget() 130 if (!unconfined(profile) && !COMPLAIN_MODE(profile)) { in apparmor_capget() 131 *effective = cap_intersect(*effective, profile->caps.allow); in apparmor_capget() 132 *permitted = cap_intersect(*permitted, profile->caps.allow); in apparmor_capget() 142 struct aa_profile *profile; in apparmor_capable() local 146 profile = aa_cred_profile(cred); in apparmor_capable() 147 if (!unconfined(profile)) in apparmor_capable() 148 error = aa_capable(profile, cap, audit); in apparmor_capable() 165 struct aa_profile *profile; in common_perm() local [all …]
|
D | file.c | 106 int aa_audit_file(struct aa_profile *profile, struct file_perms *perms, in aa_audit_file() argument 126 if (unlikely(AUDIT_MODE(profile) == AUDIT_ALL)) in aa_audit_file() 144 AUDIT_MODE(profile) != AUDIT_NOQUIET && in aa_audit_file() 145 AUDIT_MODE(profile) != AUDIT_ALL) in aa_audit_file() 149 return COMPLAIN_MODE(profile) ? 0 : sa.aad->error; in aa_audit_file() 153 return aa_audit(type, profile, gfp, &sa, file_audit_cb); in aa_audit_file() 278 int aa_path_perm(int op, struct aa_profile *profile, struct path *path, in aa_path_perm() argument 286 flags |= profile->path_flags | (S_ISDIR(cond->mode) ? PATH_IS_DIR : 0); in aa_path_perm() 298 aa_str_perms(profile->file.dfa, profile->file.start, name, cond, in aa_path_perm() 303 error = aa_audit_file(profile, &perms, GFP_KERNEL, op, request, name, in aa_path_perm() [all …]
|
D | procattr.c | 36 int aa_getprocattr(struct aa_profile *profile, char **string) in aa_getprocattr() argument 40 const char *mode_str = aa_profile_mode_names[profile->mode]; in aa_getprocattr() 42 struct aa_namespace *ns = profile->ns; in aa_getprocattr() 57 if (!unconfined(profile)) in aa_getprocattr() 60 name_len = strlen(profile->base.hname); in aa_getprocattr() 71 if (unconfined(profile)) in aa_getprocattr() 73 sprintf(s, "%s\n", profile->base.hname); in aa_getprocattr() 75 sprintf(s, "%s (%s)\n", profile->base.hname, mode_str); in aa_getprocattr()
|
D | crypto.c | 32 int aa_calc_profile_hash(struct aa_profile *profile, u32 version, void *start, in aa_calc_profile_hash() argument 45 profile->hash = kzalloc(apparmor_hash_size, GFP_KERNEL); in aa_calc_profile_hash() 46 if (!profile->hash) in aa_calc_profile_hash() 61 error = crypto_shash_final(&desc.shash, profile->hash); in aa_calc_profile_hash() 68 kfree(profile->hash); in aa_calc_profile_hash() 69 profile->hash = NULL; in aa_calc_profile_hash()
|
D | resource.c | 50 static int audit_resource(struct aa_profile *profile, unsigned int resource, in audit_resource() argument 62 return aa_audit(AUDIT_APPARMOR_AUTO, profile, GFP_KERNEL, &sa, in audit_resource() 91 int aa_task_setrlimit(struct aa_profile *profile, struct task_struct *task, in aa_task_setrlimit() argument 106 if (profile != task_profile || in aa_task_setrlimit() 107 (profile->rlimits.mask & (1 << resource) && in aa_task_setrlimit() 108 new_rlim->rlim_max > profile->rlimits.limits[resource].rlim_max)) in aa_task_setrlimit() 113 return audit_resource(profile, resource, new_rlim->rlim_max, error); in aa_task_setrlimit()
|
D | ipc.c | 40 static int aa_audit_ptrace(struct aa_profile *profile, in aa_audit_ptrace() argument 51 return aa_audit(AUDIT_APPARMOR_AUTO, profile, GFP_ATOMIC, &sa, in aa_audit_ptrace()
|
/linux-4.1.27/security/apparmor/include/ |
D | context.h | 72 struct aa_profile *profile; member 82 int aa_replace_current_profile(struct aa_profile *profile); 83 int aa_set_current_onexec(struct aa_profile *profile); 84 int aa_set_current_hat(struct aa_profile *profile, u64 token); 100 BUG_ON(!cxt || !cxt->profile); in aa_cred_profile() 101 return cxt->profile; in aa_cred_profile() 152 struct aa_profile *profile; in aa_current_profile() local 153 BUG_ON(!cxt || !cxt->profile); in aa_current_profile() 155 if (PROFILE_INVALID(cxt->profile)) { in aa_current_profile() 156 profile = aa_get_newest_profile(cxt->profile); in aa_current_profile() [all …]
|
D | policy.h | 156 struct aa_profile __rcu *profile; member 230 void aa_add_profile(struct aa_policy *common, struct aa_profile *profile); 245 void aa_free_profile(struct aa_profile *profile); 330 return aa_get_profile_rcu(&p->replacedby->profile); in aa_get_newest_profile() 364 tmp = rcu_dereference_protected(orig->replacedby->profile, in __aa_update_replacedby() 366 rcu_assign_pointer(orig->replacedby->profile, aa_get_profile(new)); in __aa_update_replacedby() 398 static inline int AUDIT_MODE(struct aa_profile *profile) in AUDIT_MODE() argument 403 return profile->audit; in AUDIT_MODE()
|
D | crypto.h | 21 int aa_calc_profile_hash(struct aa_profile *profile, u32 version, void *start, 24 static inline int aa_calc_profile_hash(struct aa_profile *profile, u32 version, in aa_calc_profile_hash() argument
|
D | file.h | 147 int aa_audit_file(struct aa_profile *profile, struct file_perms *perms, 174 int aa_path_perm(int op, struct aa_profile *profile, struct path *path, 177 int aa_path_link(struct aa_profile *profile, struct dentry *old_dentry, 180 int aa_file_perm(int op, struct aa_profile *profile, struct file *file,
|
D | audit.h | 109 void *profile; member 136 int aa_audit(int type, struct aa_profile *profile, gfp_t gfp,
|
D | apparmorfs.h | 96 void __aa_fs_profile_rmdir(struct aa_profile *profile); 99 int __aa_fs_profile_mkdir(struct aa_profile *profile, struct dentry *parent);
|
D | procattr.h | 21 int aa_getprocattr(struct aa_profile *profile, char **string);
|
D | capability.h | 41 int aa_capable(struct aa_profile *profile, int cap, int audit);
|
D | resource.h | 40 int aa_task_setrlimit(struct aa_profile *profile, struct task_struct *,
|
/linux-4.1.27/Documentation/ABI/testing/ |
D | sysfs-driver-hid-roccat-savu | 5 press of a button. A profile is split into general settings and 7 When written, this file lets one write the respective profile 10 Which profile to write is determined by the profile number 13 which profile to read. 20 profile will be read next. The data has to be 3 bytes long. 28 press of a button. A profile is split into general settings and 29 button settings. profile holds informations like resolution, sensitivity 31 When written, this file lets one write the respective profile 34 Which profile to write is determined by the profile number 51 keystrokes for a specific button for a specific profile. [all …]
|
D | sysfs-driver-hid-roccat-kovaplus | 6 profile. 7 When written, the mouse activates this profile immediately. 8 The profile that's active when powered down is the same that's 24 press of a button. A profile is split in settings and buttons. 26 When written, this file lets one write the respective profile 29 Which profile to write is determined by the profile number 32 which profile to read. 39 press of a button. A profile is split in settings and buttons. 42 When written, this file lets one write the respective profile 45 Which profile to write is determined by the profile number [all …]
|
D | sysfs-driver-hid-roccat-pyra | 13 press of a button. A profile is split in settings and buttons. 16 When written, this file lets one write the respective profile 19 Which profile to write is determined by the profile number 22 which profile to read. 29 press of a button. A profile is split in settings and buttons. 31 When written, this file lets one write the respective profile 34 Which profile to write is determined by the profile number 37 which profile to read.
|
D | sysfs-driver-hid-roccat-ryos | 5 profile will be read next. The data has to be 3 bytes long. 9 …config num>.<interface num>/<hid-bus>:<vendor-id>:<product-id>.<num>/ryos/roccatryos<minor>/profile 13 press of a button. profile holds index of actual profile. 14 This value is persistent, so its value determines the profile 16 When written, the device activates the set profile immediately. 25 a specific profile. Profile index is included in written data. 28 which profile to read. 35 function keys for a specific profile. Profile index is included 38 which profile to read. 45 keys for a specific profile. Profile index is included in [all …]
|
D | sysfs-driver-hid-roccat-koneplus | 6 profile. This value is persistent, so its equivalent to the 7 profile that's active when the mouse is powered on next time. 8 When written, this file sets the number of the startup profile 9 and the mouse activates this profile immediately. 26 button for a specific profile. Button and profile numbers are 35 press of a button. A profile is split in settings and buttons. 37 When written, this file lets one write the respective profile 40 Which profile to write is determined by the profile number 43 which profile to read. 50 press of a button. A profile is split in settings and buttons. [all …]
|
D | sysfs-driver-hid-roccat-isku | 6 profile. This value is persistent, so its equivalent to the 7 profile that's active when the device is powered on next time. 8 When written, this file sets the number of the startup profile 9 and the device activates this profile immediately. 28 which profile to read. 35 capslock key for a specific profile. Profile number is included 38 which profile to read. 45 easyzone keys for a specific profile. Profile number is included 48 which profile to read. 55 function keys for a specific profile. Profile number is included [all …]
|
D | sysfs-driver-hid-roccat-konepure | 5 press of a button. actual_profile holds number of actual profile. 6 This value is persistent, so its value determines the profile 8 When written, the mouse activates the set profile immediately. 17 profile will be read next. The data has to be 3 bytes long. 35 button for a specific profile. Button and profile numbers are 44 press of a button. A profile is split in settings and buttons. 46 When written, this file lets one write the respective profile 49 Which profile to write is determined by the profile number 52 which profile to read. 59 press of a button. A profile is split in settings and buttons. [all …]
|
D | sysfs-driver-hid-roccat-kone | 24 Description: When read, this file returns the number of the actual profile. 39 …g num>.<interface num>/<hid-bus>:<vendor-id>:<product-id>.<num>/kone/roccatkone<minor>/profile[1-5] 43 press of a button. A profile holds information like button 46 When read, these files return the respective profile. The 48 When written, this file lets one write the respective profile 50 The mouse will reject invalid data, whereas the profile number 51 stored in the profile doesn't need to fit the number of the 70 When read, this attribute returns the number of the profile 72 When written, this file sets the number of the startup profile 73 and the mouse activates this profile immediately.
|
D | sysfs-driver-hid-roccat-arvo | 6 profile which is also the profile that's active on device startup. 7 When written this attribute activates the selected profile 17 button for a specific profile. Button and profile numbers are
|
D | sysfs-profiling | 6 of the boot-time profile= option. 12 as you would by issuing profile=2 on the boot
|
D | sysfs-firmware-acpi | 27 processors, PCI root bridges etc. A hotplug profile for a given 34 hotplug profile:
|
D | sysfs-class-devfreq | 56 with its profile.
|
/linux-4.1.27/Documentation/ABI/obsolete/ |
D | sysfs-driver-hid-roccat-koneplus | 6 profile. This value is persistent, so its equivalent to the 7 profile that's active when the mouse is powered on next time. 8 When written, this file sets the number of the startup profile 9 and the mouse activates this profile immediately. 25 …e num>/<hid-bus>:<vendor-id>:<product-id>.<num>/koneplus/roccatkoneplus<minor>/profile[1-5]_buttons 29 press of a button. A profile is split in settings and buttons. 31 When read, these files return the respective profile buttons. 34 Write control to select profile and read profile_buttons instead. 37 … num>/<hid-bus>:<vendor-id>:<product-id>.<num>/koneplus/roccatkoneplus<minor>/profile[1-5]_settings 41 press of a button. A profile is split in settings and buttons. [all …]
|
D | sysfs-driver-hid-roccat-pyra | 22 Description: When read, this file returns the number of the actual profile in 40 …interface num>/<hid-bus>:<vendor-id>:<product-id>.<num>/pyra/roccatpyra<minor>/profile[1-5]_buttons 44 press of a button. A profile is split in settings and buttons. 46 When read, these files return the respective profile buttons. 49 Write control to select profile and read profile_buttons instead. 52 …nterface num>/<hid-bus>:<vendor-id>:<product-id>.<num>/pyra/roccatpyra<minor>/profile[1-5]_settings 56 press of a button. A profile is split in settings and buttons. 59 When read, these files return the respective profile settings. 62 Write control to select profile and read profile_settings instead. 69 When read, this attribute returns the number of the profile
|
D | sysfs-driver-hid-roccat-kovaplus | 43 …e num>/<hid-bus>:<vendor-id>:<product-id>.<num>/kovaplus/roccatkovaplus<minor>/profile[1-5]_buttons 47 press of a button. A profile is split in settings and buttons. 49 When read, these files return the respective profile buttons. 52 Write control to select profile and read profile_buttons instead. 55 … num>/<hid-bus>:<vendor-id>:<product-id>.<num>/kovaplus/roccatkovaplus<minor>/profile[1-5]_settings 59 press of a button. A profile is split in settings and buttons. 62 When read, these files return the respective profile settings. 65 Write control to select profile and read profile_settings instead.
|
/linux-4.1.27/drivers/devfreq/ |
D | devfreq.c | 80 for (lev = 0; lev < devfreq->profile->max_state; lev++) in devfreq_get_freq_level() 81 if (freq == devfreq->profile->freq_table[lev]) in devfreq_get_freq_level() 116 devfreq->profile->max_state) + lev]++; in devfreq_update_status() 196 err = devfreq->profile->target(devfreq->dev.parent, &freq, flags); in update_devfreq() 200 if (devfreq->profile->freq_table) in update_devfreq() 227 msecs_to_jiffies(devfreq->profile->polling_ms)); in devfreq_monitor() 243 if (devfreq->profile->polling_ms) in devfreq_monitor_start() 245 msecs_to_jiffies(devfreq->profile->polling_ms)); in devfreq_monitor_start() 307 devfreq->profile->polling_ms) in devfreq_monitor_resume() 309 msecs_to_jiffies(devfreq->profile->polling_ms)); in devfreq_monitor_resume() [all …]
|
D | governor_simpleondemand.c | 25 int err = df->profile->get_dev_status(df->dev.parent, &stat); in devfreq_simple_ondemand_func()
|
D | tegra-devfreq.c | 551 err = devfreq->profile->get_dev_status(devfreq->dev.parent, &stat); in tegra_governor_get_target()
|
/linux-4.1.27/drivers/s390/block/ |
D | dasd_ioctl.c | 306 dasd_profile_reset(&block->profile); in dasd_ioctl_reset_profile() 322 spin_lock_bh(&block->profile.lock); in dasd_ioctl_read_profile() 323 if (block->profile.data) { in dasd_ioctl_read_profile() 324 data->dasd_io_reqs = block->profile.data->dasd_io_reqs; in dasd_ioctl_read_profile() 325 data->dasd_io_sects = block->profile.data->dasd_io_sects; in dasd_ioctl_read_profile() 326 memcpy(data->dasd_io_secs, block->profile.data->dasd_io_secs, in dasd_ioctl_read_profile() 328 memcpy(data->dasd_io_times, block->profile.data->dasd_io_times, in dasd_ioctl_read_profile() 330 memcpy(data->dasd_io_timps, block->profile.data->dasd_io_timps, in dasd_ioctl_read_profile() 332 memcpy(data->dasd_io_time1, block->profile.data->dasd_io_time1, in dasd_ioctl_read_profile() 334 memcpy(data->dasd_io_time2, block->profile.data->dasd_io_time2, in dasd_ioctl_read_profile() [all …]
|
D | dasd.c | 127 spin_lock_init(&device->profile.lock); in dasd_alloc_device() 165 spin_lock_init(&block->profile.lock); in dasd_alloc_block() 260 dasd_profile_init(&block->profile, block->debugfs_dentry); in dasd_state_known_to_basic() 262 dasd_profile_on(&device->block->profile); in dasd_state_known_to_basic() 267 dasd_profile_init(&device->profile, device->debugfs_dentry); in dasd_state_known_to_basic() 295 dasd_profile_exit(&device->block->profile); in dasd_state_basic_to_known() 304 dasd_profile_exit(&device->profile); in dasd_state_basic_to_known() 698 if (dasd_global_profile_level || block->profile.data) in dasd_profile_start() 711 spin_lock(&block->profile.lock); in dasd_profile_start() 712 if (block->profile.data) { in dasd_profile_start() [all …]
|
D | dasd_proc.c | 158 rc = dasd_profile_on(&device->block->profile); in dasd_stats_all_block_on() 176 dasd_profile_off(&device->block->profile); in dasd_stats_all_block_off() 191 dasd_profile_reset(&device->block->profile); in dasd_stats_all_block_reset()
|
D | dasd_int.h | 482 struct dasd_profile profile; member 506 struct dasd_profile profile; member
|
/linux-4.1.27/drivers/isdn/hardware/eicon/ |
D | capifunc.c | 589 a->profile.Number = card->Id; in diva_add_card() 590 a->profile.Channels = card->d.channels; in diva_add_card() 592 a->profile.Global_Options = 0x71; in diva_add_card() 594 a->profile.Global_Options |= 0x6; in diva_add_card() 596 a->profile.Global_Options |= 0x8; in diva_add_card() 598 a->profile.Global_Options |= 0x80; /* Line Interconnect */ in diva_add_card() 600 a->profile.Global_Options |= 0x100; in diva_add_card() 602 a->profile.B1_Protocols = 0xdf; in diva_add_card() 603 a->profile.B2_Protocols = 0x1fdb; in diva_add_card() 604 a->profile.B3_Protocols = 0xb7; in diva_add_card() [all …]
|
D | message.c | 1679 if (a->profile.Global_Options & ON_BOARD_CODEC) { in listen_req() 5007 a->profile.Global_Options &= 0x000000ffL; in sig_ind() 5008 a->profile.B1_Protocols &= 0x000003ffL; in sig_ind() 5009 a->profile.B2_Protocols &= 0x00001fdfL; in sig_ind() 5010 a->profile.B3_Protocols &= 0x000000b7L; in sig_ind() 5012 a->profile.Global_Options &= GET_DWORD(&esc_profile[6]) | in sig_ind() 5014 a->profile.B1_Protocols &= GET_DWORD(&esc_profile[10]); in sig_ind() 5015 a->profile.B2_Protocols &= GET_DWORD(&esc_profile[14]); in sig_ind() 5016 a->profile.B3_Protocols &= GET_DWORD(&esc_profile[18]); in sig_ind() 5023 a->profile.Global_Options |= GL_ECHO_CANCELLER_SUPPORTED; in sig_ind() [all …]
|
D | divacapi.h | 373 API_PROFILE profile; member
|
/linux-4.1.27/include/linux/ |
D | devfreq.h | 157 struct devfreq_dev_profile *profile; member 180 struct devfreq_dev_profile *profile, 185 struct devfreq_dev_profile *profile, 229 struct devfreq_dev_profile *profile, in devfreq_add_device() argument 242 struct devfreq_dev_profile *profile, in devm_devfreq_add_device() argument
|
D | isdn.h | 290 u_char profile[ISDN_MODEM_NUMREG]; /* Modem-Regs. Profile 0 */ member
|
/linux-4.1.27/security/tomoyo/ |
D | common.c | 485 (struct tomoyo_policy_namespace *ns, const unsigned int profile) in tomoyo_assign_profile() argument 489 if (profile >= TOMOYO_MAX_PROFILES) in tomoyo_assign_profile() 491 ptr = ns->profile_ptr[profile]; in tomoyo_assign_profile() 497 ptr = ns->profile_ptr[profile]; in tomoyo_assign_profile() 510 ns->profile_ptr[profile] = ptr; in tomoyo_assign_profile() 528 const u8 profile) in tomoyo_profile() argument 531 struct tomoyo_profile *ptr = ns->profile_ptr[profile]; in tomoyo_profile() 585 struct tomoyo_profile *profile) in tomoyo_set_mode() argument 591 config = profile->default_config; in tomoyo_set_mode() 608 config = profile->config[i]; in tomoyo_set_mode() [all …]
|
D | util.c | 975 int tomoyo_get_mode(const struct tomoyo_policy_namespace *ns, const u8 profile, in tomoyo_get_mode() argument 983 p = tomoyo_profile(ns, profile); in tomoyo_get_mode() 1005 u8 profile; in tomoyo_init_request_info() local 1010 profile = domain->profile; in tomoyo_init_request_info() 1011 r->profile = profile; in tomoyo_init_request_info() 1013 r->mode = tomoyo_get_mode(domain->ns, profile, index); in tomoyo_init_request_info() 1076 if (count < tomoyo_profile(domain->ns, domain->profile)-> in tomoyo_domain_quota_is_ok()
|
D | domain.c | 519 !entry->ns->profile_ptr[entry->profile]) in tomoyo_assign_domain() 546 e.profile = domain->profile; in tomoyo_assign_domain() 573 entry->profile); in tomoyo_assign_domain() 603 ee->r.profile = r->domain->profile; in tomoyo_environ() 604 ee->r.mode = tomoyo_get_mode(r->domain->ns, ee->r.profile, in tomoyo_environ()
|
D | audit.c | 166 stamp.day, stamp.hour, stamp.min, stamp.sec, r->profile, in tomoyo_print_header() 322 const u8 profile, const u8 index, in tomoyo_get_audit() argument 332 p = tomoyo_profile(ns, profile); in tomoyo_get_audit() 364 if (!tomoyo_get_audit(r->domain->ns, r->profile, r->type, in tomoyo_write_log2()
|
D | Makefile | 10 …cmd_policy = ($(call do_policy,profile); $(call do_policy,exception_policy); $(call do_policy,dom…
|
D | common.h | 494 u8 profile; member 683 u8 profile; /* Profile number to use. */ member 966 int tomoyo_get_mode(const struct tomoyo_policy_namespace *ns, const u8 profile, 1028 const u8 profile);
|
D | file.c | 564 r->mode = tomoyo_get_mode(r->domain->ns, r->profile, r->type); in tomoyo_path_permission() 596 r->mode = tomoyo_get_mode(r->domain->ns, r->profile, r->type); in tomoyo_execute_permission()
|
/linux-4.1.27/drivers/hid/ |
D | hid-roccat-isku.c | 77 unsigned long profile; in isku_sysfs_set_actual_profile() local 85 retval = kstrtoul(buf, 10, &profile); in isku_sysfs_set_actual_profile() 89 if (profile > 4) in isku_sysfs_set_actual_profile() 94 retval = isku_set_actual_profile(usb_dev, profile); in isku_sysfs_set_actual_profile() 100 isku_profile_activated(isku, profile); in isku_sysfs_set_actual_profile() 103 roccat_report.data1 = profile + 1; in isku_sysfs_set_actual_profile() 105 roccat_report.profile = profile + 1; in isku_sysfs_set_actual_profile() 395 roccat_report.profile = isku->actual_profile + 1; in isku_report_to_chrdev()
|
D | hid-roccat-koneplus.c | 262 unsigned long profile; in koneplus_sysfs_set_actual_profile() local 270 retval = kstrtoul(buf, 10, &profile); in koneplus_sysfs_set_actual_profile() 274 if (profile > 4) in koneplus_sysfs_set_actual_profile() 279 retval = koneplus_set_actual_profile(usb_dev, profile); in koneplus_sysfs_set_actual_profile() 285 koneplus_profile_activated(koneplus, profile); in koneplus_sysfs_set_actual_profile() 288 roccat_report.data1 = profile + 1; in koneplus_sysfs_set_actual_profile() 290 roccat_report.profile = profile + 1; in koneplus_sysfs_set_actual_profile() 509 roccat_report.profile = koneplus->actual_profile + 1; in koneplus_report_to_chrdev()
|
D | hid-roccat-arvo.c | 163 unsigned long profile; in arvo_sysfs_set_actual_profile() local 166 retval = kstrtoul(buf, 10, &profile); in arvo_sysfs_set_actual_profile() 170 if (profile < 1 || profile > 5) in arvo_sysfs_set_actual_profile() 174 temp_buf.actual_profile = profile; in arvo_sysfs_set_actual_profile() 180 arvo->actual_profile = profile; in arvo_sysfs_set_actual_profile() 392 roccat_report.profile = arvo->actual_profile; in arvo_report_to_chrdev()
|
D | hid-roccat-kovaplus.c | 290 unsigned long profile; in kovaplus_sysfs_set_actual_profile() local 298 retval = kstrtoul(buf, 10, &profile); in kovaplus_sysfs_set_actual_profile() 302 if (profile >= 5) in kovaplus_sysfs_set_actual_profile() 306 retval = kovaplus_set_actual_profile(usb_dev, profile); in kovaplus_sysfs_set_actual_profile() 312 kovaplus_profile_activated(kovaplus, profile); in kovaplus_sysfs_set_actual_profile() 315 roccat_report.profile = profile + 1; in kovaplus_sysfs_set_actual_profile() 317 roccat_report.data1 = profile + 1; in kovaplus_sysfs_set_actual_profile() 582 roccat_report.profile = kovaplus->actual_profile + 1; in kovaplus_report_to_chrdev()
|
D | hid-roccat-kone.c | 208 struct kone_profile const *profile, int number) in kone_set_profile() argument 218 kone_command_profile, number, (void *)profile, in kone_set_profile() 360 struct kone_profile *profile; in kone_sysfs_write_profilex() local 367 profile = &kone->profiles[*(uint *)(attr->private)]; in kone_sysfs_write_profilex() 370 difference = memcmp(buf, profile, sizeof(struct kone_profile)); in kone_sysfs_write_profilex() 376 memcpy(profile, buf, sizeof(struct kone_profile)); in kone_sysfs_write_profilex()
|
D | hid-roccat-arvo.h | 66 uint8_t profile; member
|
D | hid-roccat-isku.h | 88 uint8_t profile; member
|
D | hid-roccat-koneplus.h | 113 uint8_t profile; member
|
D | hid-roccat-kovaplus.h | 115 uint8_t profile; member
|
D | hid-roccat-kone.h | 106 uint8_t profile; /* range 1-5 */ member
|
D | hid-roccat-savu.c | 31 ROCCAT_COMMON2_BIN_ATTRIBUTE_RW(profile, 0x5, 0x03);
|
D | hid-roccat-ryos.c | 37 ROCCAT_COMMON2_BIN_ATTRIBUTE_RW(profile, 0x05, 0x03);
|
/linux-4.1.27/arch/mn10300/kernel/ |
D | Makefile | 25 obj-$(CONFIG_PROFILE) += profile.o profile-low.o
|
/linux-4.1.27/drivers/staging/panel/ |
D | Kconfig | 26 int "Default panel profile (0-5, 0=custom)" 93 This is the number of visible character lines on the LCD in custom profile. 102 This is the number of characters per line on the LCD in custom profile. 118 This option lets you configure the value used by your LCD in 'custom' profile. 177 Default for the 'E' pin in custom profile is '14' (AUTOFEED). 192 Default for the 'RS' pin in custom profile is '17' (SELECT IN). 207 Default for the 'RW' pin in custom profile is '16' (INIT). 222 Default for the 'SCL' pin in custom profile is '1' (STROBE). 237 Default for the 'SDA' pin in custom profile is '2' (D0). 252 Default for the 'BL' pin in custom profile is '0' (uncontrolled).
|
D | panel.c | 489 static int profile = DEFAULT_PROFILE; variable 490 module_param(profile, int, 0000); 491 MODULE_PARM_DESC(profile, 2283 switch (profile) { in panel_init_module()
|
/linux-4.1.27/drivers/net/wireless/brcm80211/brcmfmac/ |
D | cfg80211.c | 1280 struct brcmf_cfg80211_profile *profile = &ifp->vif->profile; in brcmf_cfg80211_join_ibss() local 1364 profile->ssid.SSID_len = min_t(u32, params->ssid_len, 32); in brcmf_cfg80211_join_ibss() 1365 memcpy(profile->ssid.SSID, params->ssid, profile->ssid.SSID_len); in brcmf_cfg80211_join_ibss() 1366 memcpy(join_params.ssid_le.SSID, params->ssid, profile->ssid.SSID_len); in brcmf_cfg80211_join_ibss() 1367 join_params.ssid_le.SSID_len = cpu_to_le32(profile->ssid.SSID_len); in brcmf_cfg80211_join_ibss() 1375 memcpy(profile->bssid, params->bssid, ETH_ALEN); in brcmf_cfg80211_join_ibss() 1378 eth_zero_addr(profile->bssid); in brcmf_cfg80211_join_ibss() 1445 struct brcmf_cfg80211_profile *profile = ndev_to_prof(ndev); in brcmf_set_wpa_version() local 1462 sec = &profile->sec; in brcmf_set_wpa_version() 1470 struct brcmf_cfg80211_profile *profile = ndev_to_prof(ndev); in brcmf_set_auth_type() local [all …]
|
D | cfg80211.h | 195 struct brcmf_cfg80211_profile profile; member 456 return &ifp->vif->profile; in ndev_to_prof()
|
/linux-4.1.27/tools/perf/Documentation/ |
D | perf-kvm.txt | 23 a performance counter profile of guest os in realtime 26 'perf kvm record <command>' to record the performance counter profile 39 'perf kvm report' to display the performance counter profile information 76 Collect host side performance profile. 78 Collect guest side performance profile.
|
D | perf-record.txt | 6 perf-record - Run a command and record its profile into perf.data 16 This command runs a command and gathers a performance counter profile 53 If you want to profile read-write accesses in 0x1000, just set 55 If you want to profile write accesses in [0x1000~1008), just set
|
D | perf-mem.txt | 19 right set of options to display a memory access profile. By default, loads
|
D | perf-top.txt | 15 This command generates and displays a performance counter profile in real time. 227 Stop annotation, return to full profile display.
|
D | perf-diff.txt | 6 perf-diff - Read perf.data files and display the differential profile 20 The differential profile is displayed only for events matching both
|
D | perf-report.txt | 6 perf-report - Read perf.data (created by perf record) and display the profile 15 This command displays the performance counter profile information recorded
|
/linux-4.1.27/drivers/isdn/hysdn/ |
D | hycapi.c | 720 ctrl->profile.ncontroller = card->myid; in hycapi_fill_profile() 721 ctrl->profile.nbchannel = card->bchans; in hycapi_fill_profile() 722 ctrl->profile.goptions = GLOBAL_OPTION_INTERNAL_CONTROLLER | in hycapi_fill_profile() 724 ctrl->profile.support1 = B1_PROT_64KBIT_HDLC | in hycapi_fill_profile() 727 ctrl->profile.support2 = B2_PROT_ISO7776 | in hycapi_fill_profile() 730 ctrl->profile.support3 = B3_PROT_TRANSPARENT | in hycapi_fill_profile()
|
/linux-4.1.27/drivers/spi/ |
D | spi-bcm63xx-hsspi.c | 127 unsigned profile = spi->chip_select; in bcm63xx_hsspi_set_clk() local 132 bs->regs + HSSPI_PROFILE_CLK_CTRL_REG(profile)); in bcm63xx_hsspi_set_clk() 134 reg = __raw_readl(bs->regs + HSSPI_PROFILE_SIGNAL_CTRL_REG(profile)); in bcm63xx_hsspi_set_clk() 139 __raw_writel(reg, bs->regs + HSSPI_PROFILE_SIGNAL_CTRL_REG(profile)); in bcm63xx_hsspi_set_clk()
|
/linux-4.1.27/arch/cris/kernel/ |
D | Makefile | 14 obj-$(CONFIG_SYSTEM_PROFILER) += profile.o
|
/linux-4.1.27/drivers/isdn/i4l/ |
D | isdn_tty.c | 1634 m->profile[0] = 0; in isdn_tty_reset_profile() 1635 m->profile[1] = 0; in isdn_tty_reset_profile() 1636 m->profile[2] = 43; in isdn_tty_reset_profile() 1637 m->profile[3] = 13; in isdn_tty_reset_profile() 1638 m->profile[4] = 10; in isdn_tty_reset_profile() 1639 m->profile[5] = 8; in isdn_tty_reset_profile() 1640 m->profile[6] = 3; in isdn_tty_reset_profile() 1641 m->profile[7] = 60; in isdn_tty_reset_profile() 1642 m->profile[8] = 2; in isdn_tty_reset_profile() 1643 m->profile[9] = 6; in isdn_tty_reset_profile() [all …]
|
D | isdn_common.c | 1549 if (copy_to_user(p, dev->mdm.info[i].emu.profile, in isdn_ioctl() 1576 if (copy_from_user(dev->mdm.info[i].emu.profile, p, in isdn_ioctl()
|
/linux-4.1.27/arch/tile/include/asm/ |
D | stack.h | 30 int profile; /* profiling, so stop on async intrpt */ member
|
/linux-4.1.27/drivers/isdn/hardware/avm/ |
D | b1.c | 350 else nconn = ctrl->profile.nbchannel * -want; in b1_register_appl() 351 if (nconn == 0) nconn = ctrl->profile.nbchannel; in b1_register_appl() 433 memcpy(&ctrl->profile, cinfo->version[VER_PROFILE], sizeof(capi_profile)); in b1_parse_version() 444 profp = &ctrl->profile; in b1_parse_version() 674 flag = ((u8 *)(ctrl->profile.manu))[3]; in b1ctl_proc_show() 688 flag = ((u8 *)(ctrl->profile.manu))[5]; in b1ctl_proc_show()
|
D | b1dma.c | 782 else nconn = ctrl->profile.nbchannel * -want; in b1dma_register_appl() 783 if (nconn == 0) nconn = ctrl->profile.nbchannel; in b1dma_register_appl() 896 flag = ((u8 *)(ctrl->profile.manu))[3]; in b1dmactl_proc_show() 910 flag = ((u8 *)(ctrl->profile.manu))[5]; in b1dmactl_proc_show()
|
D | c4.c | 962 else nconn = ctrl->profile.nbchannel * 4 * -want; in c4_register_appl() 963 if (nconn == 0) nconn = ctrl->profile.nbchannel * 4; in c4_register_appl() 1101 flag = ((u8 *)(ctrl->profile.manu))[3]; in c4_proc_show() 1115 flag = ((u8 *)(ctrl->profile.manu))[5]; in c4_proc_show()
|
/linux-4.1.27/include/uapi/linux/can/ |
D | gw.h | 122 __u8 profile; member
|
/linux-4.1.27/drivers/scsi/lpfc/ |
D | lpfc_sli.h | 150 uint8_t profile; /* profile associated with ring */ member 243 uint32_t profile; /* Selection profile 0=all, 7=logentry */ member
|
D | lpfc_mbox.c | 1138 hbqmb->profile = hbq_desc->profile; /* Selection profile: in lpfc_config_hbq() 1160 if (hbq_desc->profile == 2) in lpfc_config_hbq() 1162 else if (hbq_desc->profile == 3) in lpfc_config_hbq() 1164 else if (hbq_desc->profile == 5) in lpfc_config_hbq() 1221 if (pring->prt[0].profile) { in lpfc_config_ring() 1222 mb->un.varCfgRing.profile = pring->prt[0].profile; in lpfc_config_ring()
|
D | lpfc_hw.h | 1965 uint32_t profile:8; member 1971 uint32_t profile:8; 2069 uint32_t profile:8; member 2075 uint32_t profile:8; 2673 uint32_t profile :8; /* Selection Profile */ member 2677 uint32_t profile :8; /* Selection Profile */
|
D | lpfc_sli.c | 1829 .profile = 0, 1841 .profile = 0, 2439 if (pring->prt[0].profile) { in lpfc_complete_unsol_iocb() 8936 pring->prt[0].profile = 0; /* Mask 0 */ in lpfc_extra_ring_setup() 9196 pring->prt[0].profile = 0; /* Mask 0 */ in lpfc_sli_setup() 9201 pring->prt[1].profile = 0; /* Mask 1 */ in lpfc_sli_setup() 9206 pring->prt[2].profile = 0; /* Mask 2 */ in lpfc_sli_setup() 9213 pring->prt[3].profile = 0; /* Mask 3 */ in lpfc_sli_setup()
|
D | lpfc_debugfs.c | 307 hip->hbq_index, hip->profile, hip->rn, in lpfc_debugfs_hbqinfo_data()
|
/linux-4.1.27/drivers/media/platform/s5p-mfc/ |
D | s5p_mfc_common.h | 347 enum v4l2_mpeg_video_h264_profile profile; member 397 enum v4l2_mpeg_video_mpeg4_profile profile; member 428 u8 profile; member
|
D | s5p_mfc_enc.c | 1461 p->codec.h264.profile = in s5p_mfc_enc_s_ctrl() 1465 p->codec.h264.profile = in s5p_mfc_enc_s_ctrl() 1469 p->codec.h264.profile = in s5p_mfc_enc_s_ctrl() 1474 p->codec.h264.profile = in s5p_mfc_enc_s_ctrl() 1588 p->codec.mpeg4.profile = in s5p_mfc_enc_s_ctrl() 1592 p->codec.mpeg4.profile = in s5p_mfc_enc_s_ctrl() 1636 p->codec.vp8.profile = ctrl->val; in s5p_mfc_enc_s_ctrl()
|
D | s5p_mfc_opr_v6.c | 822 reg |= p_h264->profile & 0x3F; in s5p_mfc_set_enc_params_h264() 1102 reg |= p_mpeg4->profile & 0x3F; in s5p_mfc_set_enc_params_mpeg4() 1251 reg = p_vp8->profile & 0x3; in s5p_mfc_set_enc_params_vp8()
|
D | s5p_mfc_opr_v5.c | 782 reg |= p_264->profile; in s5p_mfc_set_enc_params_h264() 940 reg |= p_mpeg4->profile; in s5p_mfc_set_enc_params_mpeg4()
|
/linux-4.1.27/include/uapi/linux/ |
D | capi.h | 114 capi_profile profile; member
|
/linux-4.1.27/sound/pci/hda/ |
D | hda_eld.c | 229 a->profile = GRAB_BITS(buf, 2, 0, 3); in hdmi_update_short_audio_desc() 475 if (a->profile) in hdmi_print_sad_info() 476 snd_iprintf(buffer, "sad%d_profile\t\t%d\n", i, a->profile); in hdmi_print_sad_info() 583 e->sad[n].profile = val; in snd_hdmi_write_eld_info()
|
D | hda_local.h | 728 int profile; /* for WMAPRO */ member
|
/linux-4.1.27/drivers/net/wireless/iwlwifi/mvm/ |
D | scan.c | 439 struct iwl_scan_offload_profile *profile; in iwl_mvm_config_sched_scan_profiles() local 484 profile = &profile_cfg->profiles[i]; in iwl_mvm_config_sched_scan_profiles() 485 profile->ssid_index = i; in iwl_mvm_config_sched_scan_profiles() 487 profile->unicast_cipher = 0xff; in iwl_mvm_config_sched_scan_profiles() 488 profile->auth_alg = 0xff; in iwl_mvm_config_sched_scan_profiles() 489 profile->network_type = IWL_NETWORK_TYPE_ANY; in iwl_mvm_config_sched_scan_profiles() 490 profile->band_selection = IWL_SCAN_OFFLOAD_SELECT_ANY; in iwl_mvm_config_sched_scan_profiles() 491 profile->client_bitmap = SCAN_CLIENT_SCHED_SCAN; in iwl_mvm_config_sched_scan_profiles()
|
/linux-4.1.27/include/linux/isdn/ |
D | capilli.h | 58 capi_profile profile; /* CAPI_GET_PROFILE */ member
|
/linux-4.1.27/Documentation/zh_CN/ |
D | basic_profiling.txt | 39 启用readprofile需要在kernel启动命令行增加”profile=2“
|
/linux-4.1.27/Documentation/block/ |
D | data-integrity.txt | 152 profile (struct blk_integrity). This optional profile is registered 155 The profile contains callback functions for generating and verifying 157 The profile also contains a few constants to aid in completing, 160 Layered block devices will need to pick a profile that's appropriate
|
/linux-4.1.27/drivers/net/ethernet/mellanox/mlx5/core/ |
D | main.c | 79 static struct mlx5_profile profile[] = { variable 411 struct mlx5_profile *prof = dev->profile; in handle_hca_cap() 973 if (prof_sel < 0 || prof_sel >= ARRAY_SIZE(profile)) { in init_one() 978 dev->profile = &profile[prof_sel]; in init_one()
|
/linux-4.1.27/drivers/isdn/capi/ |
D | capi.c | 807 cdev->errcode = capi20_get_profile(data.contr, &data.profile); in capi_ioctl() 812 &data.profile.ncontroller, in capi_ioctl() 813 sizeof(data.profile.ncontroller)); in capi_ioctl() 816 cdev->errcode = capi20_get_profile(data.contr, &data.profile); in capi_ioctl() 820 retval = copy_to_user(argp, &data.profile, in capi_ioctl() 821 sizeof(data.profile)); in capi_ioctl()
|
D | capidrv.c | 2434 capi_profile profile; in lower_callback() local 2440 if (capi20_get_profile(contr, &profile) == CAPI_NOERROR) in lower_callback() 2441 (void) capidrv_addcontr(contr, &profile); in lower_callback() 2494 capi_profile profile; in capidrv_init() local 2510 errcode = capi20_get_profile(0, &profile); in capidrv_init() 2517 ncontr = profile.ncontroller; in capidrv_init() 2519 errcode = capi20_get_profile(contr, &profile); in capidrv_init() 2522 (void) capidrv_addcontr(contr, &profile); in capidrv_init()
|
D | kcapi.c | 224 memset(&ctr->profile, 0, sizeof(ctr->profile)); in ctr_down() 967 memcpy(profp, &ctr->profile, sizeof(struct capi_profile)); in capi20_get_profile()
|
/linux-4.1.27/drivers/gpu/drm/radeon/ |
D | radeon_pm.c | 83 if (rdev->pm.profile == PM_PROFILE_AUTO) { in radeon_pm_acpi_event_handler() 94 switch (rdev->pm.profile) { in radeon_pm_update_profile() 350 int cp = rdev->pm.profile; in radeon_get_pm_profile() 375 rdev->pm.profile = PM_PROFILE_DEFAULT; in radeon_set_pm_profile() 377 rdev->pm.profile = PM_PROFILE_AUTO; in radeon_set_pm_profile() 379 rdev->pm.profile = PM_PROFILE_LOW; in radeon_set_pm_profile() 381 rdev->pm.profile = PM_PROFILE_MID; in radeon_set_pm_profile() 383 rdev->pm.profile = PM_PROFILE_HIGH; in radeon_set_pm_profile() 1295 rdev->pm.profile = PM_PROFILE_DEFAULT; in radeon_pm_init_old() 1589 rdev->pm.profile = PM_PROFILE_DEFAULT; in radeon_pm_fini_old()
|
D | radeon_atombios.c | 3215 ATOM_ASIC_PROFILING_INFO_V2_1 *profile; in radeon_atom_get_leakage_vddc_based_on_leakage_params() local 3225 profile = (ATOM_ASIC_PROFILING_INFO_V2_1 *) in radeon_atom_get_leakage_vddc_based_on_leakage_params() 3238 le16_to_cpu(profile->usLeakageBinArrayOffset)); in radeon_atom_get_leakage_vddc_based_on_leakage_params() 3241 le16_to_cpu(profile->usElbVDDC_IdArrayOffset)); in radeon_atom_get_leakage_vddc_based_on_leakage_params() 3244 le16_to_cpu(profile->usElbVDDC_LevelArrayOffset)); in radeon_atom_get_leakage_vddc_based_on_leakage_params() 3247 le16_to_cpu(profile->usElbVDDCI_IdArrayOffset)); in radeon_atom_get_leakage_vddc_based_on_leakage_params() 3250 le16_to_cpu(profile->usElbVDDCI_LevelArrayOffset)); in radeon_atom_get_leakage_vddc_based_on_leakage_params() 3252 if (profile->ucElbVDDC_Num > 0) { in radeon_atom_get_leakage_vddc_based_on_leakage_params() 3253 for (i = 0; i < profile->ucElbVDDC_Num; i++) { in radeon_atom_get_leakage_vddc_based_on_leakage_params() 3255 for (j = 0; j < profile->ucLeakageBinNum; j++) { in radeon_atom_get_leakage_vddc_based_on_leakage_params() [all …]
|
D | radeon.h | 1647 enum radeon_pm_profile_type profile; member
|
/linux-4.1.27/net/bluetooth/cmtp/ |
D | capi.c | 243 memcpy(&ctrl->profile, in cmtp_recv_interopmsg() 400 nconn = ctrl->profile.nbchannel * -want; in cmtp_register_appl() 405 nconn = ctrl->profile.nbchannel; in cmtp_register_appl()
|
/linux-4.1.27/Documentation/security/ |
D | apparmor.txt | 5 from user space. Tasks on the system that do not have a profile defined for
|
/linux-4.1.27/Documentation/ |
D | basic_profiling.txt | 22 Add "profile=2" to the kernel command line.
|
D | 00-INDEX | 91 - basic instructions for those who wants to profile Linux kernel.
|
D | kernel-parameters.txt | 2934 profile= [KNL] Enable kernel profiling via /proc/profile 2936 Param: "schedule" - profile schedule points. 2939 Param: "sleep" - profile D-state sleeping (millisecs). 2941 Param: "kvm" - profile VM exits.
|
D | devices.txt | 2639 0 = /dev/profile Profiling control device
|
/linux-4.1.27/arch/tile/kernel/ |
D | stack.c | 117 if (kbt->profile && ((1ULL << p->faultnum) & QUEUED_INTERRUPTS) != 0) in valid_fault_handler() 234 kbt->profile = 0; /* override in caller if desired */ in KBacktraceIterator_init()
|
D | perf_event.c | 963 kbt.profile = 1; in perf_callchain()
|
/linux-4.1.27/Documentation/frv/ |
D | booting.txt | 159 (*) profile=1 161 Turns on the kernel profiler (accessible through /proc/profile).
|
/linux-4.1.27/include/uapi/sound/ |
D | compress_params.h | 395 __u32 profile; member
|
/linux-4.1.27/net/can/ |
D | gw.c | 274 switch (crc8->profile) { in cgw_csum_crc8_rel() 302 switch (crc8->profile) { in cgw_csum_crc8_pos() 329 switch (crc8->profile) { in cgw_csum_crc8_neg()
|
/linux-4.1.27/include/linux/mlx5/ |
D | device.h | 369 __be16 profile; member 381 __be16 profile; member
|
D | driver.h | 530 struct mlx5_profile *profile; member
|
/linux-4.1.27/kernel/ |
D | Makefile | 35 obj-$(CONFIG_PROFILING) += profile.o
|
/linux-4.1.27/drivers/isdn/gigaset/ |
D | capi.c | 961 iif->ctr.profile.nbchannel = cs->channels; in gigaset_isdn_start() 963 iif->ctr.profile.goptions = 0x11; in gigaset_isdn_start() 965 iif->ctr.profile.support1 = 0x03; in gigaset_isdn_start() 968 iif->ctr.profile.support2 = 0x02; in gigaset_isdn_start() 970 iif->ctr.profile.support3 = 0x01; in gigaset_isdn_start()
|
/linux-4.1.27/drivers/net/wireless/ath/ath6kl/ |
D | main.c | 575 vif->profile.ch = cpu_to_le16(channel); in ath6kl_commit_ch_switch() 592 &vif->profile); in ath6kl_commit_ch_switch() 974 ar->last_ch = le16_to_cpu(vif->profile.ch); in ath6kl_disconnect_event()
|
D | core.h | 646 struct wmi_connect_cmd profile; member
|
D | cfg80211.c | 2940 memcpy(&vif->profile, &p, sizeof(p)); in ath6kl_start_ap()
|
/linux-4.1.27/Documentation/video4linux/bttv/ |
D | Cards | 162 LR99 Rev.E = Low profile card for OEM integration (only internal audio!) bt878 163 LR136 = Flyvideo 2100/3100 (Low profile, SAA7130/SAA7134) 788 KWORLD KW-TVL878RF (low profile) 953 Asus TV Tuner Card 880 NTSC (low profile, cx23880)
|
/linux-4.1.27/sound/pci/asihpi/ |
D | hpi.h | 1376 u16 profile); 1379 u16 *profile);
|
D | hpifunc.c | 2800 u16 profile) in hpi_volume_auto_fade_profile() argument 2815 hm.u.c.param2 = profile; in hpi_volume_auto_fade_profile() 2830 u16 *profile) in hpi_volume_query_auto_fade_profile() argument 2835 *profile = (u16)u; in hpi_volume_query_auto_fade_profile()
|
/linux-4.1.27/drivers/net/wireless/prism54/ |
D | isl_ioctl.c | 833 u32 rate, profile; in prism54_set_rate() local 840 profile = 1; in prism54_set_rate() 841 return mgt_set_request(priv, DOT11_OID_PROFILES, 0, &profile); in prism54_set_rate() 888 profile = -1; in prism54_set_rate() 889 ret = mgt_set_request(priv, DOT11_OID_PROFILES, 0, &profile); in prism54_set_rate()
|
/linux-4.1.27/drivers/net/ethernet/intel/i40e/ |
D | i40e_prototype.h | 201 enum i40e_aq_hmc_profile profile,
|
D | i40e_common.c | 2195 enum i40e_aq_hmc_profile profile, in i40e_aq_set_hmc_resource_profile() argument 2207 cmd->pm_profile = (u8)profile; in i40e_aq_set_hmc_resource_profile()
|
/linux-4.1.27/Documentation/isdn/ |
D | INTERFACE.CAPI | 42 information fields 'manu', 'version', 'profile' and 'serial' in the capi_ctr 173 capi_profile profile
|
D | README | 125 AT&F Reset all registers and profile to "factory-defaults" 154 AT&W0 Write registers and EAZ/MSN to profile. See also 351 line. It will store the profile-settings in this file every time
|
/linux-4.1.27/drivers/infiniband/hw/mlx5/ |
D | mr.c | 590 if (dev->mdev->profile->mask & MLX5_PROF_MASK_MR_CACHE) in mlx5_mr_cache_init() 591 limit = dev->mdev->profile->mr_cache[i].limit; in mlx5_mr_cache_init()
|
/linux-4.1.27/kernel/trace/ |
D | Kconfig | 286 The "all branch" profiler will profile every if-statement in the 310 on if you need to profile the system's use of these macros.
|
/linux-4.1.27/Documentation/arm64/ |
D | acpi_object_usage.txt | 105 the hardware reduced profile, and only 64-bit address fields will 495 profile used by arm64. Since there are no GPE blocks defined for use on ARM
|
/linux-4.1.27/drivers/scsi/pm8001/ |
D | pm80xx_hwi.h | 881 __le32 profile[29]; member
|
/linux-4.1.27/Documentation/sound/alsa/ |
D | compress_offload.txt | 107 the number of channels supported may depend on a specific profile. If
|
/linux-4.1.27/Documentation/scsi/ |
D | ncr53c8xx.txt | 25 8.6 Clear profile counters 374 attached. So, if the driver is a module, the profile counters are 506 8.6 Clear profile counters 510 The profile counters are automatically cleared when the amount of
|
D | ChangeLog.sym53c8xx | 177 profile support option was set in kernel configuration.
|
/linux-4.1.27/tools/perf/ |
D | design.txt | 10 thus be used to profile the code that runs on that CPU.
|
/linux-4.1.27/drivers/net/usb/ |
D | Kconfig | 538 "PC suite" USB profile.
|
/linux-4.1.27/Documentation/powerpc/ |
D | hvcs.txt | 479 A: The user profile you are using to execute kermit probably doesn't have
|
/linux-4.1.27/drivers/net/ethernet/emulex/benet/ |
D | be_cmds.h | 2358 int be_cmd_get_active_profile(struct be_adapter *adapter, u16 *profile);
|
/linux-4.1.27/Documentation/s390/ |
D | Debugging390.txt | 812 It is typically useful to add shortcuts to your profile.exec file 916 Also CP has a file called profile.exec which automatically gets called 919 use profile.exec to define some keystrokes.
|
/linux-4.1.27/fs/btrfs/ |
D | extent-tree.c | 4252 u64 profile = btrfs_get_alloc_profile(root, 0); in can_overcommit() local 4284 if (profile & (BTRFS_BLOCK_GROUP_DUP | in can_overcommit()
|
/linux-4.1.27/init/ |
D | Kconfig | 1627 used to profile the code that runs on that CPU.
|