HomeSort by: relevance | last modified time | path
    Searched defs:psets_max (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/kern/
sys_pset.c 57 static u_int psets_max; variable in typeref:typename:u_int
97 psets_max = uimax(maxcpus, 32);
98 psets = kmem_zalloc(psets_max * sizeof(void *), KM_SLEEP);
121 oldsize = psets_max * sizeof(void *);
124 if (new_psets_max < psets_max) {
125 for (i = new_psets_max; i < psets_max; i++) {
136 psets_max = new_psets_max;
155 if (psid <= 0 || psid > psets_max)
172 if (psets_count == psets_max)
178 if (psets_count == psets_max) {
    [all...]
sys_pset.c 57 static u_int psets_max; variable in typeref:typename:u_int
97 psets_max = uimax(maxcpus, 32);
98 psets = kmem_zalloc(psets_max * sizeof(void *), KM_SLEEP);
121 oldsize = psets_max * sizeof(void *);
124 if (new_psets_max < psets_max) {
125 for (i = new_psets_max; i < psets_max; i++) {
136 psets_max = new_psets_max;
155 if (psid <= 0 || psid > psets_max)
172 if (psets_count == psets_max)
178 if (psets_count == psets_max) {
    [all...]

Completed in 23 milliseconds