Files
openairinterface5g/fronthaul/core/fh_send.c
Bartosz Podrygajlo fc78a643f1 feat(fronthaul): add 7.2 split fronthaul core libraries
This commit introduces a set of component libraries that can
be used to implement packet processing library for 7.2 fronthaul
interface.

Signed-off-by: Bartosz Podrygajlo <bartosz.podrygajlo@openairinterface.org> and assisted-by Gemini
2026-05-25 09:48:24 +02:00

31 lines
702 B
C

/*
* SPDX-License-Identifier: LicenseRef-CSSL-1.0
*/
#include "fh_send.h"
#include <stdio.h>
#include <stdlib.h>
#include <rte_ethdev.h>
#include <rte_errno.h>
#include <rte_atomic.h>
int fh_send_init(fh_send_t *send, fh_timer_t *timer, uint16_t port_id, uint16_t queue_id)
{
send->timer = timer;
send->port_id = port_id;
send->queue_id = queue_id;
rte_spinlock_init(&send->tx_lock);
return 0;
}
uint16_t fh_send_immediate(fh_send_t *send, struct rte_mbuf **mbufs, uint32_t n)
{
if (!send)
return 0;
rte_spinlock_lock(&send->tx_lock);
uint16_t sent = rte_eth_tx_burst(send->port_id, send->queue_id, mbufs, (uint16_t)n);
rte_spinlock_unlock(&send->tx_lock);
return sent;
}