Searched refs:m_table (Results 1 – 10 of 10) sorted by relevance
| /dpdk/examples/l3fwd/ |
| H A D | l3fwd_common.h | 213 qconf->tx_mbufs[port].m_table[len + j] = m[j]; in send_packetsx4() 217 qconf->tx_mbufs[port].m_table[len + j] = m[j]; in send_packetsx4() 221 qconf->tx_mbufs[port].m_table[len + j] = m[j]; in send_packetsx4() 225 qconf->tx_mbufs[port].m_table[len + j] = m[j]; in send_packetsx4() 246 qconf->tx_mbufs[port].m_table[j] = m[n + j]; in send_packetsx4() 250 qconf->tx_mbufs[port].m_table[j] = m[n + j]; in send_packetsx4() 254 qconf->tx_mbufs[port].m_table[j] = m[n + j]; in send_packetsx4() 258 qconf->tx_mbufs[port].m_table[j] = m[n + j]; in send_packetsx4()
|
| H A D | l3fwd.h | 68 struct rte_mbuf *m_table[MAX_PKT_BURST]; member 114 struct rte_mbuf **m_table; in send_burst() local 119 m_table = (struct rte_mbuf **)qconf->tx_mbufs[port].m_table; in send_burst() 121 ret = rte_eth_tx_burst(port, queueid, m_table, n); in send_burst() 124 rte_pktmbuf_free(m_table[ret]); in send_burst() 139 qconf->tx_mbufs[port].m_table[len] = m; in send_single_packet()
|
| /dpdk/examples/ip_fragmentation/ |
| H A D | main.c | 125 struct rte_mbuf *m_table[MBUF_TABLE_SIZE]; member 225 struct rte_mbuf **m_table; in send_burst() local 230 m_table = (struct rte_mbuf **)qconf->tx_mbufs[port].m_table; in send_burst() 232 ret = rte_eth_tx_burst(port, queueid, m_table, n); in send_burst() 235 rte_pktmbuf_free(m_table[ret]); in send_burst() 288 qconf->tx_mbufs[port_out].m_table[len] = m; in l3fwd_simple_forward() 292 &qconf->tx_mbufs[port_out].m_table[len], in l3fwd_simple_forward() 326 qconf->tx_mbufs[port_out].m_table[len] = m; in l3fwd_simple_forward() 330 &qconf->tx_mbufs[port_out].m_table[len], in l3fwd_simple_forward() 345 qconf->tx_mbufs[port_out].m_table[len] = m; in l3fwd_simple_forward() [all …]
|
| /dpdk/examples/qos_sched/ |
| H A D | main.c | 108 wt_confs[i]->m_table = rte_malloc("table_wt", sizeof(struct rte_mbuf *) in app_main_loop() 111 if (wt_confs[i]->m_table == NULL) in app_main_loop() 123 tx_confs[i]->m_table = rte_malloc("table_tx", sizeof(struct rte_mbuf *) in app_main_loop() 126 if (tx_confs[i]->m_table == NULL) in app_main_loop()
|
| H A D | app_thread.c | 120 mbufs = (struct rte_mbuf **)qconf->m_table; in app_send_burst() 141 qconf->m_table[len] = mbufs[i]; in app_send_packets()
|
| H A D | main.h | 80 struct rte_mbuf **m_table; member
|
| /dpdk/examples/ipv4_multicast/ |
| H A D | main.c | 96 struct rte_mbuf *m_table[MAX_PKT_BURST]; member 164 struct rte_mbuf **m_table; in send_burst() local 169 m_table = (struct rte_mbuf **)qconf->tx_mbufs[port].m_table; in send_burst() 172 ret = rte_eth_tx_burst(port, queueid, m_table, n); in send_burst() 174 rte_pktmbuf_free(m_table[ret]); in send_burst() 291 qconf->tx_mbufs[port].m_table[len] = pkt; in mcast_send_pkt()
|
| /dpdk/examples/ip_reassembly/ |
| H A D | main.c | 129 struct rte_mbuf *m_table[0]; member 266 txmb->m_table + txmb->tail, (uint16_t)n); in send_burst() 297 rte_pktmbuf_free(txmb->m_table[txmb->tail]); in send_single_packet() 303 txmb->m_table[txmb->head] = m; in send_single_packet() 832 sz = sizeof (*mtb) + sizeof (mtb->m_table[0]) * n; in setup_port_tbl()
|
| /dpdk/examples/vhost/ |
| H A D | main.c | 186 struct rte_mbuf *m_table[MAX_PKT_BURST]; member 192 struct rte_mbuf *m_table[MAX_PKT_BURST]; member 1030 struct rte_mbuf **m = vhost_txbuff[buff_idx]->m_table; in drain_vhost() 1121 vhost_txq->m_table[vhost_txq->len++] = m; in virtio_tx_local() 1210 tx_q->m_table, tx_q->len); in do_drain_mbuf_table() 1212 free_pkts(&tx_q->m_table[count], tx_q->len - count); in do_drain_mbuf_table() 1297 tx_q->m_table[tx_q->len++] = m; in virtio_tx_route()
|
| /dpdk/examples/ipsec-secgw/ |
| H A D | ipsec-secgw.c | 229 struct rte_mbuf *m_table[MAX_PKT_BURST] __rte_aligned(sizeof(void *)); 594 struct rte_mbuf **m_table; in send_burst() local 599 m_table = (struct rte_mbuf **)qconf->tx_mbufs[port].m_table; in send_burst() 601 prepare_tx_burst(m_table, n, port, qconf); in send_burst() 603 ret = rte_eth_tx_burst(port, queueid, m_table, n); in send_burst() 609 free_pkts(&m_table[ret], 1); in send_burst() 631 if (len + RTE_LIBRTE_IP_FRAG_MAX_FRAG >= RTE_DIM(tbl->m_table)) { in send_fragment_packet() 636 n = RTE_DIM(tbl->m_table) - len; in send_fragment_packet() 639 rc = rte_ipv4_fragment_packet(m, tbl->m_table + len, in send_fragment_packet() 642 rc = rte_ipv6_fragment_packet(m, tbl->m_table + len, in send_fragment_packet() [all …]
|