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

  /src/sys/arch/x86/x86/
sys_machdep.c 414 iomap = dummymap = kmem_alloc(IOMAPSIZE, KM_SLEEP);
415 memset(dummymap, 0xff, IOMAPSIZE);
417 error = copyout(iomap, ua.iomap, IOMAPSIZE);
419 kmem_free(dummymap, IOMAPSIZE);
446 new = kmem_alloc(IOMAPSIZE, KM_SLEEP);
447 error = copyin(ua.iomap, new, IOMAPSIZE);
449 kmem_free(new, IOMAPSIZE);
455 kmem_free(old, IOMAPSIZE);
463 memcpy(ci->ci_tss->iomap, pcb->pcb_iomap, IOMAPSIZE);
  /src/sys/arch/x86/include/
cpu.h 87 #define IOMAPSIZE (NIOPORTS / 8) /* I/O bitmap size in bytes */
95 uint8_t iomap[IOMAPSIZE];
  /src/sys/arch/i386/i386/
gdt.c 288 setgdt(slot, tss, sizeof(struct i386tss) + IOMAPSIZE - 1,
locore.S 1713 movl $(IOMAPSIZE/4),%ecx

Completed in 54 milliseconds