summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2003-02-21Print the pa not ldxa(pa)Jason Wright
2003-02-21- kill several unnecessary static'sJason Wright
- fix debugging code so it doesn't generate crashes itself
2003-02-20Fix a crash in the systrace found by form@Artur Grabowski
One is a kernel fix that changes the lockin and one is a userland fix that prevents dereferencing a freed pointer. From provos deraadt@ ok
2003-02-20knfTheo de Raadt
2003-02-20If there's no tag to be reset, don't reset it (avoids a NULL deref in the ↵Jason Wright
IPCOMP case)
2003-02-20no trailing newline in panic(); PR 3103Henning Brauer
2003-02-20Fix the mask and sign extension for bl instruction which branch backwards.Dale Rahn
When printing the address, address has already been added according to AA.
2003-02-20Eliminate unused parameter to scsi_free_xs().Kenneth R Westerback
ok deraadt@ tdeval@
2003-02-20In typical linux style, set a magic bit that makes the floppy work onJason Wright
a machine with yds; reported by kurem at upcase dot inf dot upol dot cz
2003-02-19- Bump size of MAX_RESULT by 4 to include compression resultJason Wright
- add defines for compression - add bit/structure defintions for the result structures
2003-02-19Remove ddb machine commands, they are already available as "bo ha" and "bo re".Miod Vallat
2003-02-19Grr, forgot to commit this earlier: add ipcomps_minlenJason Wright
2003-02-19add a counter for times ipcomp is skipped because the packet is below theJason Wright
minimum compression threshold.
2003-02-19Sync if_vr code with FreeBSD. This makes the driver much better when it comesMiod Vallat
to trying to recover the hardware going nuts under the load. Reported to work by various people including krw@and I.
2003-02-19RegenMiod Vallat
2003-02-19Recognize ICS1893; from NetBSDMiod Vallat
2003-02-19intial -> initialJason McIntyre
2003-02-19use a nop with I bit set at the end of the tx chain. This avoids a raceJason Wright
between status update and clearing the suspend bit on machines which can't write data smaller than 32bits at a time. Diff is the work of pefo, he just has been slacking too much to commit =)
2003-02-19Copy the ENTIRE table into the supported algorithms (how the hell did thisJason Wright
work before?!)
2003-02-19lzs is lzs, lzs is not deflateJason Wright
2003-02-19Leaving console polling mode works now, and workaround boot -a slow responseMiod Vallat
glitch.
2003-02-18Oops, remove debug code that was not supposed to be left hereMiod Vallat
2003-02-18gsc_intr is a leafMichael Shalayeff
2003-02-18knf; mickey okTheo de Raadt
2003-02-18fix the way stack is written into the core file on the upward growing stack ↵Michael Shalayeff
machines. the other case is not affected. miod@ deraadt@ ok
2003-02-18missed in lzs addition: allow LZS as an comp typeJason Wright
2003-02-18convert to new registration schemeJason Wright
2003-02-18nicerTheo de Raadt
2003-02-18intial -> initialJason McIntyre
ok mickey@
2003-02-18intial -> initial;Jason McIntyre
the great intial witch hunt, as prompted by tdeval@ os-aix-dso.c: ok henning@ ab.C: ok drahn@
2003-02-18Let kernels compile without DDB, USELEDS, and DIAGNOSTIC.Miod Vallat
For future intallation media.
2003-02-18Whenever possible, store the prom font data in off-screen frame bufferMiod Vallat
memory, and use block move operations in putchar, rather than keeping a copy of the prom font in memory and using memory to frame buffer transfers. Recommended by the sti docs. No visible performance improvement though. Tested on both kind of sti devices by mickey@ and myself.
2003-02-18Enforce min-ttl and random-id on inbound scrub as well as outbound.Camiel Dobbelaar
ok dhartmei@
2003-02-18copyrights added;Jason McIntyre
*installboot*: all Paul Kranenburg pppctl(8): Brian Somers rpc.bootparamd(8): public domain
2003-02-18copyrights added;Jason McIntyre
these are all Regents of the University of California
2003-02-18Map just the requested pages not p_aligned pages. ok art@Dale Rahn
2003-02-18Real polled mode console support, enough to play hangman in ddb.Miod Vallat
Still a minor issue left for tomorrow.
2003-02-18The previous boot device detection code would not work on old pdc machinesMiod Vallat
netbooting from an rbootd server. In this case, the pdc masquerades the boot device as a disk class device, although keeping the device_path correct. So, rather than trusting the device class the pdc reports, trust what the kernel just configured - it must know better.
2003-02-18syncTheo de Raadt
2003-02-18new fxp; cube@cubidou.netTheo de Raadt
2003-02-18Track enable state and behave appropriately.Miod Vallat
Also, better probe for leds on keyboard.
2003-02-17Allow the generic ps/2 mouse driver, pms, to attach to gsckbc as well.Miod Vallat
Thankfully HP's ps/2 mouse have no specific behaviour.
2003-02-17Since the ps/2 input ports show up as two different devices, with the sameMiod Vallat
irq, but hppa has no generic shared interrupt code, we need to make sure that gsckbc devices using the same irq know each other, and will pass the interrupt notification to each other. This allow a mouse and a keyboard to work together...
2003-02-17can use the same bus_space_read_region_4() to copy both type1 and type4 ↵Michael Shalayeff
prom; tested on type4 by me and miod on type1
2003-02-17enqueue the copy that was just made, not the original (probably fixes ↵Jason Wright
kernel/3097, waiting to hear).
2003-02-17whitespace, typos, and compression structure defnsJason Wright
2003-02-17oopsMichael Shalayeff
2003-02-17Add support for the Sun Enterprise 450Henric Jungheim
Reduce the size of a GENERIC kernel by ~190k Remove the nasty pointer/bus_space_handle_t casts Adds debug bus_space code including the ability to trace bus operations (it actually works now). The following rules are now followed (and verfified by the debug code): 1. A "bus_space_handle_t" may only be used with the "bus_space_tag_t" that created it. 2. Only "bus_space_map()" may create "bus_space_handle_t"s. 3. A "bus_space_handle_t" may not be modified after it has been created (other than being destroyed by "bus_space_unmap()"). Thanks to help from mcbride, marc, jason, drahn, to anyone that might have slipped my mind at the moment. ok jason@, deraadt@
2003-02-16KNFTheo de Raadt
2003-02-16KNFJason Wright