/Linux-v5.4/drivers/block/ |
D | swim3.c | 208 #define swim3_err(fmt, arg...) dev_err(&fs->mdev->ofdev.dev, "[fd%d] " fmt, fs->index, arg) 209 #define swim3_warn(fmt, arg...) dev_warn(&fs->mdev->ofdev.dev, "[fd%d] " fmt, fs->index, arg) 210 #define swim3_info(fmt, arg...) dev_info(&fs->mdev->ofdev.dev, "[fd%d] " fmt, fs->index, arg) 213 #define swim3_dbg(fmt, arg...) dev_dbg(&fs->mdev->ofdev.dev, "[fd%d] " fmt, fs->index, arg) 236 static void seek_track(struct floppy_state *fs, int n); 238 static void act(struct floppy_state *fs); 245 static int grab_drive(struct floppy_state *fs, enum swim_state state, 247 static void release_drive(struct floppy_state *fs); 248 static int fd_eject(struct floppy_state *fs); 257 static bool swim3_end_request(struct floppy_state *fs, blk_status_t err, unsigned int nr_bytes) in swim3_end_request() argument [all …]
|
D | swim.c | 424 static inline int swim_track(struct floppy_state *fs, int track) in swim_track() argument 426 struct swim __iomem *base = fs->swd->base; in swim_track() 429 ret = swim_seek(base, track - fs->track); in swim_track() 432 fs->track = track; in swim_track() 435 fs->track = 0; in swim_track() 441 static int floppy_eject(struct floppy_state *fs) in floppy_eject() argument 443 struct swim __iomem *base = fs->swd->base; in floppy_eject() 445 swim_drive(base, fs->location); in floppy_eject() 449 fs->disk_in = 0; in floppy_eject() 450 fs->ejected = 1; in floppy_eject() [all …]
|
/Linux-v5.4/fs/ |
D | fs_struct.c | 15 void set_fs_root(struct fs_struct *fs, const struct path *path) in set_fs_root() argument 20 spin_lock(&fs->lock); in set_fs_root() 21 write_seqcount_begin(&fs->seq); in set_fs_root() 22 old_root = fs->root; in set_fs_root() 23 fs->root = *path; in set_fs_root() 24 write_seqcount_end(&fs->seq); in set_fs_root() 25 spin_unlock(&fs->lock); in set_fs_root() 34 void set_fs_pwd(struct fs_struct *fs, const struct path *path) in set_fs_pwd() argument 39 spin_lock(&fs->lock); in set_fs_pwd() 40 write_seqcount_begin(&fs->seq); in set_fs_pwd() [all …]
|
D | filesystems.c | 38 struct file_system_type *get_filesystem(struct file_system_type *fs) in get_filesystem() argument 40 __module_get(fs->owner); in get_filesystem() 41 return fs; in get_filesystem() 44 void put_filesystem(struct file_system_type *fs) in put_filesystem() argument 46 module_put(fs->owner); in put_filesystem() 72 int register_filesystem(struct file_system_type * fs) in register_filesystem() argument 77 if (fs->parameters && !fs_validate_description(fs->parameters)) in register_filesystem() 80 BUG_ON(strchr(fs->name, '.')); in register_filesystem() 81 if (fs->next) in register_filesystem() 84 p = find_filesystem(fs->name, strlen(fs->name)); in register_filesystem() [all …]
|
D | Kconfig | 23 source "fs/ext2/Kconfig" 24 source "fs/ext4/Kconfig" 25 source "fs/jbd2/Kconfig" 34 source "fs/reiserfs/Kconfig" 35 source "fs/jfs/Kconfig" 37 source "fs/xfs/Kconfig" 38 source "fs/gfs2/Kconfig" 39 source "fs/ocfs2/Kconfig" 40 source "fs/btrfs/Kconfig" 41 source "fs/nilfs2/Kconfig" [all …]
|
/Linux-v5.4/drivers/net/ethernet/chelsio/cxgb4/ |
D | cxgb4_filter.c | 75 set_wr_txq(skb, CPL_PRIORITY_CONTROL, f->fs.val.iport & 0x3); in set_tcb_field() 169 if (f->fs.type) { in set_nat_params() 171 WORD_MASK, f->fs.nat_lip[15] | in set_nat_params() 172 f->fs.nat_lip[14] << 8 | in set_nat_params() 173 f->fs.nat_lip[13] << 16 | in set_nat_params() 174 f->fs.nat_lip[12] << 24, 1); in set_nat_params() 177 WORD_MASK, f->fs.nat_lip[11] | in set_nat_params() 178 f->fs.nat_lip[10] << 8 | in set_nat_params() 179 f->fs.nat_lip[9] << 16 | in set_nat_params() 180 f->fs.nat_lip[8] << 24, 1); in set_nat_params() [all …]
|
D | cxgb4_tc_flower.c | 85 struct ch_filter_specification *fs) in cxgb4_process_flow_match() argument 111 fs->type = 1; in cxgb4_process_flow_match() 113 fs->val.ethtype = ethtype_key; in cxgb4_process_flow_match() 114 fs->mask.ethtype = ethtype_mask; in cxgb4_process_flow_match() 115 fs->val.proto = match.key->ip_proto; in cxgb4_process_flow_match() 116 fs->mask.proto = match.mask->ip_proto; in cxgb4_process_flow_match() 123 fs->type = 0; in cxgb4_process_flow_match() 124 memcpy(&fs->val.lip[0], &match.key->dst, sizeof(match.key->dst)); in cxgb4_process_flow_match() 125 memcpy(&fs->val.fip[0], &match.key->src, sizeof(match.key->src)); in cxgb4_process_flow_match() 126 memcpy(&fs->mask.lip[0], &match.mask->dst, sizeof(match.mask->dst)); in cxgb4_process_flow_match() [all …]
|
D | cxgb4_tc_u32.c | 44 struct ch_filter_specification *fs, in fill_match_fields() argument 74 err = entry[j].val(fs, val, mask); in fill_match_fields() 90 struct ch_filter_specification *fs, in fill_action_fields() argument 109 fs->action = FILTER_DROP; in fill_action_fields() 124 fs->action = FILTER_SWITCH; in fill_action_fields() 125 fs->eport = i; in fill_action_fields() 153 struct ch_filter_specification fs; in cxgb4_config_knode() local 191 memset(&fs, 0, sizeof(fs)); in cxgb4_config_knode() 264 ret = fill_match_fields(adapter, &fs, cls, in cxgb4_config_knode() 272 memcpy(&link->fs, &fs, sizeof(fs)); in cxgb4_config_knode() [all …]
|
/Linux-v5.4/drivers/clk/st/ |
D | clkgen-fsyn.c | 72 unsigned long output, struct stm_fs *fs); 260 static int clk_fs660c32_vco_get_rate(unsigned long input, struct stm_fs *fs, in clk_fs660c32_vco_get_rate() argument 263 unsigned long nd = fs->ndiv + 16; /* ndiv value */ in clk_fs660c32_vco_get_rate() 288 unsigned long output, struct stm_fs *fs) in clk_fs660c32_vco_get_params() argument 311 fs->ndiv = n - 16; /* Converting formula value to reg value */ in clk_fs660c32_vco_get_params() 471 static void quadfs_fsynth_program_enable(struct st_clk_quadfs_fsynth *fs) in quadfs_fsynth_program_enable() argument 477 CLKGEN_WRITE(fs, en[fs->chan], 1); in quadfs_fsynth_program_enable() 478 CLKGEN_WRITE(fs, en[fs->chan], 0); in quadfs_fsynth_program_enable() 481 static void quadfs_fsynth_program_rate(struct st_clk_quadfs_fsynth *fs) in quadfs_fsynth_program_rate() argument 490 CLKGEN_WRITE(fs, en[fs->chan], 0); in quadfs_fsynth_program_rate() [all …]
|
/Linux-v5.4/Documentation/filesystems/ |
D | api-summary.rst | 14 .. kernel-doc:: include/linux/fs.h 20 .. kernel-doc:: fs/dcache.c 29 .. kernel-doc:: fs/inode.c 32 .. kernel-doc:: fs/bad_inode.c 38 .. kernel-doc:: fs/super.c 44 .. kernel-doc:: fs/locks.c 47 .. kernel-doc:: fs/locks.c 53 .. kernel-doc:: fs/mpage.c 56 .. kernel-doc:: fs/namei.c 59 .. kernel-doc:: fs/buffer.c [all …]
|
/Linux-v5.4/tools/lib/api/fs/ |
D | fs.c | 88 struct fs { struct 109 static struct fs fs__entries[] = { argument 142 static bool fs__read_mounts(struct fs *fs) in fs__read_mounts() argument 154 fs->path, type) == 2) { in fs__read_mounts() 156 if (strcmp(type, fs->name) == 0) in fs__read_mounts() 161 return fs->found = found; in fs__read_mounts() 164 static int fs__valid_mount(const char *fs, long magic) in fs__valid_mount() argument 168 if (statfs(fs, &st_fs) < 0) in fs__valid_mount() 176 static bool fs__check_mounts(struct fs *fs) in fs__check_mounts() argument 180 ptr = fs->mounts; in fs__check_mounts() [all …]
|
/Linux-v5.4/drivers/net/ethernet/mellanox/mlx5/core/ |
D | en_fs_ethtool.c | 58 struct ethtool_rx_flow_spec *fs, in get_flow_table() argument 68 switch (fs->flow_type & ~(FLOW_EXT | FLOW_MAC_EXT)) { in get_flow_table() 75 eth_ft = &priv->fs.ethtool.l3_l4_ft[prio]; in get_flow_table() 81 eth_ft = &priv->fs.ethtool.l3_l4_ft[prio]; in get_flow_table() 86 eth_ft = &priv->fs.ethtool.l2_ft[prio]; in get_flow_table() 209 parse_tcp4(void *headers_c, void *headers_v, struct ethtool_rx_flow_spec *fs) in parse_tcp4() argument 211 struct ethtool_tcpip4_spec *l4_mask = &fs->m_u.tcp_ip4_spec; in parse_tcp4() 212 struct ethtool_tcpip4_spec *l4_val = &fs->h_u.tcp_ip4_spec; in parse_tcp4() 222 parse_udp4(void *headers_c, void *headers_v, struct ethtool_rx_flow_spec *fs) in parse_udp4() argument 224 struct ethtool_tcpip4_spec *l4_mask = &fs->m_u.udp_ip4_spec; in parse_udp4() [all …]
|
D | en_fs.c | 121 for_each_set_bit(vlan, priv->fs.vlan.active_cvlans, VLAN_N_VID) in mlx5e_vport_context_update_vlans() 138 for_each_set_bit(vlan, priv->fs.vlan.active_cvlans, VLAN_N_VID) { in mlx5e_vport_context_update_vlans() 165 struct mlx5_flow_table *ft = priv->fs.vlan.ft.t; in __mlx5e_add_vlan_rule() 172 dest.ft = priv->fs.l2.ft.t; in __mlx5e_add_vlan_rule() 182 rule_p = &priv->fs.vlan.untagged_rule; in __mlx5e_add_vlan_rule() 187 rule_p = &priv->fs.vlan.any_cvlan_rule; in __mlx5e_add_vlan_rule() 193 rule_p = &priv->fs.vlan.any_svlan_rule; in __mlx5e_add_vlan_rule() 199 rule_p = &priv->fs.vlan.active_svlans_rule[vid]; in __mlx5e_add_vlan_rule() 209 rule_p = &priv->fs.vlan.active_cvlans_rule[vid]; in __mlx5e_add_vlan_rule() 256 if (priv->fs.vlan.untagged_rule) { in mlx5e_del_vlan_rule() [all …]
|
/Linux-v5.4/include/math-emu/ |
D | op-common.h | 36 #define _FP_UNPACK_CANONICAL(fs, wc, X) \ argument 41 _FP_FRAC_HIGH_RAW_##fs(X) |= _FP_IMPLBIT_##fs; \ 43 X##_e -= _FP_EXPBIAS_##fs; \ 55 _shift -= _FP_FRACXBITS_##fs; \ 57 X##_e -= _FP_EXPBIAS_##fs - 1 + _shift; \ 68 case _FP_EXPMAX_##fs: \ 75 if (!(_FP_FRAC_HIGH_RAW_##fs(X) & _FP_QNANBIT_##fs)) \ 89 #define _FP_PACK_CANONICAL(fs, wc, X) \ argument 94 X##_e += _FP_EXPBIAS_##fs; \ 98 if (_FP_FRAC_OVERP_##wc(fs, X)) \ [all …]
|
D | op-1.h | 60 #define _FP_FRAC_OVERP_1(fs,X) (X##_f & _FP_OVERFLOW_##fs) argument 61 #define _FP_FRAC_CLEAR_OVERP_1(fs,X) (X##_f &= ~_FP_OVERFLOW_##fs) argument 75 #define _FP_UNPACK_RAW_1(fs, X, val) \ argument 77 union _FP_UNION_##fs _flo; _flo.flt = (val); \ 84 #define _FP_UNPACK_RAW_1_P(fs, X, val) \ argument 86 union _FP_UNION_##fs *_flo = \ 87 (union _FP_UNION_##fs *)(val); \ 98 #define _FP_PACK_RAW_1(fs, val, X) \ argument 100 union _FP_UNION_##fs _flo; \ 109 #define _FP_PACK_RAW_1_P(fs, val, X) \ argument [all …]
|
/Linux-v5.4/fs/fuse/ |
D | virtio_fs.c | 63 struct virtio_fs *fs = vq->vdev->priv; in vq_to_fsvq() local 65 return &fs->vqs[vq->index]; in vq_to_fsvq() 95 static void virtio_fs_put(struct virtio_fs *fs) in virtio_fs_put() argument 97 kref_put(&fs->refcount, release_virtio_fs_obj); in virtio_fs_put() 129 static void virtio_fs_drain_all_queues(struct virtio_fs *fs) in virtio_fs_drain_all_queues() argument 134 for (i = 0; i < fs->nvqs; i++) { in virtio_fs_drain_all_queues() 135 fsvq = &fs->vqs[i]; in virtio_fs_drain_all_queues() 140 static void virtio_fs_start_all_queues(struct virtio_fs *fs) in virtio_fs_start_all_queues() argument 145 for (i = 0; i < fs->nvqs; i++) { in virtio_fs_start_all_queues() 146 fsvq = &fs->vqs[i]; in virtio_fs_start_all_queues() [all …]
|
/Linux-v5.4/Documentation/ABI/testing/ |
D | sysfs-fs-nilfs2 | 2 What: /sys/fs/nilfs2/features/revision 10 What: /sys/fs/nilfs2/features/README 14 Describe attributes of /sys/fs/nilfs2/features group. 16 What: /sys/fs/nilfs2/<device>/revision 24 What: /sys/fs/nilfs2/<device>/blocksize 30 What: /sys/fs/nilfs2/<device>/device_size 36 What: /sys/fs/nilfs2/<device>/free_blocks 42 What: /sys/fs/nilfs2/<device>/uuid 48 What: /sys/fs/nilfs2/<device>/volume_name 54 What: /sys/fs/nilfs2/<device>/README [all …]
|
D | sysfs-fs-f2fs | 1 What: /sys/fs/f2fs/<disk>/gc_max_sleep_time 8 What: /sys/fs/f2fs/<disk>/gc_min_sleep_time 15 What: /sys/fs/f2fs/<disk>/gc_no_gc_sleep_time 22 What: /sys/fs/f2fs/<disk>/gc_idle 28 What: /sys/fs/f2fs/<disk>/reclaim_segments 34 What: /sys/fs/f2fs/<disk>/ipu_policy 40 What: /sys/fs/f2fs/<disk>/min_ipu_util 47 What: /sys/fs/f2fs/<disk>/min_fsync_blocks 54 What: /sys/fs/f2fs/<disk>/min_seq_blocks 62 What: /sys/fs/f2fs/<disk>/min_hot_blocks [all …]
|
/Linux-v5.4/drivers/net/dsa/ |
D | bcm_sf2_cfp.c | 22 struct ethtool_rx_flow_spec fs; member 336 struct ethtool_rx_flow_spec *fs) in bcm_sf2_cfp_ipv4_rule_set() argument 350 switch (fs->flow_type & ~FLOW_EXT) { in bcm_sf2_cfp_ipv4_rule_set() 361 ip_frag = be32_to_cpu(fs->m_ext.data[0]); in bcm_sf2_cfp_ipv4_rule_set() 364 if (fs->location == RX_CLS_LOC_ANY) in bcm_sf2_cfp_ipv4_rule_set() 368 rule_index = fs->location; in bcm_sf2_cfp_ipv4_rule_set() 373 input.fs = fs; in bcm_sf2_cfp_ipv4_rule_set() 460 fs->location = rule_index; in bcm_sf2_cfp_ipv4_rule_set() 548 if (rule->port == port && rule->fs.location == location) in bcm_sf2_cfp_rule_find() 556 struct ethtool_rx_flow_spec *fs) in bcm_sf2_cfp_rule_cmp() argument [all …]
|
/Linux-v5.4/sound/core/ |
D | pcm_iec958.c | 15 unsigned int fs, ws; in create_iec958_consumer() local 22 fs = IEC958_AES3_CON_FS_32000; in create_iec958_consumer() 25 fs = IEC958_AES3_CON_FS_44100; in create_iec958_consumer() 28 fs = IEC958_AES3_CON_FS_48000; in create_iec958_consumer() 31 fs = IEC958_AES3_CON_FS_88200; in create_iec958_consumer() 34 fs = IEC958_AES3_CON_FS_96000; in create_iec958_consumer() 37 fs = IEC958_AES3_CON_FS_176400; in create_iec958_consumer() 40 fs = IEC958_AES3_CON_FS_192000; in create_iec958_consumer() 74 cs[3] = IEC958_AES3_CON_CLOCK_1000PPM | fs; in create_iec958_consumer()
|
/Linux-v5.4/include/linux/ |
D | fs_struct.h | 27 static inline void get_fs_root(struct fs_struct *fs, struct path *root) in get_fs_root() argument 29 spin_lock(&fs->lock); in get_fs_root() 30 *root = fs->root; in get_fs_root() 32 spin_unlock(&fs->lock); in get_fs_root() 35 static inline void get_fs_pwd(struct fs_struct *fs, struct path *pwd) in get_fs_pwd() argument 37 spin_lock(&fs->lock); in get_fs_pwd() 38 *pwd = fs->pwd; in get_fs_pwd() 40 spin_unlock(&fs->lock); in get_fs_pwd()
|
/Linux-v5.4/arch/mips/math-emu/ |
D | cp1emu.c | 150 mips32_insn.fp6_format.fs = insn.mm_fp6_format.fs; in microMIPS32_to_MIPS32() 190 mips32_insn.fp0_format.fs = in microMIPS32_to_MIPS32() 191 insn.mm_fp2_format.fs; in microMIPS32_to_MIPS32() 214 mips32_insn.fp0_format.fs = in microMIPS32_to_MIPS32() 215 insn.mm_fp0_format.fs; in microMIPS32_to_MIPS32() 234 mips32_insn.fp0_format.fs = in microMIPS32_to_MIPS32() 235 insn.mm_fp0_format.fs; in microMIPS32_to_MIPS32() 254 mips32_insn.r_format.rs = insn.mm_fp4_format.fs; in microMIPS32_to_MIPS32() 276 mips32_insn.fp0_format.fs = in microMIPS32_to_MIPS32() 277 insn.mm_fp3_format.fs; in microMIPS32_to_MIPS32() [all …]
|
/Linux-v5.4/drivers/net/ethernet/freescale/dpaa2/ |
D | dpaa2-ethtool.c | 444 static int prep_cls_rule(struct ethtool_rx_flow_spec *fs, void *key, void *mask, in prep_cls_rule() argument 449 switch (fs->flow_type & 0xFF) { in prep_cls_rule() 451 err = prep_eth_rule(&fs->h_u.ether_spec, &fs->m_u.ether_spec, in prep_cls_rule() 455 err = prep_uip_rule(&fs->h_u.usr_ip4_spec, in prep_cls_rule() 456 &fs->m_u.usr_ip4_spec, key, mask, fields); in prep_cls_rule() 459 err = prep_l4_rule(&fs->h_u.tcp_ip4_spec, &fs->m_u.tcp_ip4_spec, in prep_cls_rule() 463 err = prep_l4_rule(&fs->h_u.udp_ip4_spec, &fs->m_u.udp_ip4_spec, in prep_cls_rule() 467 err = prep_l4_rule(&fs->h_u.sctp_ip4_spec, in prep_cls_rule() 468 &fs->m_u.sctp_ip4_spec, key, mask, in prep_cls_rule() 478 if (fs->flow_type & FLOW_EXT) { in prep_cls_rule() [all …]
|
/Linux-v5.4/sound/soc/codecs/ |
D | tfa9879.c | 29 int fs; in tfa9879_hw_params() local 34 fs = TFA9879_I2S_FS_8000; in tfa9879_hw_params() 37 fs = TFA9879_I2S_FS_11025; in tfa9879_hw_params() 40 fs = TFA9879_I2S_FS_12000; in tfa9879_hw_params() 43 fs = TFA9879_I2S_FS_16000; in tfa9879_hw_params() 46 fs = TFA9879_I2S_FS_22050; in tfa9879_hw_params() 49 fs = TFA9879_I2S_FS_24000; in tfa9879_hw_params() 52 fs = TFA9879_I2S_FS_32000; in tfa9879_hw_params() 55 fs = TFA9879_I2S_FS_44100; in tfa9879_hw_params() 58 fs = TFA9879_I2S_FS_48000; in tfa9879_hw_params() [all …]
|
/Linux-v5.4/drivers/net/ethernet/freescale/enetc/ |
D | enetc_ethtool.c | 310 struct ethtool_rx_flow_spec *fs, bool en) in enetc_set_cls_entry() argument 320 switch (fs->flow_type & 0xff) { in enetc_set_cls_entry() 322 l4ip4_h = &fs->h_u.tcp_ip4_spec; in enetc_set_cls_entry() 323 l4ip4_m = &fs->m_u.tcp_ip4_spec; in enetc_set_cls_entry() 326 l4ip4_h = &fs->h_u.udp_ip4_spec; in enetc_set_cls_entry() 327 l4ip4_m = &fs->m_u.udp_ip4_spec; in enetc_set_cls_entry() 330 l4ip4_h = &fs->h_u.sctp_ip4_spec; in enetc_set_cls_entry() 331 l4ip4_m = &fs->m_u.sctp_ip4_spec; in enetc_set_cls_entry() 347 l3ip4_h = &fs->h_u.usr_ip4_spec; in enetc_set_cls_entry() 348 l3ip4_m = &fs->m_u.usr_ip4_spec; in enetc_set_cls_entry() [all …]
|