/Linux-v4.19/drivers/isdn/hisax/ |
D | fsm.c | 92 struct FsmTimer *ft = from_timer(ft, t, tl); in FsmExpireTimer() local 94 if (ft->fi->debug) in FsmExpireTimer() 95 ft->fi->printdebug(ft->fi, "FsmExpireTimer %lx", (long) ft); in FsmExpireTimer() 97 FsmEvent(ft->fi, ft->event, ft->arg); in FsmExpireTimer() 101 FsmInitTimer(struct FsmInst *fi, struct FsmTimer *ft) in FsmInitTimer() argument 103 ft->fi = fi; in FsmInitTimer() 105 if (ft->fi->debug) in FsmInitTimer() 106 ft->fi->printdebug(ft->fi, "FsmInitTimer %lx", (long) ft); in FsmInitTimer() 108 timer_setup(&ft->tl, FsmExpireTimer, 0); in FsmInitTimer() 112 FsmDelTimer(struct FsmTimer *ft, int where) in FsmDelTimer() argument [all …]
|
D | fsm.h | 54 void FsmInitTimer(struct FsmInst *fi, struct FsmTimer *ft); 55 int FsmAddTimer(struct FsmTimer *ft, int millisec, int event, 57 void FsmRestartTimer(struct FsmTimer *ft, int millisec, int event, 59 void FsmDelTimer(struct FsmTimer *ft, int where);
|
/Linux-v4.19/drivers/isdn/mISDN/ |
D | fsm.c | 107 struct FsmTimer *ft = from_timer(ft, t, tl); in FsmExpireTimer() local 109 if (ft->fi->debug) in FsmExpireTimer() 110 ft->fi->printdebug(ft->fi, "FsmExpireTimer %lx", (long) ft); in FsmExpireTimer() 112 mISDN_FsmEvent(ft->fi, ft->event, ft->arg); in FsmExpireTimer() 116 mISDN_FsmInitTimer(struct FsmInst *fi, struct FsmTimer *ft) in mISDN_FsmInitTimer() argument 118 ft->fi = fi; in mISDN_FsmInitTimer() 120 if (ft->fi->debug) in mISDN_FsmInitTimer() 121 ft->fi->printdebug(ft->fi, "mISDN_FsmInitTimer %lx", (long) ft); in mISDN_FsmInitTimer() 123 timer_setup(&ft->tl, FsmExpireTimer, 0); in mISDN_FsmInitTimer() 128 mISDN_FsmDelTimer(struct FsmTimer *ft, int where) in mISDN_FsmDelTimer() argument [all …]
|
/Linux-v4.19/drivers/net/ethernet/mellanox/mlx5/core/ |
D | en_fs.c | 165 struct mlx5_flow_table *ft = priv->fs.vlan.ft.t; in __mlx5e_add_vlan_rule() local 172 dest.ft = priv->fs.l2.ft.t; in __mlx5e_add_vlan_rule() 220 *rule_p = mlx5_add_flow_rules(ft, spec, &flow_act, &dest, 1); in __mlx5e_add_vlan_rule() 645 static void mlx5e_destroy_groups(struct mlx5e_flow_table *ft) in mlx5e_destroy_groups() argument 649 for (i = ft->num_groups - 1; i >= 0; i--) { in mlx5e_destroy_groups() 650 if (!IS_ERR_OR_NULL(ft->g[i])) in mlx5e_destroy_groups() 651 mlx5_destroy_flow_group(ft->g[i]); in mlx5e_destroy_groups() 652 ft->g[i] = NULL; in mlx5e_destroy_groups() 654 ft->num_groups = 0; in mlx5e_destroy_groups() 662 void mlx5e_destroy_flow_table(struct mlx5e_flow_table *ft) in mlx5e_destroy_flow_table() argument [all …]
|
D | fs_core.c | 373 struct mlx5_flow_table *ft; in del_hw_flow_table() local 377 fs_get_obj(ft, node); in del_hw_flow_table() 378 dev = get_dev(&ft->node); in del_hw_flow_table() 379 root = find_root(&ft->node); in del_hw_flow_table() 382 err = root->cmds->destroy_flow_table(dev, ft); in del_hw_flow_table() 390 struct mlx5_flow_table *ft; in del_sw_flow_table() local 393 fs_get_obj(ft, node); in del_sw_flow_table() 395 rhltable_destroy(&ft->fgs_hash); in del_sw_flow_table() 396 fs_get_obj(prio, ft->node.parent); in del_sw_flow_table() 398 kfree(ft); in del_sw_flow_table() [all …]
|
D | fs_cmd.c | 43 struct mlx5_flow_table *ft, in mlx5_cmd_stub_update_root_ft() argument 63 struct mlx5_flow_table *ft) in mlx5_cmd_stub_destroy_flow_table() argument 69 struct mlx5_flow_table *ft, in mlx5_cmd_stub_modify_flow_table() argument 76 struct mlx5_flow_table *ft, in mlx5_cmd_stub_create_flow_group() argument 84 struct mlx5_flow_table *ft, in mlx5_cmd_stub_destroy_flow_group() argument 91 struct mlx5_flow_table *ft, in mlx5_cmd_stub_create_fte() argument 99 struct mlx5_flow_table *ft, in mlx5_cmd_stub_update_fte() argument 108 struct mlx5_flow_table *ft, in mlx5_cmd_stub_delete_fte() argument 115 struct mlx5_flow_table *ft, u32 underlay_qpn, in mlx5_cmd_update_root_ft() argument 127 MLX5_SET(set_flow_table_root_in, in, table_type, ft->type); in mlx5_cmd_update_root_ft() [all …]
|
D | en_arfs.c | 134 dest.ft = priv->fs.arfs.arfs_tables[i].ft.t; in mlx5e_arfs_enable() 153 mlx5e_destroy_flow_table(&arfs_t->ft); in arfs_destroy_table() 166 if (!IS_ERR_OR_NULL(priv->fs.arfs.arfs_tables[i].ft.t)) in mlx5e_arfs_destroy_tables() 199 arfs_t->default_rule = mlx5_add_flow_rules(arfs_t->ft.t, spec, in arfs_add_default_rule() 218 static int arfs_create_groups(struct mlx5e_flow_table *ft, in arfs_create_groups() argument 228 ft->g = kcalloc(MLX5E_ARFS_NUM_GROUPS, in arfs_create_groups() 229 sizeof(*ft->g), GFP_KERNEL); in arfs_create_groups() 231 if (!in || !ft->g) { in arfs_create_groups() 232 kvfree(ft->g); in arfs_create_groups() 283 ft->g[ft->num_groups] = mlx5_create_flow_group(ft->t, in); in arfs_create_groups() [all …]
|
D | fs_cmd.h | 47 struct mlx5_flow_table *ft); 50 struct mlx5_flow_table *ft, 54 struct mlx5_flow_table *ft, 59 struct mlx5_flow_table *ft, 63 struct mlx5_flow_table *ft, 68 struct mlx5_flow_table *ft, 74 struct mlx5_flow_table *ft, 78 struct mlx5_flow_table *ft,
|
D | en_fs_ethtool.c | 46 mlx5_destroy_flow_table(eth_ft->ft); in put_flow_table() 47 eth_ft->ft = NULL; in put_flow_table() 61 struct mlx5_flow_table *ft; in get_flow_table() local 92 if (eth_ft->ft) in get_flow_table() 103 ft = mlx5_create_auto_grouped_flow_table(ns, prio, in get_flow_table() 106 if (IS_ERR(ft)) in get_flow_table() 107 return (void *)ft; in get_flow_table() 109 eth_ft->ft = ft; in get_flow_table() 397 struct mlx5_flow_table *ft, in add_ethtool_flow_rule() argument 430 rule = mlx5_add_flow_rules(ft, spec, &flow_act, dst, dst ? 1 : 0); in add_ethtool_flow_rule() [all …]
|
/Linux-v4.19/drivers/scsi/fcoe/ |
D | fcoe_transport.c | 524 struct fcoe_transport *ft = NULL; in fcoe_transport_lookup() local 526 list_for_each_entry(ft, &fcoe_transports, list) in fcoe_transport_lookup() 527 if (ft->match && ft->match(netdev)) in fcoe_transport_lookup() 528 return ft; in fcoe_transport_lookup() 538 int fcoe_transport_attach(struct fcoe_transport *ft) in fcoe_transport_attach() argument 543 if (ft->attached) { in fcoe_transport_attach() 545 ft->name); in fcoe_transport_attach() 551 if (strcmp(ft->name, FCOE_TRANSPORT_DEFAULT)) in fcoe_transport_attach() 552 list_add(&ft->list, &fcoe_transports); in fcoe_transport_attach() 554 list_add_tail(&ft->list, &fcoe_transports); in fcoe_transport_attach() [all …]
|
/Linux-v4.19/arch/mips/math-emu/ |
D | cp1emu.c | 161 mips32_insn.fp6_format.ft = insn.mm_fp6_format.ft; in microMIPS32_to_MIPS32() 200 mips32_insn.fp0_format.ft = in microMIPS32_to_MIPS32() 224 mips32_insn.fp0_format.ft = in microMIPS32_to_MIPS32() 225 insn.mm_fp0_format.ft; in microMIPS32_to_MIPS32() 244 mips32_insn.fp0_format.ft = in microMIPS32_to_MIPS32() 245 insn.mm_fp0_format.ft; in microMIPS32_to_MIPS32() 287 mips32_insn.fp0_format.ft = 0; in microMIPS32_to_MIPS32() 311 mips32_insn.fp0_format.ft = 0; in microMIPS32_to_MIPS32() 351 mips32_insn.fp0_format.ft = 0; in microMIPS32_to_MIPS32() 370 mips32_insn.fp0_format.ft = 0; in microMIPS32_to_MIPS32() [all …]
|
/Linux-v4.19/samples/statx/ |
D | test-statx.c | 73 char buffer[256], ft = '?'; in dump_statx() local 85 case S_IFIFO: printf(" FIFO\n"); ft = 'p'; break; in dump_statx() 86 case S_IFCHR: printf(" character special file\n"); ft = 'c'; break; in dump_statx() 87 case S_IFDIR: printf(" directory\n"); ft = 'd'; break; in dump_statx() 88 case S_IFBLK: printf(" block special file\n"); ft = 'b'; break; in dump_statx() 89 case S_IFREG: printf(" regular file\n"); ft = '-'; break; in dump_statx() 90 case S_IFLNK: printf(" symbolic link\n"); ft = 'l'; break; in dump_statx() 91 case S_IFSOCK: printf(" socket\n"); ft = 's'; break; in dump_statx() 120 ft, in dump_statx()
|
/Linux-v4.19/net/netfilter/ |
D | nf_flow_table_core.c | 29 struct flow_offload_tuple *ft = &flow->tuplehash[dir].tuple; in flow_offload_fill_dir() local 33 ft->dir = dir; in flow_offload_fill_dir() 37 ft->src_v4 = ctt->src.u3.in; in flow_offload_fill_dir() 38 ft->dst_v4 = ctt->dst.u3.in; in flow_offload_fill_dir() 39 ft->mtu = ip_dst_mtu_maybe_forward(dst, true); in flow_offload_fill_dir() 42 ft->src_v6 = ctt->src.u3.in6; in flow_offload_fill_dir() 43 ft->dst_v6 = ctt->dst.u3.in6; in flow_offload_fill_dir() 44 ft->mtu = ip6_dst_mtu_forward(dst); in flow_offload_fill_dir() 48 ft->l3proto = ctt->src.l3num; in flow_offload_fill_dir() 49 ft->l4proto = ctt->dst.protonum; in flow_offload_fill_dir() [all …]
|
/Linux-v4.19/drivers/net/ethernet/mellanox/mlx5/core/fpga/ |
D | ipsec.c | 987 struct mlx5_flow_table *ft, in fpga_ipsec_fs_create_flow_group() argument 993 struct mlx5_flow_table *ft, u32 *in, in fpga_ipsec_fs_create_flow_group() 1004 return create_flow_group(dev, ft, in, group_id); in fpga_ipsec_fs_create_flow_group() 1011 return create_flow_group(dev, ft, in, group_id); in fpga_ipsec_fs_create_flow_group() 1020 ret = create_flow_group(dev, ft, in, group_id); in fpga_ipsec_fs_create_flow_group() 1029 struct mlx5_flow_table *ft, in fpga_ipsec_fs_create_fte() argument 1035 struct mlx5_flow_table *ft, in fpga_ipsec_fs_create_fte() 1050 return create_fte(dev, ft, fg, fte); in fpga_ipsec_fs_create_fte() 1067 ret = create_fte(dev, ft, fg, fte); in fpga_ipsec_fs_create_fte() 1079 struct mlx5_flow_table *ft, in fpga_ipsec_fs_update_fte() argument [all …]
|
/Linux-v4.19/drivers/net/ethernet/mellanox/mlx5/core/en/ |
D | fs.h | 37 struct mlx5e_flow_table ft; member 49 struct mlx5e_flow_table ft; member 84 struct mlx5e_flow_table ft; member 103 struct mlx5_flow_table *ft; member 132 struct mlx5e_flow_table ft; member 203 void mlx5e_destroy_flow_table(struct mlx5e_flow_table *ft);
|
/Linux-v4.19/include/linux/mlx5/ |
D | fs.h | 93 struct mlx5_flow_table *ft; member 138 int mlx5_destroy_flow_table(struct mlx5_flow_table *ft); 147 mlx5_create_flow_group(struct mlx5_flow_table *ft, u32 *in); 177 mlx5_add_flow_rules(struct mlx5_flow_table *ft,
|
/Linux-v4.19/arch/sparc/kernel/ |
D | time_64.c | 644 struct freq_table *ft = &per_cpu(sparc64_freq_table, cpu); in sparc64_get_clock_tick() local 646 if (ft->clock_tick_ref) in sparc64_get_clock_tick() 647 return ft->clock_tick_ref; in sparc64_get_clock_tick() 659 struct freq_table *ft = &per_cpu(sparc64_freq_table, cpu); in sparc64_cpufreq_notifier() local 661 if (!ft->ref_freq) { in sparc64_cpufreq_notifier() 662 ft->ref_freq = freq->old; in sparc64_cpufreq_notifier() 663 ft->clock_tick_ref = cpu_data(cpu).clock_tick; in sparc64_cpufreq_notifier() 668 cpufreq_scale(ft->clock_tick_ref, in sparc64_cpufreq_notifier() 669 ft->ref_freq, in sparc64_cpufreq_notifier()
|
/Linux-v4.19/tools/include/uapi/linux/ |
D | erspan.h | 25 ft:5, member 33 ft:5, member
|
/Linux-v4.19/include/uapi/linux/ |
D | erspan.h | 25 ft:5, member 33 ft:5, member
|
/Linux-v4.19/drivers/media/rc/img-ir/ |
D | img-ir-hw.c | 99 timings->ft.ft_min = (timings->ft.ft_min*unit + 999)/1000; in img_ir_timings_preprocess() 128 if (!timings->ft.ft_min) in img_ir_timings_defaults() 129 timings->ft.ft_min = defaults->ft.ft_min; in img_ir_timings_defaults() 311 regs->ft = img_ir_free_timing(&timings->ft, clock_hz); in img_ir_timings_convert() 383 u32 ft = regs->ft; in img_ir_write_timings() local 385 ft = img_ir_free_timing_dynamic(regs->ft, &hw->filters[type]); in img_ir_write_timings() 392 img_ir_write(priv, IMG_IR_FREE_SYMB_TIMING, ft); in img_ir_write_timings() 394 regs->ldr, regs->s00, regs->s01, regs->s10, regs->s11, ft); in img_ir_write_timings()
|
D | img-ir-sanyo.c | 107 .ft = { 121 .ft = {
|
D | img-ir-hw.h | 102 struct img_ir_free_timing ft; member 129 u32 ldr, s00, s01, s10, s11, ft; member
|
/Linux-v4.19/include/scsi/ |
D | libfcoe.h | 400 struct fcoe_transport *ft; member 404 int fcoe_transport_attach(struct fcoe_transport *ft); 405 int fcoe_transport_detach(struct fcoe_transport *ft);
|
/Linux-v4.19/include/net/netfilter/ |
D | nf_flow_table.h | 17 int (*init)(struct nf_flowtable *ft); 18 void (*free)(struct nf_flowtable *ft);
|
/Linux-v4.19/drivers/net/wireless/ath/wcn36xx/ |
D | txrx.h | 66 u32 ft:1; member 128 u32 ft:1; member
|