summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2006-03-07regenJonathan Gray
2006-03-07Add a few entries found in submitted dmesgs.Jonathan Gray
Also change nForce 4 SATA entires to not be of the form nForce 4 SATA [1-2] to reduce confusion wrt SATA I/II.
2006-03-07It does not make sense to check for IA64 CPUID flag here.Jonathan Gray
ok deraadt@
2006-03-07Check for a few additional CPUID flags.Jonathan Gray
ok deraadt@
2006-03-07Remove last NRND NetBSDisms from tree.Kenneth R Westerback
ok deraadt@ brad@
2006-03-06syncTheo de Raadt
2006-03-06ricoh sd/mmc controllerTheo de Raadt
2006-03-06Remove accidentally committed debug printf.Mark Kettenis
2006-03-06Make UDMA on the VT8237 work again.Mark Kettenis
ok jsg@, grange@
2006-03-06deal w/ uvm_km_alloc() returning null; tedu@ okMichael Shalayeff
2006-03-06Synch bits of the i386 and amd64 ioapic code.Mark Kettenis
Make ioapic redirect register writes atomic on amd64 just like on i386. ok niklas@, grange@
2006-03-06do not panic unwiring unmapped memory (mmap3 regress); from netbsd; ↵Michael Shalayeff
kettenis@ tedu@ ok
2006-03-06get rid of questionable macro gore.Henning Brauer
a 200+ lines diff, but no binary change.
2006-03-06change a questionable multi-level foo ? a : b construct into readableHenning Brauer
code. no binary change.
2006-03-06more cleanup, again no binary change.Henning Brauer
as the previous changes from a train ride to frankfurt a bit over a week ago
2006-03-06cvhange a KASSERT into a if() .. panic() construct so the binary doesn'tHenning Brauer
change every time a line is added or removed. no functional change.
2006-03-06KNF, cleanup etc, no binary changeHenning Brauer
2006-03-06No longer needed since it is moved to acpihpet.Marco Peereboom
2006-03-06Rename hpet to acpihpet so that all devices use the same naming convention.Marco Peereboom
discussed with jordan.
2006-03-05Remove more NRND NetBSDisms.Kenneth R Westerback
ok marco@
2006-03-05Use more queue macros rather than doing it by hand; ok otto@ krw@Miod Vallat
2006-03-05Sprinkle some tabs and a little cleaning.Brad Smith
2006-03-05Remove NetBSDism NRND. Pointed out by Mickey.Kenneth R Westerback
ok miod@ marco@
2006-03-05Hook acpi to ddb since we need to be able to do some live debugging.Marco Peereboom
Lots and lots of help from miod@ and deraadt@ ok deraadt@ miod@
2006-03-05Simplify ffs_alloccgblk() a lot by not caring about allocatingPedro Martelletto
rotationally optimal blocks. There's no point in doing that anymore. Okay beck@, marco@, tedu@ and krw@. Various testing for a while.
2006-03-05reference the correct man page;Jason McIntyre
ok deraadt miod tom
2006-03-05regenJonathan Gray
2006-03-05Add another two EVDO devices.Jonathan Gray
2006-03-05Update tables after event.Marco Peereboom
Free memory while at it. Register notify handler and use NULL for PNP id.
2006-03-05KNF nit.Marco Peereboom
2006-03-05change the interface type from IFF_POINTOPOINT to the more correctBrad Smith
type of IFF_TUNNEL (Encapsulation interface). ok djm@
2006-03-05revert unrelated change that snuck into the last commit.Brad Smith
2006-03-05tabs are holier than spaces.Brad Smith
2006-03-05remove whitespace at the end of line.Brad Smith
2006-03-05splimp -> splvmBrad Smith
2006-03-04don't set the interface pointer twice in tl_init().Brad Smith
From: Andrey Matveev <evol at online dot ptt dot ru>
2006-03-04remove extraneous brackets.Brad Smith
From Mike Pechkin <mpech at mail dot ru>
2006-03-04Disk interrupts can cause buffers to be returned to the vnd pool, soPedro Martelletto
splbio() is required when allocating. Fixes PR kern/5041, okay tedu@.
2006-03-04With the exception of two other small uncommited diffs this movesBrad Smith
the remainder of the network stack from splimp to splnet. ok miod@
2006-03-04| -> ||Brad Smith
From: Alexey Dobriyan <adobriyan at gmail dot com> on bugs@. ok deraadt@
2006-03-04splimp -> splvmBrad Smith
ok miod@
2006-03-04Add a generic putchar() implementation, which will work with fonts up to 16Miod Vallat
bits wide.
2006-03-04Typos grab bag of the month, eyeballed by jmc@Miod Vallat
2006-03-04oops some debug code was enabled.Marco Peereboom
2006-03-04syncAlexander Yurchenko
2006-03-04Escape $$ in $OpenBSD$, it's not supposed to be expanded.Alexander Yurchenko
2006-03-04Dallas 1-Wire bus support. Includes the following drivers:Alexander Yurchenko
gpioow(4) 1-Wire bus bit-banging through GPIO pin onewire(4) 1-Wire bus driver owid(4) 1-Wire ID family type device owtemp(4) 1-Wire temperature family type device Drivers for RS-232 and USB bus masters will follow. ok deraadt@
2006-03-04Remove probeset() for real this time...Miod Vallat
2006-03-04Add commented out gpio ``pin bus'' drivers section.Alexander Yurchenko
2006-03-04All CAM_* values stored in xs->error must be 'interpreted' byKenneth R Westerback
ah[cd]_done() into XS_* values understood by the SCSI code before returning xs to the tender mercies of the SCSI code. So if we bail out without calling ah[cd]_done(), because the request cdb length is excessive, don't use ah[cd]_set_transaction() to put CAM_REQ_INVALID into xs->error, just jam in XS_DRIVER_STUFFUP as ah[cd]_done() would have. If CAM_REQ_INVALID escapes it will be interpreted as XS_SHORT_SENSE as far as I can tell. This code path should never be trod so the net effect should be minimal.