Changeset View
Changeset View
Standalone View
Standalone View
sys/kern/kern_exec.c
| Show First 20 Lines • Show All 1,325 Lines • ▼ Show 20 Lines | |||||
| } | } | ||||
| struct exec_args_kva { | struct exec_args_kva { | ||||
| vm_offset_t addr; | vm_offset_t addr; | ||||
| u_int gen; | u_int gen; | ||||
| SLIST_ENTRY(exec_args_kva) next; | SLIST_ENTRY(exec_args_kva) next; | ||||
| }; | }; | ||||
| static DPCPU_DEFINE(struct exec_args_kva *, exec_args_kva); | DPCPU_DEFINE_STATIC(struct exec_args_kva *, exec_args_kva); | ||||
| static SLIST_HEAD(, exec_args_kva) exec_args_kva_freelist; | static SLIST_HEAD(, exec_args_kva) exec_args_kva_freelist; | ||||
| static struct mtx exec_args_kva_mtx; | static struct mtx exec_args_kva_mtx; | ||||
| static u_int exec_args_gen; | static u_int exec_args_gen; | ||||
| static void | static void | ||||
| exec_prealloc_args_kva(void *arg __unused) | exec_prealloc_args_kva(void *arg __unused) | ||||
| { | { | ||||
| ▲ Show 20 Lines • Show All 391 Lines • Show Last 20 Lines | |||||