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

  /src/sys/arch/i386/i386/
machdep.c 605 struct cpu_tss *cputss; local in function:cpu_init_tss
607 cputss = (struct cpu_tss *)uvm_km_alloc(kernel_map,
610 cputss->tss.tss_iobase = IOMAP_INVALOFF << 16;
612 cputss->tss.tss_ss0 = GSEL(GDATA_SEL, SEL_KPL);
613 cputss->tss.tss_ldt = GSEL(GLDT_SEL, SEL_KPL);
614 cputss->tss.tss_cr3 = rcr3();
617 ci->ci_tss = cputss;
619 ci->ci_tss_sel = tss_alloc(&cputss->tss);
  /src/sys/arch/amd64/amd64/
machdep.c 507 struct cpu_tss *cputss; local in function:cpu_init_tss
512 cputss = (struct cpu_tss *)&pcpuarea->ent[cid].tss;
514 cputss = (struct cpu_tss *)uvm_km_alloc(kernel_map,
518 cputss->tss.tss_iobase = IOMAP_INVALOFF << 16;
526 cputss->tss.tss_ist[0] = p + PAGE_SIZE - 16;
534 cputss->tss.tss_ist[1] = p + PAGE_SIZE - 16;
542 cputss->tss.tss_ist[2] = p + PAGE_SIZE - sizeof(struct nmistore);
552 cputss->tss.tss_ist[3] = p + PAGE_SIZE - 16;
554 ci->ci_tss = cputss;
555 ci->ci_tss_sel = tss_alloc(&cputss->tss)
    [all...]

Completed in 14 milliseconds