summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2004-09-23make it compile with _STANDALONE, ok deraadt@Per Fogelstrom
2004-09-23Clean clean clean... should be OK nowPer Fogelstrom
2004-09-23More pmap bugs cleaned out. Some old, some new.Per Fogelstrom
Better structured pmap.c. Evil still in there, more work to do.
2004-09-23vput on all paths after vget (currently unused code). from patrick latifiTed Unangst
2004-09-23- remove EVFILT_WRITE in bpfkqfilter() switch case, handledBrad Smith
by default label. - fill in kn_data with the number of bytes available, same behavior as FreeBSD/NetBSD. ok tedu@
2004-09-22the following patch fixes a bug preventing midi uarts that doTheo de Raadt
not support interrupts on output, from writing blocks larger than MIDI_MAXWRITE bytes. tested on both kinds of devices from alex-contact@caoua.org
2004-09-22Bring some enhancements and fixes to fdc(4) from NetBSD:Miod Vallat
- better state machine, will prevent "eject fd0" with an empty drive to spin. - will not attach fd children to fdc if no floppy drive is present (though the PROM usually finds this for us). - use biowait() in fdformat() instead of rolling our own. - drop 5"1/4 formats table. - cope with non 512 bytes per sector formats.
2004-09-22Bring in libsa code for proper %llx printf display; necessary for /boot.Miod Vallat
ok deraadt@
2004-09-22Add code to let 32bit code *printf() {u,}int64_t values.Miod Vallat
Only enabled if libsa is compiled with the adequate define, so as not to grow bootblocks which do not need this feature. ok deraadt@
2004-09-22infrastructure for central, fhc(mainbus/central), and clock@fhcJason Wright
2004-09-22firehose controller driver (not quite working) for the e4500 (and others)Jason Wright
2004-09-22account for linkhdr size when choosing mbufs vs mbuf clustersTheo de Raadt
ok dhartmei markus claudio henning mcbride ...
2004-09-22driver for the "central" controller on the E4500 (and others) [fhc and ↵Jason Wright
others to follow]
2004-09-22Add systrace support.Miod Vallat
2004-09-22syncAlexander Yurchenko
2004-09-221210SA is not a SiI product really.Alexander Yurchenko
2004-09-22syncAlexander Yurchenko
2004-09-22Another Aralion chip ARS0303D ATA133.Alexander Yurchenko
Device id obtained from the linux driver provided by Alexey E. Suslikov <cruel@texnika.com.ua>.
2004-09-22Remove unused option CPU.Alexander Yurchenko
ok deraadt@
2004-09-22On single SCSI slot O2's the first disk is numbered 2 (the slot number)Per Fogelstrom
by the ARCS Bios. To make the kernel pick up the right sd number offset the slots if the CPU is a R10K or larger. R10K's and up are those with single disk slots. A more correct solution would be to dig down and check the SCSI ID's, but right now this solutions works OK.
2004-09-22Partially revert 1.9, the new mod/ref accounting has issues with mmap().Miod Vallat
2004-09-21change sbus0 to sbus* for consistency, miod@Dale Rahn
2004-09-21Allow for multiple sbus host bridges. eg, on e4500. from jason, ok miodDale Rahn
2004-09-21Do not retrigger the screen blanker if one change its settings throughMiod Vallat
wsconsctl, while running X11.
2004-09-21Implement "no scrub" to allow exclusion of specific traffic from scrub rules.Aaron Campbell
First match wins, just like "no {binat,nat,rdr}". henning@, dhartmei@ ok
2004-09-21syncAlexander Yurchenko
2004-09-21New vendor Aralion Inc. and its raid ARS106S.Alexander Yurchenko
New Silicon Image raid SiI1210SA. Found in dmesgs from Alexey E. Suslikov <cruel@texnika.com.ua>.
2004-09-21Keep providing a 32bit only version of bzero() #ifdef _STANDALONE, asMiod Vallat
bootblocks are compiled as 32bit code.
2004-09-21nswbuf is long dead; also silence debug printf unless option DEBUG.Miod Vallat
2004-09-21trap() should return a 64 bit value now.Miod Vallat
2004-09-21Make RM7K get L3 cache from config reg. cleanupPer Fogelstrom
2004-09-21$OpenBSD$ tagAlexander Yurchenko
2004-09-21/dev/ptm support for sgi.Miod Vallat
2004-09-21re-add RCS id after last commitBrad Smith
2004-09-21Previous commit removed proper caching when growing segmaps by mistake;Miod Vallat
spotted by pefo@
2004-09-21Nuke commons.Miod Vallat
2004-09-20Fix order of operations for m_gethdr(), found a bit ago, commit after secondDale Rahn
prodding.
2004-09-20syncTheo de Raadt
2004-09-20more uplcom and umct; jsg@goblin.cx pulled from netbsdTheo de Raadt
2004-09-20regenMichael Shalayeff
2004-09-20IRE is really AD and thus rename those and add a few devicesMichael Shalayeff
2004-09-20Move <machine/pte.h> to mips64 land.Miod Vallat
2004-09-20pf_routable(), used for the no-route keyword, was a v4 only implementation,Henning Brauer
and behaved incorrectly when used with v6. impliment the v6 case too. ok canacar mcbride
2004-09-20regenMichael Shalayeff
2004-09-20hp pci bridge idMichael Shalayeff
2004-09-20addres -> addressMiod Vallat
2004-09-20syncAlexander Yurchenko
2004-09-20Add nvidia nforce3 250 audio. From FreeBSD via deraadt@.Alexander Yurchenko
``go for it'' deraadt@
2004-09-20There was one CF_5_xx constant left in the 52xx code, change it to CF_52_xxMiod Vallat
(purely cosmetic, as these constant share the same values).
2004-09-20// is not valid in asm. doh...Per Fogelstrom