Home
last modified time | relevance | path

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

/linux/arch/loongarch/kernel/
H A Dmodule.c38 static int rela_stack_push(long stack_value, long *rela_stack, size_t *rela_stack_top) in rela_stack_push() argument
43 rela_stack[(*rela_stack_top)++] = stack_value; in rela_stack_push()
44 pr_debug("%s stack_value = 0x%lx\n", __func__, stack_value); in rela_stack_push()
49 static int rela_stack_pop(long *stack_value, long *rela_stack, size_t *rela_stack_top) in rela_stack_pop() argument
54 *stack_value = rela_stack[--(*rela_stack_top)]; in rela_stack_pop()
55 pr_debug("%s stack_value = 0x%lx\n", __func__, *stack_value); in rela_stack_pop()