blob: f590c8c3fdf593251a7038469eaca65d3bfebd06 (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2018 Intel Corporation
*/
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <stdint.h>
#include <inttypes.h>
#include <rte_common.h>
#include <rte_eal.h>
#include "bpf_impl.h"
int rte_bpf_logtype;
__rte_experimental void
rte_bpf_destroy(struct rte_bpf *bpf)
{
if (bpf != NULL) {
if (bpf->jit.func != NULL)
munmap(bpf->jit.func, bpf->jit.sz);
munmap(bpf, bpf->sz);
}
}
__rte_experimental int
rte_bpf_get_jit(const struct rte_bpf *bpf, struct rte_bpf_jit *jit)
{
if (bpf == NULL || jit == NULL)
return -EINVAL;
jit[0] = bpf->jit;
return 0;
}
int
bpf_jit(struct rte_bpf *bpf)
{
int32_t rc;
#ifdef RTE_ARCH_X86_64
rc = bpf_jit_x86(bpf);
#else
rc = -ENOTSUP;
#endif
if (rc != 0)
RTE_BPF_LOG(WARNING, "%s(%p) failed, error code: %d;\n",
__func__, bpf, rc);
return rc;
}
RTE_INIT(rte_bpf_init_log)
{
rte_bpf_logtype = rte_log_register("lib.bpf");
if (rte_bpf_logtype >= 0)
rte_log_set_level(rte_bpf_logtype, RTE_LOG_INFO);
}
|