summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2001-03-04typoArtur Grabowski
2001-03-04Better diagnostics for locking errors. Fix panic before panic inConstantine Sapuntzakis
acquire_lock_interlocked. Thanks to Grigoriy Orlov for triggering this one.
2001-03-04Fix use of timeouts. Thanks to Grigoriy Orlov (gluk)Constantine Sapuntzakis
2001-03-04These file systems don't do softudpates.Constantine Sapuntzakis
2001-03-04fix typo in comment, org -> orBrad Smith
2001-03-03cnkqfilter for sparcNiels Provos
2001-03-03use AC97_HOST_DONT_READANY since some machines are unreliableTheo de Raadt
2001-03-03new AC97_HOST_DONT_READANY flag for ac97 chipsets that are _really_ on drugsTheo de Raadt
2001-03-03Lower NKMEMCLUSTERS by a factor of 2 from 32768*1024/NBPG to 16384*1024/NBPG.Todd C. Miller
Fixes problems on 64meg and 256meg machines; OK'd by deraadt@
2001-03-03Allow the syncer to get pages from the pagedaemon reserve.Artur Grabowski
Otherwise we can end up in a situation where the syncer waits for pages and the pagedaemon waits for buffers.
2001-03-03extern initproc.Artur Grabowski
2001-03-03export the syncerproc variable.Artur Grabowski
2001-03-03complete wscons support for abd keyboard. -moj ok @deraadtMats O Jansson
2001-03-03Add ADB keyboard and umass device to powerpc RAMDISK kernel.Dale Rahn
2001-03-03Force the ADB bus to configure. This change was found in NetBSD, but theyDale Rahn
have since removed it. It is probably not the correct solution, but makes it closer to working.
2001-03-03Change how PCI bus memory base address is found for powerpc.Dale Rahn
This is probably quite a hack. however some bridges have multiple "memory" segment according to the openfirmware data. one is the pci device probe register area, and the one or two more that are real address regions. Such as base 0x80000000 sz 0x10000000, base 0x90000000 sz 0x10000000. This should really be one region but detecting the "last" region to avoid the first region causes the wrong base address to be picked. Currently this hardcodes it to 0x80000000 because it seems to work for "normal" pci currently. openfirmware puts full address in the field and the other devices seem to work on tested machines.
2001-03-03Support ADB keyboards as console. Only use adb if no USB keyboard isDale Rahn
present. Code mostly borrowed from NetBSD.
2001-03-03Quiet down pmap code, this is mostly shaken out now, remove some ofDale Rahn
the debug code.
2001-03-03syncTheo de Raadt
2001-03-03Apple Titanium laptop videoTheo de Raadt
2001-03-03Fix typo, "edx" -> "%edx", so that the %edx register is properly protectedAaron Campbell
from clobbering; mickey@ ok.
2001-03-03on parse error of timestamp option, set parameter error offset correctly.Jun-ichiro itojun Hagino
2001-03-03drop packets with 127.0.0.0/8 in header field, if the packet is from outside.Jun-ichiro itojun Hagino
under RFC1122 sender rule 127.0.0.8 must not appear on the wire. count incidents by ipstat.ips_badaddr. sync with kame
2001-03-02add #define __STRICT_ALIGNMENTJason Wright
2001-03-02Allow kernel to compile again.Marc Espie
2001-03-02pcidevs.hTheo de Raadt
2001-03-02new lavaTheo de Raadt
2001-03-02Reserve more pages for the pagedaemon and the kernel.Artur Grabowski
With soft updates, writing out pages to disk can cause a bunch of allocations.
2001-03-02print the interrupt, and pack to one lineTheo de Raadt
2001-03-02Casting magic to avoid warnings on alpha.Artur Grabowski
2001-03-02remove date string from KAME version identification, it is getting meaninglessJun-ichiro itojun Hagino
as we merge random items daily. have comment that refers to kame COVERAGE document. sync with kame
2001-03-02Fix isp_print_qentry to print all four lines- it's been broken for months.mjacob
2001-03-02Support video controllers which have two outputs which in openfirmware haveDale Rahn
two children of which the "screen" device is one. This exists on some laptop systems.
2001-03-01Wrap KS_Cmd_KbdReset in #ifdef __i386__ for now; politely pointed to this byAaron Campbell
drahn@, snarked at by mickey@ ;)
2001-03-01Fix (or a least hack around) console configuration changes to wscons.Dale Rahn
Needs to be looked at closer, but seems to work. Mostly copied from i386.
2001-03-01Fix compilation problems caused by last updateConstantine Sapuntzakis
2001-03-01syncNiels Provos
2001-03-01port kqueue changes from freebsd, plus all required openbsd glue.Niels Provos
okay deraadt@, millert@ from jlemon@freebsd.org: extend kqueue down to the device layer, backwards compatible approach suggested by peter@freebsd.org
2001-03-01Typo police: various misspelling, capitalizations, etc.Kenneth R Westerback
2001-03-01(all changes made behind #ifdef __vax__)Brandon Creighton
For the vax, write CSR0 in two steps instead of one. Why? DEC says so. This eliminates most (or all) of the le* timeout errors under heavy cpu/net usage. Fix from netbsd.
2001-03-01Add CTRL-ALT-DEL machine reset support, like PCVT had, enabled by theAaron Campbell
machdep.kbdreset sysctl as configured in /etc/sysctl.conf.
2001-03-01pull in ctype.h, since <poll.h> and <sys/poll.h> have to be useable alone; ↵Theo de Raadt
problem noted by bk@rt.fm
2001-02-28shorter thus better printingsMichael Shalayeff
2001-02-28Get rid of VHOLD, replace with buf_replacevnode.Constantine Sapuntzakis
2001-02-28proper bang placementMichael Shalayeff
2001-02-28double the fixed storage size for io*_ex; deraadt@ okMichael Shalayeff
2001-02-28Add ability to get display width in bytes for display memory, thisDale Rahn
may be the same as visual width or larger. This is seen on iMacDV systems running at 640x480 or 800x600 with a linebytes of 1024.
2001-02-28better print due to theo's suggestionMichael Shalayeff
2001-02-28make compile; update for pci, cardbus, usb, pcmciaTodd T. Fries
2001-02-28do not blindely bus_space_ma the vga bios,Michael Shalayeff
it could be of a different size than 0x8000, and now bios(4) does it for us the right way. besides, would the prom be at the same address on non-i386?