Lines Matching refs:flags
27 rte_stack_init(struct rte_stack *s, unsigned int count, uint32_t flags) in EAL_REGISTER_TAILQ()
31 if (flags & RTE_STACK_F_LF) in EAL_REGISTER_TAILQ()
38 rte_stack_get_memsize(unsigned int count, uint32_t flags) in rte_stack_get_memsize() argument
40 if (flags & RTE_STACK_F_LF) in rte_stack_get_memsize()
48 uint32_t flags) in rte_stack_create() argument
58 if (flags & ~(RTE_STACK_F_LF)) { in rte_stack_create()
59 STACK_LOG_ERR("Unsupported stack flags %#x\n", flags); in rte_stack_create()
67 if (flags & RTE_STACK_F_LF) { in rte_stack_create()
74 sz = rte_stack_get_memsize(count, flags); in rte_stack_create()
103 rte_stack_init(s, count, flags); in rte_stack_create()
118 s->flags = flags; in rte_stack_create()