Searched defs:mcpu (Results 1 - 6 of 6) sorted by relevance

/illumos-gate/usr/src/uts/i86pc/io/apix/
H A Dapix_intr.c231 struct machcpu *mcpu = &cpu->cpu_m; local
235 ASSERT(pil > mcpu->mcpu_pri && pil > cpu->cpu_base_spl);
237 atomic_and_32((uint32_t *)&mcpu->mcpu_softinfo.st_pending, ~(1 << pil));
239 mcpu->mcpu_pri = pil;
256 mcpu->intrstat[pil][0] += intrtime;
302 struct machcpu *mcpu = &cpu->cpu_m; local
317 mcpu->intrstat[pil][0] += intrtime;
331 /* mcpu->mcpu_pri = cpu->cpu_base_spl; */
350 mcpu->mcpu_pri = pil;
406 struct machcpu *mcpu local
485 struct machcpu *mcpu = &cpu->cpu_m; local
608 struct machcpu *mcpu = &cpu->cpu_m; local
677 struct machcpu *mcpu = &cpu->cpu_m; local
[all...]
/illumos-gate/usr/src/uts/i86pc/os/
H A Dx_call.c134 xc_decrement(struct machcpu *mcpu) argument
136 atomic_dec_32(&mcpu->xc_work_cnt);
143 xc_increment(struct machcpu *mcpu) argument
147 old = mcpu->xc_work_cnt;
148 } while (atomic_cas_32(&mcpu->xc_work_cnt, old, old + 1) != old);
H A Dintr.c529 struct machcpu *mcpu = &cpu->cpu_m; local
563 mcpu->pil_high_start[nestpil - (LOCK_LEVEL + 1)];
564 mcpu->intrstat[nestpil][0] += intrtime;
582 mcpu->intrstat[t->t_pil][0] += intrtime;
591 mcpu->pil_high_start[pil - (LOCK_LEVEL + 1)] = now;
625 struct machcpu *mcpu = &cpu->cpu_m; local
630 ASSERT(mcpu->mcpu_pri == pil);
653 ASSERT(mcpu->pil_high_start[pil - (LOCK_LEVEL + 1)] != 0);
655 intrtime = now - mcpu->pil_high_start[pil - (LOCK_LEVEL + 1)];
656 mcpu
706 struct machcpu *mcpu = &cpu->cpu_m; local
772 struct machcpu *mcpu = &cpu->cpu_m; local
908 struct machcpu *mcpu; local
945 struct machcpu *mcpu = &cpu->cpu_m; local
1051 struct machcpu *mcpu = &cpu->cpu_m; local
[all...]
/illumos-gate/usr/src/uts/i86pc/os/cpupm/
H A Dcpu_idle.c177 struct machcpu *mcpu = &(cp->cpu_m); local
178 volatile uint32_t *mcpu_mwait = mcpu->mcpu_mwait;
927 struct machcpu *mcpu; local
968 mcpu = &(cp->cpu_m);
969 mcpu->max_cstates = cpu_acpi_get_max_cstates(handle);
970 if (mcpu->max_cstates > CPU_ACPI_C1) {
975 } else if (mcpu->max_cstates == CPU_ACPI_C1) {
H A Dcpupm_mach.c149 struct machcpu *mcpu = &(cp->cpu_m); local
233 mcpu->max_cstates = CPU_ACPI_C1;
238 mcpu->max_cstates = cpu_acpi_get_max_cstates(
240 if (mcpu->max_cstates > CPU_ACPI_C1) {
244 mcpu->mcpu_idle_type = CPU_ACPI_C1;
252 mcpu->max_cstates = CPU_ACPI_C1;
/illumos-gate/usr/src/uts/sun4/os/
H A Dintr.c349 struct machcpu *mcpu; local
356 mcpu = &CPU->cpu_m;
361 next = mcpu->intr_head[pil];
378 mcpu->intr_head[pil] = next_iv; /* head */
381 mcpu->intr_tail[pil] = prev; /* tail */
385 if (mcpu->intr_head[pil] == NULL) {

Completed in 108 milliseconds