Home
last modified time | relevance | path

Searched refs:fname (Results 1 – 15 of 15) sorted by relevance

/dpdk/lib/bpf/
H A Dbpf_load_elf.c298 rte_bpf_elf_load(const struct rte_bpf_prm *prm, const char *fname, in rte_bpf_elf_load() argument
304 if (prm == NULL || fname == NULL || sname == NULL) { in rte_bpf_elf_load()
309 fd = open(fname, O_RDONLY); in rte_bpf_elf_load()
313 __func__, fname, rc, strerror(rc)); in rte_bpf_elf_load()
325 __func__, fname, sname, rte_errno); in rte_bpf_elf_load()
331 __func__, fname, sname, bpf, bpf->jit.func, bpf->jit.sz); in rte_bpf_elf_load()
H A Dbpf_stub.c14 rte_bpf_elf_load(const struct rte_bpf_prm *prm, const char *fname, in rte_bpf_elf_load() argument
17 if (prm == NULL || fname == NULL || sname == NULL) { in rte_bpf_elf_load()
H A Drte_bpf_ethdev.h84 const struct rte_bpf_prm *prm, const char *fname, const char *sname,
109 const struct rte_bpf_prm *prm, const char *fname, const char *sname,
H A Dbpf_pkt.c492 const struct rte_bpf_prm *prm, const char *fname, const char *sname, in bpf_eth_elf_load() argument
520 bpf = rte_bpf_elf_load(prm, fname, sname); in bpf_eth_elf_load()
562 const struct rte_bpf_prm *prm, const char *fname, const char *sname, in rte_bpf_eth_rx_elf_load() argument
570 rc = bpf_eth_elf_load(cbh, port, queue, prm, fname, sname, flags); in rte_bpf_eth_rx_elf_load()
578 const struct rte_bpf_prm *prm, const char *fname, const char *sname, in rte_bpf_eth_tx_elf_load() argument
586 rc = bpf_eth_elf_load(cbh, port, queue, prm, fname, sname, flags); in rte_bpf_eth_tx_elf_load()
H A Drte_bpf.h154 rte_bpf_elf_load(const struct rte_bpf_prm *prm, const char *fname,
/dpdk/app/test-pmd/
H A Dbpf_cmd.c97 const char *fname, *sname; in cmd_operate_bpf_ld_parsed() local
105 fname = res->prm; in cmd_operate_bpf_ld_parsed()
110 fname, sname, flags); in cmd_operate_bpf_ld_parsed()
114 fname, sname, flags); in cmd_operate_bpf_ld_parsed()
/dpdk/config/arm/
H A Darmv8_machine.py6 fname = '/sys/devices/system/cpu/cpu0/regs/identification/midr_el1' variable
7 with open(fname) as f:
/dpdk/devtools/
H A Dcheck-symbol-change.sh7 local fname="$1"
10 cat "$fname" | awk '
/dpdk/app/test/
H A Dtest_ring_stress_impl.h174 const char *fname, const char *opname) in check_ring_op() argument
178 fname, lc, opname, exp, res); in check_ring_op()
185 test_worker(void *arg, const char *fname, int32_t prcs) in test_worker() argument
222 rc = check_ring_op(num, n, lc, fname, in test_worker()
240 rc = check_ring_op(num, n, lc, fname, in test_worker()
H A Dresource.c53 int resource_fwrite_file(const struct resource *r, const char *fname) in resource_fwrite_file() argument
58 f = fopen(fname, "w"); in resource_fwrite_file()
H A Dresource.h60 int resource_fwrite_file(const struct resource *r, const char *fname);
/dpdk/drivers/net/mlx5/
H A Dmlx5_rxtx.c329 mlx5_dump_debug_information(const char *fname, const char *hex_title, in mlx5_dump_debug_information() argument
334 MKSTR(path, "%s/%s", MLX5_SYSTEM_LOG_DIR, fname); in mlx5_dump_debug_information()
338 MKSTR(path2, "./%s", fname); in mlx5_dump_debug_information()
/dpdk/drivers/bus/dpaa/base/fman/
H A Dfman.c226 const char *mname, *fname; in fman_if_init() local
386 fname = fman_node->full_name; in fman_if_init()
389 FMAN_ERR(-ENXIO, "%s: no cell-index)\n", fname); in fman_if_init()
399 fname); in fman_if_init()
/dpdk/lib/vhost/
H A Dvhost_user.c1486 char fname[20] = "/tmp/memfd-XXXXXX"; in inflight_mem_alloc() local
1495 mfd = mkstemp(fname); in inflight_mem_alloc()
1502 unlink(fname); in inflight_mem_alloc()
/dpdk/drivers/net/bnx2x/
H A Dbnx2x.c8225 #define GET_FIELD(value, fname) \ argument
8226 (((value) & (fname##_MASK)) >> (fname##_SHIFT))