/linux-6.1.9/drivers/net/ipa/ |
D | ipa_reg.h | 121 const u32 *fmask; /* BIT(nr) or GENMASK(h, l) */ member 146 .fmask = ipa_reg_ ## __name ## _fmask, \ 670 return reg->fmask[field_id]; in ipa_reg_fmask() 676 u32 fmask = ipa_reg_fmask(reg, field_id); in ipa_reg_bit() local 678 WARN_ON(!is_power_of_2(fmask)); in ipa_reg_bit() 680 return fmask; in ipa_reg_bit() 687 u32 fmask = ipa_reg_fmask(reg, field_id); in ipa_reg_encode() local 689 if (!fmask) in ipa_reg_encode() 692 val <<= __ffs(fmask); in ipa_reg_encode() 693 if (WARN_ON(val & ~fmask)) in ipa_reg_encode() [all …]
|
/linux-6.1.9/drivers/pinctrl/ |
D | pinctrl-single.c | 194 unsigned fmask; member 309 val &= pcs->fmask << pcs_pin_shift_reg_get(pcs, pin); in pcs_pin_dbg_show() 372 if (!pcs->fmask) in pcs_set_mux() 394 mask = pcs->fmask; in pcs_set_mux() 414 if (!pcs->fmask) in pcs_request_gpio() 431 data &= ~(pcs->fmask << pin_shift); in pcs_request_gpio() 436 data &= ~pcs->fmask; in pcs_request_gpio() 730 if (pcs->bits_per_mux && pcs->fmask) { in pcs_allocate_pin_table() 731 pcs->bits_per_pin = fls(pcs->fmask); in pcs_allocate_pin_table() 1176 mask_pos = ((pcs->fmask) << bit_pos); in pcs_parse_bits_in_pinctrl_entry() [all …]
|
/linux-6.1.9/arch/powerpc/perf/ |
D | power5-pmu.c | 142 int bit, fmask; in power5_get_constraint() local 176 fmask = (bit == 6)? 7: 3; in power5_get_constraint() 178 mask |= (unsigned long)fmask << sh; in power5_get_constraint() 179 value |= (unsigned long)((event >> PM_GRS_SH) & fmask) in power5_get_constraint()
|
D | power5+-pmu.c | 138 int bit, fmask; in power5p_get_constraint() local 169 fmask = (bit == 6)? 7: 3; in power5p_get_constraint() 171 mask |= (unsigned long)fmask << sh; in power5p_get_constraint() 172 value |= (unsigned long)((event >> PM_GRS_SH) & fmask) in power5p_get_constraint()
|
/linux-6.1.9/drivers/isdn/hardware/mISDN/ |
D | w6692.c | 58 u32 fmask; /* feature mask - bit set per card nr */ member 164 if ((!(card->fmask & led)) || card->subtype == W6692_USR) in w6692_led_handler() 420 if (card->fmask & led) { in handle_statusD() 535 if ((!(card->fmask & pots)) || 560 if ((!(card->fmask & pots)) || 577 if (!(card->fmask & pots)) in disable_pots() 596 if ((card->fmask & pots) && (wch->b_mode & W_B_MODE_EPCM)) in w6692_mode() 871 if (card->fmask & pots) in initW6692() 873 if (card->fmask & led) in initW6692() 875 if ((card->fmask & pots) || (card->fmask & led)) { in initW6692() [all …]
|
/linux-6.1.9/drivers/net/wireless/ath/ath5k/ |
D | eeprom.c | 1605 unsigned int fmask, pmask; in ath5k_eeprom_read_ctl_info() local 1612 fmask = AR5K_EEPROM_FREQ_M(ee->ee_version); in ath5k_eeprom_read_ctl_info() 1650 rep[j].freq = (val >> 8) & fmask; in ath5k_eeprom_read_ctl_info() 1651 rep[j + 1].freq = val & fmask; in ath5k_eeprom_read_ctl_info() 1662 rep[0].freq = (val >> 9) & fmask; in ath5k_eeprom_read_ctl_info() 1663 rep[1].freq = (val >> 2) & fmask; in ath5k_eeprom_read_ctl_info() 1664 rep[2].freq = (val << 5) & fmask; in ath5k_eeprom_read_ctl_info() 1668 rep[3].freq = (val >> 4) & fmask; in ath5k_eeprom_read_ctl_info() 1669 rep[4].freq = (val << 3) & fmask; in ath5k_eeprom_read_ctl_info() 1673 rep[5].freq = (val >> 6) & fmask; in ath5k_eeprom_read_ctl_info() [all …]
|
/linux-6.1.9/sound/pci/echoaudio/ |
D | echoaudio.c | 175 u64 fmask; in hw_rule_playback_format_by_channels() local 178 fmask = fmt.bits[0] + ((u64)fmt.bits[1] << 32); in hw_rule_playback_format_by_channels() 182 fmask &= SNDRV_PCM_FMTBIT_S16_LE | in hw_rule_playback_format_by_channels() 187 fmask &= SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE; in hw_rule_playback_format_by_channels() 191 fmask &= ~SNDRV_PCM_FMTBIT_S32_BE; in hw_rule_playback_format_by_channels() 196 fmt.bits[0] &= (u32)fmask; in hw_rule_playback_format_by_channels() 197 fmt.bits[1] &= (u32)(fmask >> 32); in hw_rule_playback_format_by_channels() 210 u64 fmask; in hw_rule_playback_channels_by_format() local 214 fmask = f->bits[0] + ((u64)f->bits[1] << 32); in hw_rule_playback_channels_by_format() 217 if (fmask == SNDRV_PCM_FMTBIT_S32_BE) { in hw_rule_playback_channels_by_format() [all …]
|
/linux-6.1.9/Documentation/filesystems/ |
D | ntfs3.rst | 56 directories, fmask applies only to files and dmask only to directories. 57 * - fmask=
|
D | omfs.rst | 40 fmask=xxx set umask to xxx for files
|
D | ntfs.rst | 138 consequence of the default fmask=0177 and dmask=0077. 143 fmask= 145 files and directories, fmask applies only to files and
|
D | vfat.rst | 35 **fmask=###**
|
/linux-6.1.9/fs/ntfs/ |
D | volume.h | 38 umode_t fmask; /* The mask for file permissions. */ member
|
D | super.c | 94 umode_t fmask = (umode_t)-1, dmask = (umode_t)-1; in parse_options() local 181 else NTFS_GETOPT_OCTAL("umask", fmask = dmask) in parse_options() 182 else NTFS_GETOPT_OCTAL("fmask", fmask) in parse_options() 301 if (fmask != (umode_t)-1) in parse_options() 302 vol->fmask = fmask; in parse_options() 2738 .fmask = 0177, in ntfs_fill_super()
|
D | inode.c | 608 vi->i_mode &= ~vol->fmask; in ntfs_read_locked_inode() 2311 if (vol->fmask == vol->dmask) in ntfs_show_options() 2312 seq_printf(sf, ",umask=0%o", vol->fmask); in ntfs_show_options() 2314 seq_printf(sf, ",fmask=0%o", vol->fmask); in ntfs_show_options()
|
D | mft.c | 2673 vi->i_mode &= ~vol->fmask; in ntfs_mft_record_alloc()
|
/linux-6.1.9/fs/vboxsf/ |
D | vfsmod.h | 32 umode_t fmask; member
|
D | utils.c | 97 mode &= ~sbi->o.fmask; in vboxsf_init_inode() 108 mode &= ~sbi->o.fmask; in vboxsf_init_inode()
|
D | super.c | 110 ctx->o.fmask = result.uint_32; in vboxsf_parse_param()
|
/linux-6.1.9/drivers/usb/host/ |
D | ehci-sched.c | 2356 unsigned fmask = ehci->periodic_size - 1; in scan_isoc() local 2368 now_frame = (uf >> 3) & fmask; in scan_isoc() 2371 now_frame = (ehci->last_iso_frame - 1) & fmask; in scan_isoc() 2437 (((frame + 1) & fmask) == now_frame)) in scan_isoc() 2487 frame = (frame + 1) & fmask; in scan_isoc()
|
D | fotg210-hcd.c | 4651 unsigned fmask = fotg210->periodic_size - 1; in scan_isoc() local 4661 now_frame = (uf >> 3) & fmask; in scan_isoc() 4664 now_frame = (fotg210->next_frame - 1) & fmask; in scan_isoc() 4679 frame = (frame + 1) & fmask; in scan_isoc()
|
/linux-6.1.9/fs/ntfs3/ |
D | super.c | 303 opts->fmask = 1; in ntfs_fs_parse_param() 316 opts->fmask = 1; in ntfs_fs_parse_param() 521 if (opts->fmask) in ntfs_show_options()
|
D | ntfs_fs.h | 93 unsigned fmask : 1; /* fmask was set. */ member
|
/linux-6.1.9/drivers/net/ethernet/mellanox/mlx5/core/ |
D | en_tc.c | 171 void *headers_c = spec->match_criteria, *headers_v = spec->match_value, *fmask, *fval; in mlx5e_tc_match_to_reg_match() local 179 fmask = headers_c + soffset; in mlx5e_tc_match_to_reg_match() 182 memcpy(&curr_mask_be, fmask, 4); in mlx5e_tc_match_to_reg_match() 206 memcpy(fmask, &curr_mask_be, 4); in mlx5e_tc_match_to_reg_match() 218 void *headers_c = spec->match_criteria, *headers_v = spec->match_value, *fmask, *fval; in mlx5e_tc_match_to_reg_get_match() local 226 fmask = headers_c + soffset; in mlx5e_tc_match_to_reg_get_match() 229 memcpy(&curr_mask_be, fmask, 4); in mlx5e_tc_match_to_reg_get_match()
|
/linux-6.1.9/drivers/infiniband/hw/qib/ |
D | qib_iba7322.c | 1838 u64 ignore_this_time = 0, iserr = 0, errs, fmask; in handle_7322_p_errors() local 1842 fmask = qib_read_kreg64(dd, kr_act_fmask); in handle_7322_p_errors() 1843 if (!fmask) in handle_7322_p_errors() 1851 if (!fmask) in handle_7322_p_errors() 8436 u64 fmask; in check_7322_rxe_status() local 8444 fmask = qib_read_kreg64(dd, kr_act_fmask); in check_7322_rxe_status() 8445 if (!fmask) { in check_7322_rxe_status()
|