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.c123 static void *bootstacks[MAXCPU]; variable
333 if (bootstacks[cpu] != NULL) in smp_after_idle_runnable()
334 kmem_free(bootstacks[cpu], MP_BOOTSTACK_SIZE); in smp_after_idle_runnable()
550 bootstacks[cpuid] = kmem_malloc_domainset(DOMAINSET_PREF(domain), in start_cpu()
554 bootstack = (char *)bootstacks[cpuid] + MP_BOOTSTACK_SIZE; in start_cpu()
575 kmem_free(bootstacks[cpuid], MP_BOOTSTACK_SIZE); in start_cpu()
577 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.c389 bootstacks[cpu] = kmem_malloc(kstack_pages * PAGE_SIZE, in start_all_aps()
398 bootSTK = (char *)bootstacks[cpu] + kstack_pages * in start_all_aps()
/freebsd/sys/amd64/amd64/
H A Dmp_machdep.c428 bootstacks[cpu] = kmem_malloc(kstack_pages * PAGE_SIZE, in start_all_aps()
442 bootSTK = (char *)bootstacks[cpu] + in start_all_aps()
/freebsd/sys/x86/x86/
H A Dmp_x86.c97 void *bootstacks[MAXCPU]; variable
1168 kmem_free(bootstacks[cpu], kstack_pages * PAGE_SIZE); in smp_after_idle_runnable()