Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-08-07 | dead proto | Michael Shalayeff | |
2003-08-07 | make all intr_establish take the same last arg for name | Michael Shalayeff | |
2003-08-07 | first allocate space on stack then copyout signal shits. add a DEBUG check ↵ | Michael Shalayeff | |
for a whacky user pc (as impossible due to the recent trap.c change) | |||
2003-08-07 | be more careful when loading trap_tmp_save and a bit better sigcode | Michael Shalayeff | |
2003-08-07 | In sendsig() and sigreturn(), use the SS_xxx flags rather than the SA_xxx | Miod Vallat | |
flags (purely cosmetic, as they have the same value). Also some minor indentation/KNF repairs. | |||
2003-08-07 | better dmesg output and do some spaces; markus@ ok | Michael Shalayeff | |
2003-08-07 | Allow nested interrupts in the openpic interrupt controller, tested by | Dale Rahn | |
brad@ and miod@ | |||
2003-08-07 | watchdog driver for Geode SC1100 (e.g. in soekris net4801); ok mickey@ | Markus Friedl | |
2003-08-07 | do not treat traps from the syscall gate page as user code | Michael Shalayeff | |
2003-08-06 | Remove some double semicolons (hmm, do two semis equal a maxi?). | Todd C. Miller | |
I've skipped the GNU stuff for now. From Patrick Latifi. | |||
2003-08-05 | a180c blinks too, 715/80 supposedly too | Michael Shalayeff | |
2003-08-05 | support for shared interrupts as required by isa/eisa/pci. remove a gsckbc ↵ | Michael Shalayeff | |
kludge; miod@ testing | |||
2003-08-04 | make 'em all unsigned | Michael Shalayeff | |
2003-08-03 | Resistance is futile, you will be KNF'ed. | Miod Vallat | |
And then it will be easier to debug this mess (no functional change yet). | |||
2003-08-03 | oops | Michael Shalayeff | |
2003-08-03 | prefer fdc to fdce for cache flushing here | Michael Shalayeff | |
2003-08-03 | clear branch and nullify bits in psw on sending a signal | Michael Shalayeff | |
2003-08-01 | The pmap potpourri du jour, while hunting for evil bugs: | Miod Vallat | |
- provide a simpler flush_atc_entry() in the NCPUS == 1 case - remove some can't happen tests in pmap_protect() - handle pool_get failure and PMAP_CANFAIL correctly in pmap_enter() - don't forget to initialize pv_flags in new pv_entry items - de-cretinize pmap_testbit() and pmap_page_protect() | |||
2003-08-01 | Nuke uvm_useracc() call here too. | Miod Vallat | |
2003-08-01 | The Vigra VS10-EK is recognized as a cgthree clone, but due to its utterly | Miod Vallat | |
ridiculous resolution, we need to plug the "clear the screen and switch font" trick here too. [Thanks to Andrey Smagin for providing a card for testing] | |||
2003-08-01 | pmap_kremove was so broken I'd rather pretend I did not write it... | Miod Vallat | |
2003-08-01 | Nuke calls to uvm_useracc() and instead check copyin() and copyout() for | Miod Vallat | |
failure, since the former is not reliable; requested by art@ long ago. | |||
2003-08-01 | No semicolon at the end of macros supposed to be atomic statements. | Miod Vallat | |
2003-08-01 | Compensate for the assym.h lossage, which defines NBPG for now (this will be | Miod Vallat | |
cleaned up soon...) | |||
2003-08-01 | Do not use hardcoded values for constants which are in fact computed from other | Miod Vallat | |
constants. | |||
2003-08-01 | Turn flush_pipeline() in a simple macro. | Miod Vallat | |
2003-08-01 | Define a more reasonable label_t size. | Miod Vallat | |
2003-08-01 | Even better varargs code, inspired by and more closer to the powerpc code, | Miod Vallat | |
necessary for proper gcc 2.95 operation. | |||
2003-08-01 | Fix pcctwo locator typos | Miod Vallat | |
2003-08-01 | ${LIBGCC} is useless, since libgcc.a does not live in /usr/lib; instead, | Miod Vallat | |
use gcc to get the correct location. | |||
2003-08-01 | Fix the *longjmp() behaviour - it is legal to reuse a jmp_buf several times. | Miod Vallat | |
Gets us a working perl 5.8. | |||
2003-08-01 | remove the strcpy/strcat macros | Anil Madhavapeddy | |
deraadt@ ok | |||
2003-07-31 | remove autoconf_nzs; from netbsd | Jason Wright | |
2003-07-30 | an absolute cure for an inherited arrhythmia w/ uninitialized variable | Michael Shalayeff | |
2003-07-30 | kill sample device mappings as not really useful | Michael Shalayeff | |
2003-07-30 | deduce the leds address from the model number and thus make some more use of ↵ | Michael Shalayeff | |
that lichtenblinkenschmutz on some more machinens | |||
2003-07-30 | give those leds some haste | Michael Shalayeff | |
2003-07-30 | support for vt8231 from netbsd via pr3362 and tested by matthew.gream@pobox.com | Michael Shalayeff | |
2003-07-29 | load_raw did not set all the needed fields in the dmamap. | Michael Shalayeff | |
make sure to allocate dmamem in one segment. do not allocate extra va for dmamem allocated -- just reuse the already there equ mapping of pa and thus implement the dmamem_free as a pglist free. | |||
2003-07-29 | move spl checking wrap over the syscall into trap.c:syscall(); | Michael Shalayeff | |
this gives several benefits: the arguments for a syscall printed are the exact args and not some wild guess fetched from the user stack; the check does not include the AST traps that may be checked on their own in the trap() routine should be desired; kill last use and thus itself the fuword() function and it's glue. | |||
2003-07-29 | Remove a diagnostic print which was left in the code to determine how | Dale Rahn | |
bad integer division is for calculation of the tick timer. Turns out that the typical error on most machines is < .005% just a few seconds per week. Not enough to bother with at this time. | |||
2003-07-28 | nuke more MATH_EMULATE | Jason Wright | |
2003-07-28 | remove the non-licensed i386 math emulation stuff. This only leaves the | Jason Wright | |
gnu stuff as an option until it is replaced RSN. ok deraadt. | |||
2003-07-26 | on syscall exit restore old cpl if there is a need; move call for softints ↵ | Michael Shalayeff | |
processing towards after that | |||
2003-07-25 | use names not numbers for msrs, do not define yet another implementation of ↵ | Michael Shalayeff | |
wrmsr/rdmsr | |||
2003-07-25 | s/CPUID_SYS2/CPUID_SEP/ to avoid confusion | Michael Shalayeff | |
2003-07-25 | let ALWAYS_MATH_EMULATE actually compile | Jason Wright | |
2003-07-25 | make sure SYSENTER registers are 0 at boot time. should fix an unusual | Ted Unangst | |
DOS reported by Michal Zalewski to bugtraq. ok mickey@ toby@ | |||
2003-07-24 | a whole bunch of tyop fixes from Andrey Smagin | Jason Wright | |
2003-07-23 | add ahc and clean things a bit | Jason Wright | |