#include <stdlib.h>
#include <string.h>
#include "swq.h"
static struct swq_list swq_list;
int
swq_init(void)
{
TAILQ_INIT(&swq_list);
return 0;
}
struct swq *
swq_find(const char *name)
{
struct swq *swq;
if (name == NULL)
return NULL;
TAILQ_FOREACH(swq, &swq_list, node)
if (strcmp(swq->name, name) == 0)
return swq;
return NULL;
}
struct swq *
swq_create(const char *name, struct swq_params *params)
{
struct swq *swq;
if ((name == NULL) ||
swq_find(name) ||
(params == NULL) ||
(params->size == 0))
return NULL;
name,
params->size,
params->cpu_id,
if (r == NULL)
return NULL;
swq = calloc(1, sizeof(struct swq));
if (swq == NULL) {
return NULL;
}
strlcpy(swq->name, name, sizeof(swq->name));
swq->r = r;
TAILQ_INSERT_TAIL(&swq_list, swq, node);
return swq;
}
void rte_ring_free(struct rte_ring *r)
struct rte_ring * rte_ring_create(const char *name, unsigned int count, int socket_id, unsigned int flags)