blob: c8440ee3cd89590cb157f29f3586a69220765cbf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2010-2018 Intel Corporation
*/
#ifndef _INCLUDE_SWQ_H_
#define _INCLUDE_SWQ_H_
#include <stdint.h>
#include <sys/queue.h>
#include <rte_ring.h>
#include "common.h"
struct swq {
TAILQ_ENTRY(swq) node;
char name[NAME_SIZE];
struct rte_ring *r;
};
TAILQ_HEAD(swq_list, swq);
int
swq_init(void);
struct swq *
swq_find(const char *name);
struct swq_params {
uint32_t size;
uint32_t cpu_id;
};
struct swq *
swq_create(const char *name, struct swq_params *params);
#endif /* _INCLUDE_SWQ_H_ */
|