Home
last modified time | relevance | path

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

/freebsd/sys/riscv/riscv/
H A Dmp_machdep.c102 static void *bootstacks[MAXCPU]; variable
234 if (bootstacks[cpu] != NULL) in smp_after_idle_runnable()
235 kmem_free(bootstacks[cpu], MP_BOOTSTACK_SIZE); in smp_after_idle_runnable()
397 bootstacks[cpuid] = kmem_malloc(MP_BOOTSTACK_SIZE, M_WAITOK | M_ZERO); in cpu_init_fdt()
400 bootstack = (char *)bootstacks[cpuid] + MP_BOOTSTACK_SIZE; in cpu_init_fdt()
/freebsd/sys/arm64/arm64/
H A Dmp_machdep.c124 static void *bootstacks[MAXCPU]; variable
297 if (bootstacks[cpu] != NULL) in smp_after_idle_runnable()
298 kmem_free(bootstacks[cpu], MP_BOOTSTACK_SIZE); in smp_after_idle_runnable()
485 bootstacks[cpuid] = kmem_malloc_domainset(DOMAINSET_PREF(domain), in start_cpu()
489 bootstack = (char *)bootstacks[cpuid] + MP_BOOTSTACK_SIZE; in start_cpu()
510 kmem_free(bootstacks[cpuid], MP_BOOTSTACK_SIZE); in start_cpu()
512 bootstacks[cpuid] = NULL; in start_cpu()
/freebsd/sys/x86/include/
H A Dx86_smp.h35 extern void *bootstacks[];
/freebsd/sys/i386/i386/
H A Dmp_machdep.c391 bootstacks[cpu] = kmem_malloc(kstack_pages * PAGE_SIZE, in start_all_aps()
400 bootSTK = (char *)bootstacks[cpu] + kstack_pages * in start_all_aps()
/freebsd/sys/amd64/amd64/
H A Dmp_machdep.c416 bootstacks[cpu] = kmem_malloc(kstack_pages * PAGE_SIZE, in start_all_aps()
430 bootSTK = (char *)bootstacks[cpu] + in start_all_aps()
/freebsd/sys/x86/x86/
H A Dmp_x86.c97 void *bootstacks[MAXCPU]; variable
1161 kmem_free(bootstacks[cpu], kstack_pages * PAGE_SIZE); in smp_after_idle_runnable()