Searched refs:ks_ce (Results 1 - 2 of 2) sorted by relevance

/freebsd-12-stable/sys/vm/
H A Dvm_glue.c309 struct kstack_cache_entry *ks_ce; local
321 ks_ce = kstack_cache;
322 kstack_cache = ks_ce->next_ks_entry;
325 td->td_kstack_obj = ks_ce->ksobj;
326 td->td_kstack = (vm_offset_t)ks_ce;
429 struct kstack_cache_entry *ks_ce; local
438 ks_ce = (struct kstack_cache_entry *)ks;
439 ks_ce->ksobj = ksobj;
441 ks_ce->next_ks_entry = kstack_cache;
442 kstack_cache = ks_ce;
452 struct kstack_cache_entry *ks_ce, *ks_ce1; local
[all...]
/freebsd-12-stable/sys/ddb/
H A Ddb_ps.c507 struct kstack_cache_entry *ks_ce; local
527 for (ks_ce = kstack_cache; ks_ce != NULL;
528 ks_ce = ks_ce->next_ks_entry) {
529 if ((vm_offset_t)ks_ce <= saddr && saddr < (vm_offset_t)ks_ce +
531 db_printf("Cached stack %p\n", ks_ce);

Completed in 107 milliseconds