/linux-6.1.9/security/safesetid/ |
D | lsm.c | 66 static enum sid_policy_type setid_policy_lookup(kid_t src, kid_t dst, enum setid_type new_type) in setid_policy_lookup() argument 72 if (new_type == UID) in setid_policy_lookup() 74 else if (new_type == GID) in setid_policy_lookup() 83 pol->type = new_type; in setid_policy_lookup() 147 static bool id_permitted_for_cred(const struct cred *old, kid_t new_id, enum setid_type new_type) in id_permitted_for_cred() argument 152 if (new_type == UID) { in id_permitted_for_cred() 156 } else if (new_type == GID){ in id_permitted_for_cred() 168 setid_policy_lookup((kid_t){.uid = old->uid}, new_id, new_type) != SIDPOL_CONSTRAINED; in id_permitted_for_cred() 171 if (new_type == UID) { in id_permitted_for_cred() 175 } else if (new_type == GID) { in id_permitted_for_cred()
|
/linux-6.1.9/arch/x86/mm/pat/ |
D | memtype.c | 503 enum page_cache_mode *new_type) in reserve_ram_pages_type() argument 509 if (new_type) in reserve_ram_pages_type() 510 *new_type = _PAGE_CACHE_MODE_UC_MINUS; in reserve_ram_pages_type() 528 if (new_type) in reserve_ram_pages_type() 529 *new_type = type; in reserve_ram_pages_type() 535 if (new_type) in reserve_ram_pages_type() 536 *new_type = req_type; in reserve_ram_pages_type() 587 enum page_cache_mode *new_type) in memtype_reserve() argument 609 if (new_type) in memtype_reserve() 610 *new_type = req_type; in memtype_reserve() [all …]
|
D | memtype.h | 33 enum page_cache_mode *new_type); 39 enum page_cache_mode *new_type) in memtype_check_insert() argument
|
D | set_memory.c | 2153 enum page_cache_mode new_type) in _set_pages_array() argument 2167 if (memtype_reserve(start, end, new_type, NULL)) in _set_pages_array() 2172 set_type = (new_type == _PAGE_CACHE_MODE_WC) ? in _set_pages_array() 2173 _PAGE_CACHE_MODE_UC_MINUS : new_type; in _set_pages_array() 2177 if (!ret && new_type == _PAGE_CACHE_MODE_WC) in _set_pages_array()
|
/linux-6.1.9/tools/perf/util/ |
D | branch.c | 25 st->new_counts[flags->new_type]++; in branch_type_count() 42 const char *branch_new_type_name(int new_type) in branch_new_type_name() argument 68 if (new_type >= 0 && new_type < PERF_BR_NEW_MAX) in branch_new_type_name() 69 return branch_new_names[new_type]; in branch_new_type_name() 107 return branch_new_type_name(e->flags.new_type); in get_branch_type()
|
D | branch.h | 28 u64 new_type:4; member 89 const char *branch_new_type_name(int new_type);
|
/linux-6.1.9/drivers/gpio/ |
D | gpio-tqmx86.c | 152 u8 new_type, gpiic; in tqmx86_gpio_irq_set_type() local 156 new_type = TQMX86_GPII_RISING; in tqmx86_gpio_irq_set_type() 159 new_type = TQMX86_GPII_FALLING; in tqmx86_gpio_irq_set_type() 162 new_type = TQMX86_GPII_FALLING | TQMX86_GPII_RISING; in tqmx86_gpio_irq_set_type() 168 gpio->irq_type[offset] = new_type; in tqmx86_gpio_irq_set_type() 173 gpiic |= new_type << (offset * TQMX86_GPII_BITS); in tqmx86_gpio_irq_set_type()
|
/linux-6.1.9/arch/x86/kernel/ |
D | e820.c | 463 …te(struct e820_table *table, u64 start, u64 size, enum e820_type old_type, enum e820_type new_type) in __e820__range_update() argument 469 BUG_ON(old_type == new_type); in __e820__range_update() 478 e820_print_type(new_type); in __e820__range_update() 493 entry->type = new_type; in __e820__range_update() 500 __e820__range_add(table, start, size, new_type); in __e820__range_update() 513 __e820__range_add(table, final_start, final_end - final_start, new_type); in __e820__range_update() 530 u64 __init e820__range_update(u64 start, u64 size, enum e820_type old_type, enum e820_type new_type) in e820__range_update() argument 532 return __e820__range_update(e820_table, start, size, old_type, new_type); in e820__range_update() 535 …it e820__range_update_kexec(u64 start, u64 size, enum e820_type old_type, enum e820_type new_type) in e820__range_update_kexec() argument 537 return __e820__range_update(e820_table_kexec, start, size, old_type, new_type); in e820__range_update_kexec()
|
/linux-6.1.9/drivers/net/wan/ |
D | pc300too.c | 194 int new_type; in pc300_ioctl() local 211 new_type = IF_IFACE_X21; in pc300_ioctl() 216 new_type = IF_IFACE_V35; in pc300_ioctl() 220 new_type = IF_IFACE_V24; in pc300_ioctl() 241 port->iface = new_type; in pc300_ioctl()
|
/linux-6.1.9/kernel/events/ |
D | hw_breakpoint.c | 653 static int __modify_bp_slot(struct perf_event *bp, u64 old_type, u64 new_type) in __modify_bp_slot() argument 659 err = __reserve_bp_slot(bp, new_type); in __modify_bp_slot() 675 static int modify_bp_slot(struct perf_event *bp, u64 old_type, u64 new_type) in modify_bp_slot() argument 678 int ret = __modify_bp_slot(bp, old_type, new_type); in modify_bp_slot()
|
/linux-6.1.9/arch/x86/include/asm/e820/ |
D | api.h | 18 …ern u64 e820__range_update(u64 start, u64 size, enum e820_type old_type, enum e820_type new_type);
|
/linux-6.1.9/fs/gfs2/ |
D | dir.h | 42 const struct gfs2_inode *nip, unsigned int new_type);
|
/linux-6.1.9/drivers/net/wireless/st/cw1200/ |
D | sta.h | 23 enum nl80211_iftype new_type,
|
D | sta.c | 307 enum nl80211_iftype new_type, in cw1200_change_interface() argument 311 pr_debug("change_interface new: %d (%d), old: %d (%d)\n", new_type, in cw1200_change_interface() 314 if (new_type != vif->type || vif->p2p != p2p) { in cw1200_change_interface() 316 vif->type = new_type; in cw1200_change_interface()
|
/linux-6.1.9/scripts/ |
D | checkpatch.pl | 2150 my $new_type = pop(@av_paren_type); 2151 if ($new_type ne '_') { 2152 $type = $new_type; 4590 my $new_type = $type; 4591 $new_type =~ s/\b\s*int\s*\b/ /; 4592 $new_type =~ s/\b\s*(?:un)?signed\b\s*/ /; 4593 $new_type =~ s/^const\s+//; 4594 $new_type = "unsigned $new_type" if ($type =~ /\bunsigned\b/); 4595 $new_type = "const $new_type" if ($type =~ /^const\b/); 4596 $new_type =~ s/\s+/ /g; [all …]
|
/linux-6.1.9/net/smc/ |
D | smc_core.h | 549 void smcr_lgr_set_type(struct smc_link_group *lgr, enum smc_lgr_type new_type); 551 enum smc_lgr_type new_type, int asym_lnk_idx);
|
D | smc_core.c | 1592 void smcr_lgr_set_type(struct smc_link_group *lgr, enum smc_lgr_type new_type) in smcr_lgr_set_type() argument 1600 if (lgr->type == new_type) in smcr_lgr_set_type() 1602 lgr->type = new_type; in smcr_lgr_set_type() 1628 enum smc_lgr_type new_type, int asym_lnk_idx) in smcr_lgr_set_type_asym() argument 1630 smcr_lgr_set_type(lgr, new_type); in smcr_lgr_set_type_asym()
|
/linux-6.1.9/drivers/net/wireless/quantenna/qtnfmac/ |
D | cfg80211.c | 76 enum nl80211_iftype new_type) in qtnf_validate_iface_combinations() argument 97 params.iftype_num[new_type]++; in qtnf_validate_iface_combinations() 100 params.iftype_num[new_type]++; in qtnf_validate_iface_combinations() 114 vif != change_vif && new_type == NL80211_IFTYPE_STATION) { in qtnf_validate_iface_combinations()
|
/linux-6.1.9/drivers/media/tuners/ |
D | xc2028.c | 1009 enum v4l2_tuner_type new_type, in generic_set_freq() argument 1035 switch (new_type) { in generic_set_freq() 1110 tuner_err("Unsupported tuner type %d.\n", new_type); in generic_set_freq()
|
/linux-6.1.9/tools/include/uapi/linux/ |
D | perf_event.h | 1421 new_type:4, /* additional branch type */ member
|
/linux-6.1.9/include/uapi/linux/ |
D | perf_event.h | 1421 new_type:4, /* additional branch type */ member
|
/linux-6.1.9/drivers/pinctrl/renesas/ |
D | pinctrl.c | 445 int new_type = input ? PINMUX_TYPE_INPUT : PINMUX_TYPE_OUTPUT; in sh_pfc_gpio_set_direction() local 462 ret = sh_pfc_config_mux(pfc, pin->enum_id, new_type); in sh_pfc_gpio_set_direction()
|
/linux-6.1.9/crypto/ |
D | algapi.c | 148 u32 new_type = (nalg ?: alg)->cra_flags; in crypto_remove_spawns() local 157 if ((spawn->alg->cra_flags ^ new_type) & spawn->mask) in crypto_remove_spawns()
|
/linux-6.1.9/drivers/net/wireless/ath/wil6210/ |
D | cfg80211.c | 624 enum nl80211_iftype new_type) in wil_cfg80211_validate_add_iface() argument 638 params.iftype_num[new_type]++; in wil_cfg80211_validate_add_iface() 644 enum nl80211_iftype new_type) in wil_cfg80211_validate_change_iface() argument 664 params.iftype_num[new_type]++; in wil_cfg80211_validate_change_iface()
|
/linux-6.1.9/net/mac80211/ |
D | trace.h | 329 __field(u32, new_type) 336 __entry->new_type = type; 342 LOCAL_PR_ARG, VIF_PR_ARG, __entry->new_type,
|