Searched refs:pcb_ext (Results 1 - 8 of 8) sorted by relevance

/freebsd-11-stable/sys/pc98/include/
H A Dpcb_ext.h6 #include <i386/pcb_ext.h>
/freebsd-11-stable/sys/i386/include/
H A Dpcb_ext.h26 * $FreeBSD: stable/11/sys/i386/include/pcb_ext.h 333626 2018-05-15 11:25:10Z kib $
39 struct pcb_ext { struct
H A Dpcb.h91 struct pcb_ext *pcb_ext; /* optional pcb extension */ member in struct:pcb
/freebsd-11-stable/sys/i386/i386/
H A Dvm86.c45 #include <machine/pcb_ext.h>
141 * pcb_ext contains the address of the extension area, or zero if
145 if (curpcb->pcb_ext == 0)
147 vm86 = &curpcb->pcb_ext->ext_vm86;
346 (sizeof(struct pcb_ext) - sizeof(struct segment_descriptor) + \
352 struct pcb_ext vml_ext;
365 struct pcb_ext *ext;
435 pcb->pcb_ext = ext;
437 bzero(ext, sizeof(struct pcb_ext));
537 vm86 = &curpcb->pcb_ext
[all...]
H A Dvm_machdep.c77 #include <machine/pcb_ext.h>
252 * pcb2->pcb_ext: cleared below.
258 pcb2->pcb_ext = 0;
345 if (pcb->pcb_ext != NULL) {
346 /* if (pcb->pcb_ext->ext_refcount-- == 1) ?? */
351 kmem_free(kernel_arena, (vm_offset_t)pcb->pcb_ext,
353 pcb->pcb_ext = NULL;
375 pcb->pcb_ext = NULL;
480 * pcb2->pcb_ext: cleared below.
482 pcb2->pcb_ext
[all...]
H A Dsys_machdep.c57 #include <machine/pcb_ext.h>
283 struct pcb_ext *ext;
295 ext = (struct pcb_ext *)kmem_malloc(kernel_arena, ctob(IOPAGES+1),
320 KASSERT(td->td_pcb->pcb_ext == 0, ("already have a TSS!"));
324 td->td_pcb->pcb_ext = ext;
353 if (td->td_pcb->pcb_ext == 0)
356 iomap = (char *)td->td_pcb->pcb_ext->ext_iomap;
382 if (td->td_pcb->pcb_ext == 0) {
387 iomap = (char *)td->td_pcb->pcb_ext->ext_iomap;
H A Dmachdep.c131 #include <machine/pcb_ext.h>
430 struct vm86_kernel *vm86 = &td->td_pcb->pcb_ext->ext_vm86;
550 struct vm86_kernel *vm86 = &td->td_pcb->pcb_ext->ext_vm86;
710 struct vm86_kernel *vm86 = &td->td_pcb->pcb_ext->ext_vm86;
793 * if pcb_ext == 0 or vm86_inited == 0, the user hasn't
796 if (td->td_pcb->pcb_ext == 0)
798 vm86 = &td->td_pcb->pcb_ext->ext_vm86;
908 * if pcb_ext == 0 or vm86_inited == 0, the user hasn't
911 if (td->td_pcb->pcb_ext == 0)
913 vm86 = &td->td_pcb->pcb_ext
[all...]
H A Dgenassym.c145 ASSYM(PCB_EXT, offsetof(struct pcb, pcb_ext));

Completed in 79 milliseconds