| /linux/drivers/scsi/libfc/ |
| H A D | fc_fcp.c | 134 struct fc_fcp_pkt *fsp; in fc_fcp_pkt_alloc() local 136 fsp = mempool_alloc(si->scsi_pkt_pool, gfp); in fc_fcp_pkt_alloc() 137 if (fsp) { in fc_fcp_pkt_alloc() 138 memset(fsp, 0, sizeof(*fsp)); in fc_fcp_pkt_alloc() 139 fsp->lp = lport; in fc_fcp_pkt_alloc() 140 fsp->xfer_ddp = FC_XID_UNKNOWN; in fc_fcp_pkt_alloc() 141 refcount_set(&fsp->ref_cnt, 1); in fc_fcp_pkt_alloc() 142 timer_setup(&fsp->timer, NULL, 0); in fc_fcp_pkt_alloc() 143 INIT_LIST_HEAD(&fsp->list); in fc_fcp_pkt_alloc() 144 spin_lock_init(&fsp->scsi_pkt_lock); in fc_fcp_pkt_alloc() [all …]
|
| H A D | fc_libfc.h | 98 void fc_fcp_ddp_setup(struct fc_fcp_pkt *fsp, u16 xid); 99 void fc_fcp_ddp_done(struct fc_fcp_pkt *fsp);
|
| H A D | fc_exch.c | 2186 struct fc_fcp_pkt *fsp = NULL; in fc_exch_seq_send() local 2210 fsp = fr_fsp(fp); in fc_exch_seq_send() 2226 if (fsp) in fc_exch_seq_send() 2227 fc_fcp_ddp_done(fsp); in fc_exch_seq_send()
|
| /linux/drivers/net/ethernet/google/gve/ |
| H A D | gve_flow_rule.c | 11 int gve_fill_ethtool_flow_spec(struct ethtool_rx_flow_spec *fsp, in gve_fill_ethtool_flow_spec() argument 31 fsp->flow_type = flow_type_lut[be16_to_cpu(flow_rule->flow_type)]; in gve_fill_ethtool_flow_spec() 33 memset(&fsp->h_u, 0, sizeof(fsp->h_u)); in gve_fill_ethtool_flow_spec() 34 memset(&fsp->h_ext, 0, sizeof(fsp->h_ext)); in gve_fill_ethtool_flow_spec() 35 memset(&fsp->m_u, 0, sizeof(fsp->m_u)); in gve_fill_ethtool_flow_spec() 36 memset(&fsp->m_ext, 0, sizeof(fsp->m_ext)); in gve_fill_ethtool_flow_spec() 38 switch (fsp->flow_type) { in gve_fill_ethtool_flow_spec() 42 fsp->h_u.tcp_ip4_spec.ip4src = flow_rule->key.src_ip[0]; in gve_fill_ethtool_flow_spec() 43 fsp->h_u.tcp_ip4_spec.ip4dst = flow_rule->key.dst_ip[0]; in gve_fill_ethtool_flow_spec() 44 fsp->h_u.tcp_ip4_spec.psrc = flow_rule->key.src_port; in gve_fill_ethtool_flow_spec() [all …]
|
| /linux/drivers/net/ethernet/aquantia/atlantic/ |
| H A D | aq_filters.c | 9 aq_rule_is_approve(struct ethtool_rx_flow_spec *fsp) in aq_rule_is_approve() argument 11 if (fsp->flow_type & FLOW_MAC_EXT) in aq_rule_is_approve() 14 switch (fsp->flow_type & ~FLOW_EXT) { in aq_rule_is_approve() 26 switch (fsp->h_u.usr_ip4_spec.proto) { in aq_rule_is_approve() 36 switch (fsp->h_u.usr_ip6_spec.l4_proto) { in aq_rule_is_approve() 68 struct ethtool_rx_flow_spec *fsp) in aq_rule_already_exists() argument 76 if (rule->aq_fsp.location == fsp->location) in aq_rule_already_exists() 78 if (aq_match_filter(&rule->aq_fsp, fsp)) { in aq_rule_already_exists() 90 struct ethtool_rx_flow_spec *fsp) in aq_check_approve_fl3l4() argument 95 if (fsp->location < AQ_RX_FIRST_LOC_FL3L4 || in aq_check_approve_fl3l4() [all …]
|
| /linux/drivers/net/ethernet/engleder/ |
| H A D | tsnep_rxnfc.c | 97 struct ethtool_rx_flow_spec *fsp = &cmd->fs; in tsnep_rxnfc_get_rule() local 104 rule = tsnep_get_rule(adapter, fsp->location); in tsnep_rxnfc_get_rule() 111 fsp->flow_type = ETHER_FLOW; in tsnep_rxnfc_get_rule() 112 fsp->ring_cookie = rule->queue_index; in tsnep_rxnfc_get_rule() 115 fsp->h_u.ether_spec.h_proto = htons(rule->filter.ether_type); in tsnep_rxnfc_get_rule() 116 fsp->m_u.ether_spec.h_proto = ETHER_TYPE_FULL_MASK; in tsnep_rxnfc_get_rule() 172 const struct ethtool_rx_flow_spec *fsp) in tsnep_rxnfc_init_rule() argument 176 rule->queue_index = fsp->ring_cookie; in tsnep_rxnfc_init_rule() 177 rule->location = fsp->location; in tsnep_rxnfc_init_rule() 180 rule->filter.ether_type = ntohs(fsp->h_u.ether_spec.h_proto); in tsnep_rxnfc_init_rule() [all …]
|
| /linux/drivers/net/ethernet/marvell/octeontx2/nic/ |
| H A D | otx2_flows.c | 536 static int otx2_prepare_ipv4_flow(struct ethtool_rx_flow_spec *fsp, in otx2_prepare_ipv4_flow() argument 540 struct ethtool_usrip4_spec *ipv4_usr_mask = &fsp->m_u.usr_ip4_spec; in otx2_prepare_ipv4_flow() 541 struct ethtool_usrip4_spec *ipv4_usr_hdr = &fsp->h_u.usr_ip4_spec; in otx2_prepare_ipv4_flow() 542 struct ethtool_tcpip4_spec *ipv4_l4_mask = &fsp->m_u.tcp_ip4_spec; in otx2_prepare_ipv4_flow() 543 struct ethtool_tcpip4_spec *ipv4_l4_hdr = &fsp->h_u.tcp_ip4_spec; in otx2_prepare_ipv4_flow() 544 struct ethtool_ah_espip4_spec *ah_esp_hdr = &fsp->h_u.ah_ip4_spec; in otx2_prepare_ipv4_flow() 545 struct ethtool_ah_espip4_spec *ah_esp_mask = &fsp->m_u.ah_ip4_spec; in otx2_prepare_ipv4_flow() 695 static int otx2_prepare_ipv6_flow(struct ethtool_rx_flow_spec *fsp, in otx2_prepare_ipv6_flow() argument 699 struct ethtool_usrip6_spec *ipv6_usr_mask = &fsp->m_u.usr_ip6_spec; in otx2_prepare_ipv6_flow() 700 struct ethtool_usrip6_spec *ipv6_usr_hdr = &fsp->h_u.usr_ip6_spec; in otx2_prepare_ipv6_flow() [all …]
|
| /linux/drivers/net/ethernet/intel/igc/ |
| H A D | igc_ethtool.c | 966 struct ethtool_rx_flow_spec *fsp = &cmd->fs; in igc_ethtool_get_nfc_rule() local 973 rule = igc_get_nfc_rule(adapter, fsp->location); in igc_ethtool_get_nfc_rule() 977 fsp->flow_type = ETHER_FLOW; in igc_ethtool_get_nfc_rule() 978 fsp->ring_cookie = rule->action; in igc_ethtool_get_nfc_rule() 981 fsp->h_u.ether_spec.h_proto = htons(rule->filter.etype); in igc_ethtool_get_nfc_rule() 982 fsp->m_u.ether_spec.h_proto = ETHER_TYPE_FULL_MASK; in igc_ethtool_get_nfc_rule() 986 fsp->flow_type |= FLOW_EXT; in igc_ethtool_get_nfc_rule() 987 fsp->h_ext.vlan_etype = htons(rule->filter.vlan_etype); in igc_ethtool_get_nfc_rule() 988 fsp->m_ext.vlan_etype = ETHER_TYPE_FULL_MASK; in igc_ethtool_get_nfc_rule() 992 fsp->flow_type |= FLOW_EXT; in igc_ethtool_get_nfc_rule() [all …]
|
| /linux/drivers/net/ethernet/cisco/enic/ |
| H A D | enic_ethtool.c | 496 struct ethtool_rx_flow_spec *fsp = in enic_grxclsrule() local 500 n = htbl_fltr_search(enic, (u16)fsp->location); in enic_grxclsrule() 505 fsp->flow_type = TCP_V4_FLOW; in enic_grxclsrule() 508 fsp->flow_type = UDP_V4_FLOW; in enic_grxclsrule() 514 fsp->h_u.tcp_ip4_spec.ip4src = flow_get_u32_src(&n->keys); in enic_grxclsrule() 515 fsp->m_u.tcp_ip4_spec.ip4src = (__u32)~0; in enic_grxclsrule() 517 fsp->h_u.tcp_ip4_spec.ip4dst = flow_get_u32_dst(&n->keys); in enic_grxclsrule() 518 fsp->m_u.tcp_ip4_spec.ip4dst = (__u32)~0; in enic_grxclsrule() 520 fsp->h_u.tcp_ip4_spec.psrc = n->keys.ports.src; in enic_grxclsrule() 521 fsp->m_u.tcp_ip4_spec.psrc = (__u16)~0; in enic_grxclsrule() [all …]
|
| /linux/tools/perf/util/ |
| H A D | probe-finder.c | 651 struct find_scope_param *fsp = data; in find_best_scope_cb() local 656 if (fsp->file) { in find_best_scope_cb() 658 if (!file || strcmp(fsp->file, file) != 0) in find_best_scope_cb() 662 if (fsp->function) { in find_best_scope_cb() 663 if (die_match_name(fn_die, fsp->function)) { in find_best_scope_cb() 664 memcpy(fsp->die_mem, fn_die, sizeof(Dwarf_Die)); in find_best_scope_cb() 665 fsp->found = true; in find_best_scope_cb() 671 if (lno < fsp->line && fsp->diff > fsp->line - lno) { in find_best_scope_cb() 673 fsp->diff = fsp->line - lno; in find_best_scope_cb() 674 memcpy(fsp->die_mem, fn_die, sizeof(Dwarf_Die)); in find_best_scope_cb() [all …]
|
| /linux/drivers/net/ethernet/qlogic/qede/ |
| H A D | qede_filter.c | 1317 struct ethtool_rx_flow_spec *fsp = &cmd->fs; in qede_get_cls_rule_entry() local 1331 fsp->location); in qede_get_cls_rule_entry() 1334 fsp->location); in qede_get_cls_rule_entry() 1341 fsp->flow_type = TCP_V4_FLOW; in qede_get_cls_rule_entry() 1343 fsp->flow_type = UDP_V4_FLOW; in qede_get_cls_rule_entry() 1345 fsp->h_u.tcp_ip4_spec.psrc = fltr->tuple.src_port; in qede_get_cls_rule_entry() 1346 fsp->h_u.tcp_ip4_spec.pdst = fltr->tuple.dst_port; in qede_get_cls_rule_entry() 1347 fsp->h_u.tcp_ip4_spec.ip4src = fltr->tuple.src_ipv4; in qede_get_cls_rule_entry() 1348 fsp->h_u.tcp_ip4_spec.ip4dst = fltr->tuple.dst_ipv4; in qede_get_cls_rule_entry() 1351 fsp->flow_type = TCP_V6_FLOW; in qede_get_cls_rule_entry() [all …]
|
| /linux/drivers/net/ethernet/intel/igb/ |
| H A D | igb_ethtool.c | 2430 struct ethtool_rx_flow_spec *fsp = &cmd->fs; in igb_get_ethtool_nfc_entry() local 2437 if (fsp->location <= rule->sw_idx) in igb_get_ethtool_nfc_entry() 2441 if (!rule || fsp->location != rule->sw_idx) in igb_get_ethtool_nfc_entry() 2445 fsp->flow_type = ETHER_FLOW; in igb_get_ethtool_nfc_entry() 2446 fsp->ring_cookie = rule->action; in igb_get_ethtool_nfc_entry() 2448 fsp->h_u.ether_spec.h_proto = rule->filter.etype; in igb_get_ethtool_nfc_entry() 2449 fsp->m_u.ether_spec.h_proto = ETHER_TYPE_FULL_MASK; in igb_get_ethtool_nfc_entry() 2452 fsp->flow_type |= FLOW_EXT; in igb_get_ethtool_nfc_entry() 2453 fsp->h_ext.vlan_tci = rule->filter.vlan_tci; in igb_get_ethtool_nfc_entry() 2454 fsp->m_ext.vlan_tci = htons(VLAN_PRIO_MASK); in igb_get_ethtool_nfc_entry() [all …]
|
| /linux/include/scsi/ |
| H A D | libfc.h | 364 struct fc_fcp_pkt *fsp; member 899 static inline bool fc_fcp_is_read(const struct fc_fcp_pkt *fsp) in fc_fcp_is_read() argument 901 if (fsp && fsp->cmd) in fc_fcp_is_read() 902 return fsp->cmd->sc_data_direction == DMA_FROM_DEVICE; in fc_fcp_is_read()
|
| /linux/drivers/net/ethernet/sun/ |
| H A D | niu.c | 7118 struct ethtool_rx_flow_spec *fsp) in niu_get_ip4fs_from_tcam_key() argument 7124 fsp->h_u.tcp_ip4_spec.ip4src = cpu_to_be32(tmp); in niu_get_ip4fs_from_tcam_key() 7127 fsp->h_u.tcp_ip4_spec.ip4dst = cpu_to_be32(tmp); in niu_get_ip4fs_from_tcam_key() 7130 fsp->m_u.tcp_ip4_spec.ip4src = cpu_to_be32(tmp); in niu_get_ip4fs_from_tcam_key() 7133 fsp->m_u.tcp_ip4_spec.ip4dst = cpu_to_be32(tmp); in niu_get_ip4fs_from_tcam_key() 7135 fsp->h_u.tcp_ip4_spec.tos = (tp->key[2] & TCAM_V4KEY2_TOS) >> in niu_get_ip4fs_from_tcam_key() 7137 fsp->m_u.tcp_ip4_spec.tos = (tp->key_mask[2] & TCAM_V4KEY2_TOS) >> in niu_get_ip4fs_from_tcam_key() 7140 switch (fsp->flow_type) { in niu_get_ip4fs_from_tcam_key() 7146 fsp->h_u.tcp_ip4_spec.psrc = cpu_to_be16(prt); in niu_get_ip4fs_from_tcam_key() 7150 fsp->h_u.tcp_ip4_spec.pdst = cpu_to_be16(prt); in niu_get_ip4fs_from_tcam_key() [all …]
|
| /linux/drivers/infiniband/hw/cxgb4/ |
| H A D | restrack.c | 139 struct t4_swsqe *fsp = NULL, *lsp = NULL; in c4iw_fill_res_qp_entry() local 162 fsp = &first_sqe; in c4iw_fill_res_qp_entry() 176 if (fill_swsqes(msg, &wq.sq, first_sq_idx, fsp, last_sq_idx, lsp)) in c4iw_fill_res_qp_entry()
|
| /linux/drivers/net/ethernet/mediatek/ |
| H A D | mtk_eth_soc.c | 3072 struct ethtool_rx_flow_spec *fsp = in mtk_hwlro_add_ipaddr() local 3078 if ((fsp->flow_type != TCP_V4_FLOW) || in mtk_hwlro_add_ipaddr() 3079 (!fsp->h_u.tcp_ip4_spec.ip4dst) || in mtk_hwlro_add_ipaddr() 3080 (fsp->location > 1)) in mtk_hwlro_add_ipaddr() 3083 mac->hwlro_ip[fsp->location] = htonl(fsp->h_u.tcp_ip4_spec.ip4dst); in mtk_hwlro_add_ipaddr() 3084 hwlro_idx = (mac->id * MTK_MAX_LRO_IP_CNT) + fsp->location; in mtk_hwlro_add_ipaddr() 3088 mtk_hwlro_val_ipaddr(eth, hwlro_idx, mac->hwlro_ip[fsp->location]); in mtk_hwlro_add_ipaddr() 3096 struct ethtool_rx_flow_spec *fsp = in mtk_hwlro_del_ipaddr() local 3102 if (fsp->location > 1) in mtk_hwlro_del_ipaddr() 3105 mac->hwlro_ip[fsp->location] = 0; in mtk_hwlro_del_ipaddr() [all …]
|
| /linux/drivers/scsi/ |
| H A D | scsi_debug.c | 4244 u8 *fsp; in do_device_access() local 4269 fsp = sip->storep; in do_device_access() 4279 fsp + (block * sdebug_sector_size), in do_device_access() 4317 u8 *fsp = sip->storep; in comp_write_worker() local 4323 res = !memcmp(fsp + (block * lb_size), arr, (num - rest) * lb_size); in comp_write_worker() 4327 res = memcmp(fsp, arr + ((num - rest) * lb_size), in comp_write_worker() 4334 memcpy(fsp + (block * lb_size), arr, (num - rest) * lb_size); in comp_write_worker() 4336 memcpy(fsp, arr + ((num - rest) * lb_size), rest * lb_size); in comp_write_worker() 4839 u8 *fsp = sip->storep; in unmap_region() local 4849 memset(fsp + lba * sdebug_sector_size, in unmap_region() [all …]
|