Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-09-17 | Work around a vax-specific problem where mmap()ing large amount of memory | Miod Vallat | |
would cause a panic. To do so, instead of panic'ing in pmap_protect() if the pages which are supposed to be used for the mapping are out of the affordable pmap limits, just return, and handle this in pmap_enter, by either returning EFAULT if pmap_enter has been invoked with PMAP_CANFAIL, or panicing there if there is no escape. ok art@ | |||
2002-09-17 | I sense too much cut 'n paste. | Artur Grabowski | |
Allow this to build with DEBUG. | |||
2002-09-17 | handle fpu exceptions properly, might use a regress, i guess | Michael Shalayeff | |
2002-09-17 | Until vgafb on macppc properly support non-console operation, do | Dale Rahn | |
not allow it to execute code which could panic the otherwise booting system. | |||
2002-09-17 | Switch device register routine from last match to first match. Fixes | Hugh Graham | |
problems one of my machines was having with phantom scsi luns and no way to discern which one was the boot device. | |||
2002-09-16 | Limit buffer cache size to 35% kvm, not 70. | Artur Grabowski | |
drahn@ ok | |||
2002-09-16 | It's more convinient to spell convinient as ``convenient'', actually. | Miod Vallat | |
2002-09-15 | Begone. | Miod Vallat | |
2002-09-15 | Fix color choices to match wsemul_sun requirements. | Miod Vallat | |
Tested by and ok matthieu@ | |||
2002-09-15 | check for errors on tod pdc ops. say that bad time is before 82 | Michael Shalayeff | |
2002-09-15 | better alias checking, verified w/ the regress | Michael Shalayeff | |
2002-09-15 | be more precise on what we save on traps. flush fpu regs in pcb since they ↵ | Michael Shalayeff | |
are possibly accessed through non-coherent mappings | |||
2002-09-15 | fix for an interrupt happening in the 2 insn window during a syscall, ↵ | Michael Shalayeff | |
comment added; from fredette@ | |||
2002-09-15 | kill dangling spaces | Michael Shalayeff | |
2002-09-15 | backout premature | Theo de Raadt | |
2002-09-15 | KNF | Theo de Raadt | |
2002-09-15 | KNF | Theo de Raadt | |
2002-09-15 | nice printing | Theo de Raadt | |
2002-09-15 | pcmcia works somewhat | Theo de Raadt | |
2002-09-14 | recognize AppleKiwi | Theo de Raadt | |
2002-09-14 | spaces | Theo de Raadt | |
2002-09-13 | why was BOOT_CONFIG left out for so long? | Theo de Raadt | |
2002-09-12 | Support serial console on RAMDISK. | Dale Rahn | |
2002-09-12 | Change the PMAP_PAGEIDLEZERO api to take the struct vm_page instead of the pa. | Artur Grabowski | |
2002-09-12 | Change the PMAP_{MAP,UNMAP}_POOLPAGE api to take a vm_page as argument | Artur Grabowski | |
and return a VM_PAGE. This is to allow sparc64 to cheaply record the VAC color for those pages. | |||
2002-09-12 | reset want_resched earlier, set curproc after we are done w/ switching, ↵ | Michael Shalayeff | |
rearrange syscall savements | |||
2002-09-12 | give a condition trap own treatment, per millicode; and, oh horror, swap ↵ | Michael Shalayeff | |
return of quad_t, sort of, sometimes | |||
2002-09-11 | Some early callers of pmap_growkernel call it before vm_page structures | Artur Grabowski | |
are initialized. So we can't to PHYS_TO_VM_PAGE becuase there are no vm_pages. Reintroduce the old pmap_zero_page renamed to pmap_zero_phys that can zero pages without struct vm_page. | |||
2002-09-11 | Include zstty.h, so that the NZSTTY check will be correct. | Dale Rahn | |
2002-09-11 | When freeing the extent, include the page offset, not just the page | Dale Rahn | |
base. This is important when allocating/freeing sub page size mappings. | |||
2002-09-11 | correct argsize for ktrsyscall | Michael Shalayeff | |
2002-09-11 | provide a convinient reset label | Michael Shalayeff | |
2002-09-11 | stack grows the other way, but the frame is the other way to that. hehe | Michael Shalayeff | |
2002-09-11 | update from sparc64 version: | Jason Wright | |
-fix several stupid bugs -get encoding setup correct -add support for capture | |||
2002-09-10 | copy syscall args in the syscall() based on the | Michael Shalayeff | |
amount given in the sysent. deal w/ the words swappage phenomena due to reverse long word storage on the stack and that being reverse copied by words yielding long word being word swapped. do it only for syscall(2) and __syscall(2) since that's how those w/ long word args syscalls get used (for proper alignment). discussed and ideas from: deraadt@, drahn@ and fredette@ note: this might be a good point for a regress. | |||
2002-09-10 | randomize space ids, plus we are not gonna run out now (; | Michael Shalayeff | |
2002-09-10 | comment out a bit of unused code now | Michael Shalayeff | |
2002-09-10 | move to 3.2-beta | Theo de Raadt | |
2002-09-10 | rework the fpu csw a bit better and move non-trap related stuff to later | Michael Shalayeff | |
2002-09-10 | Change the pmap_zero_page and pmap_copy_page API to take the struct vm_page * | Artur Grabowski | |
instead of the pa. Most callers already had it handy and those who didn't only called it for managed pages and were outside time-critical code. This will allow us to make those functions clean and fast on sparc and sparc64 letting us to avoid unnecessary cache flushes. deraadt@ miod@ drahn@ ok. | |||
2002-09-10 | Remove some debugging code, KNF, and fix encoding selection. | Jason Wright | |
2002-09-10 | Register more wsscreen properties to take advantage of wsemul_sun changes. | Jason Wright | |
2002-09-09 | Register more screen capabilities to work with the recent wsemul_sun changes. | Miod Vallat | |
2002-09-09 | set up the frame flags and a user frame better on exec | Michael Shalayeff | |
2002-09-09 | no need for a fdc there | Michael Shalayeff | |
2002-09-06 | Fix pmap_protect for VM_PROT_EXECUTE | Artur Grabowski | |
2002-09-06 | Remove the gm driver, the MI gem works better at this point. | Dale Rahn | |
2002-09-06 | Restore EE bit of MSR on return from exception, rather than blindly | Dale Rahn | |
enabling it. pefo@ | |||
2002-09-06 | Serial console support for macppc. Serial console will work if the modem | Dale Rahn | |
has been replaced with a serial port adapter on any machine that has a real serial port internally. This will also power on the internal modem for keylargo based machines (tested on original PBG4) when the serial port is open. ok miod@ | |||
2002-09-06 | KNF. | Dale Rahn | |