Searched refs:dest_idx (Results 1 – 5 of 5) sorted by relevance
/linux-5.19.10/drivers/net/ethernet/microchip/lan966x/ |
D | lan966x_mac.c | 338 u8 *mac, u16 *vid, u32 *dest_idx) in lan966x_mac_process_raw_entry() argument 348 *dest_idx = ANA_MACACCESS_DEST_IDX_GET(raw_entry->maca); in lan966x_mac_process_raw_entry() 357 u32 dest_idx; in lan966x_mac_irq_process() local 379 mac, &vid, &dest_idx); in lan966x_mac_irq_process() 380 if (WARN_ON(dest_idx >= lan966x->num_phys_ports)) in lan966x_mac_irq_process() 388 mac_entry->port_index == dest_idx) { in lan966x_mac_irq_process() 432 mac, &vid, &dest_idx); in lan966x_mac_irq_process() 433 if (WARN_ON(dest_idx >= lan966x->num_phys_ports)) in lan966x_mac_irq_process() 437 mac_entry = lan966x_mac_find_entry(lan966x, mac, vid, dest_idx); in lan966x_mac_irq_process() 443 mac_entry = lan966x_mac_alloc_entry(mac, vid, dest_idx); in lan966x_mac_irq_process() [all …]
|
/linux-5.19.10/fs/pstore/ |
D | ftrace.c | 161 size_t dest_idx = 0, src_idx = 0, merged_idx = 0; in pstore_ftrace_combine_log() local 182 if (pstore_ftrace_read_timestamp(&drec[dest_idx]) < in pstore_ftrace_combine_log() 184 mrec[merged_idx++] = drec[dest_idx++]; in pstore_ftrace_combine_log() 193 mrec[merged_idx++] = drec[dest_idx++]; in pstore_ftrace_combine_log()
|
/linux-5.19.10/drivers/net/ethernet/broadcom/ |
D | b44.c | 661 int dest_idx; in b44_alloc_rx_skb() local 667 dest_idx = dest_idx_unmasked & (B44_RX_RING_SIZE - 1); in b44_alloc_rx_skb() 668 map = &bp->rx_buffers[dest_idx]; in b44_alloc_rx_skb() 714 if (dest_idx == (B44_RX_RING_SIZE - 1)) in b44_alloc_rx_skb() 717 dp = &bp->rx_ring[dest_idx]; in b44_alloc_rx_skb() 723 dest_idx * sizeof(*dp), in b44_alloc_rx_skb() 734 int dest_idx; in b44_recycle_rx() local 737 dest_idx = dest_idx_unmasked & (B44_RX_RING_SIZE - 1); in b44_recycle_rx() 738 dest_desc = &bp->rx_ring[dest_idx]; in b44_recycle_rx() 739 dest_map = &bp->rx_buffers[dest_idx]; in b44_recycle_rx() [all …]
|
D | tg3.c | 6672 int skb_size, data_size, dest_idx; in tg3_alloc_rx_data() local 6676 dest_idx = dest_idx_unmasked & tp->rx_std_ring_mask; in tg3_alloc_rx_data() 6677 desc = &tpr->rx_std[dest_idx]; in tg3_alloc_rx_data() 6678 map = &tpr->rx_std_buffers[dest_idx]; in tg3_alloc_rx_data() 6683 dest_idx = dest_idx_unmasked & tp->rx_jmb_ring_mask; in tg3_alloc_rx_data() 6684 desc = &tpr->rx_jmb[dest_idx].std; in tg3_alloc_rx_data() 6685 map = &tpr->rx_jmb_buffers[dest_idx]; in tg3_alloc_rx_data() 6740 int dest_idx; in tg3_recycle_rx() local 6744 dest_idx = dest_idx_unmasked & tp->rx_std_ring_mask; in tg3_recycle_rx() 6745 dest_desc = &dpr->rx_std[dest_idx]; in tg3_recycle_rx() [all …]
|
/linux-5.19.10/drivers/net/ethernet/mellanox/mlx5/core/ |
D | eswitch_offloads.c | 422 int attr_idx, int dest_idx, bool pkt_reformat) in esw_setup_vport_dest() argument 424 dest[dest_idx].type = MLX5_FLOW_DESTINATION_TYPE_VPORT; in esw_setup_vport_dest() 425 dest[dest_idx].vport.num = esw_attr->dests[attr_idx].rep->vport; in esw_setup_vport_dest() 427 dest[dest_idx].vport.vhca_id = in esw_setup_vport_dest() 429 dest[dest_idx].vport.flags |= MLX5_FLOW_DEST_VPORT_VHCA_ID; in esw_setup_vport_dest() 430 if (dest[dest_idx].vport.num == MLX5_VPORT_UPLINK && in esw_setup_vport_dest() 432 dest[dest_idx].type = MLX5_FLOW_DESTINATION_TYPE_UPLINK; in esw_setup_vport_dest() 439 dest[dest_idx].vport.flags |= MLX5_FLOW_DEST_VPORT_REFORMAT_ID; in esw_setup_vport_dest() 440 dest[dest_idx].vport.pkt_reformat = esw_attr->dests[attr_idx].pkt_reformat; in esw_setup_vport_dest()
|