summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2004-03-12don't leak memory on error, from Patrick LatifiTed Unangst
ok deraadt@ millert@
2004-03-12commented pcmcia stuffTheo de Raadt
2004-03-12sis and dc fit on the floppy tooTheo de Raadt
2004-03-12add sis and dcTheo de Raadt
2004-03-12Oops, declare oosiop.Miod Vallat
2004-03-12Reset scsi bus upon command timeout.Miod Vallat
2004-03-12RegenMiod Vallat
2004-03-12Preliminary port of NetBSD oosiop driver, for NCR53C700 chips, as commonlyMiod Vallat
encountered on the oldest hppa machines. Currently compiled in, but disabled, in the kernel, until it is stable enough - right now read access are fine, but writes eventually time out and do not complete. ok deraadt@
2004-03-11we changed the default buffer cache sizeTheo de Raadt
2004-03-11add more phyTheo de Raadt
2004-03-11If apm_connect() fails, don't try to pass the bios_apminfo_t structureTom Cosgrove
to the kernel, since it won't have been filled in, and since we can't make APM calls if we don't connect (per spec). Also tidy up the error message, to make it clear that it's an APM error. Problem found, and fix tested, by jmc@ ok millert@, weingart@
2004-03-11Avoid a panic by checking for apm_code_len == 0. Fixes a problemTodd C. Miller
found by jmc@. OK markus@ and tom@
2004-03-11Don't call pf_src_tree_remove_state() on error in pf_insert_state(),Ryan Thomas McBride
it's also called in the function which calls pf_insert_state(). Pointed out by Patrick Latifi, ok cedric@ dhartmei@
2004-03-11Honour RB_USERREQ in cats boot()Tom Cosgrove
reminded by miod@, ok deraadt@
2004-03-10Ensure that we obey a user's ddb> boot reboot command even if the systemTom Cosgrove
is cold (during startup). This adds RB_USERREQ to sys/reboot.h, uses it in the ddb commands, and ensures that */*/machdep.c:boot() won't set RB_HALT when cold if this flag is set. ok deraadt@
2004-03-10Don't permit a negative index. Pointed out by Patrick Latifi.Ryan Thomas McBride
2004-03-10Simplify new LUN scanning logic, add diagnostic messages for allKenneth R Westerback
instances of bad LUNs and add SCSIFORCELUN_BUSES and SCSIFORCELUN_TARGETS options. ok miod@ deraadt@. Tested in the Marco Peereboom torture chamber.
2004-03-10skip uvm_loan until later (kernel shrink); idea from markusTheo de Raadt
2004-03-10mpt fitsTheo de Raadt
2004-03-10no need for re-including machine/stdarg.hTheo de Raadt
2004-03-10syncTheo de Raadt
2004-03-10new vscom puc; toni.tiveron@tiscali.itTheo de Raadt
2004-03-10indentTheo de Raadt
2004-03-09undo part from tomTheo de Raadt
2004-03-09simplify the delay stuffTheo de Raadt
2004-03-09Real, inverted, cursor.Miod Vallat
2004-03-09Allow the screen blanker to be disabled; PR#3123Miod Vallat
2004-03-09scratch the -beta partTheo de Raadt
2004-03-09Turn FAULTCHK in a real statement-like macro.Miod Vallat
2004-03-09Correct MANSUBDIR (not enabled during build, though)Miod Vallat
2004-03-09typo; from Martin Reindl <mreindl at catai.org>Xavier Santolaria
ok jmc@.
2004-03-09KNF, ok cedric@ deraadt@Ryan Thomas McBride
2004-03-09Fix multicast on recent sk chipsets. Adapted from a patch by Keith MitchellMatthieu Herrb
in <http://lists.freebsd.org/pipermail/freebsd-hardware/2003-December/000851.html> Ok deraadt@.
2004-03-09Spacing and KNF. Partly from Joris Vink <nimadeus at pandora dot be>.Tom Cosgrove
ok henning@, deraadt@
2004-03-09TyposMiod Vallat
2004-03-09faster cache flushing for fpu context (after save or emulation)Michael Shalayeff
2004-03-09same typo as in mac68k/mac68k/locore.sXavier Santolaria
ok miod@.
2004-03-08typo; from Martin Reindl <mreindl at catai.org>Xavier Santolaria
ok miod@.
2004-03-07Eliminate bit fields and unused fields in mpt_softc.Kenneth R Westerback
Return XS_DRIVER_STUFFUP for all status values we aren't sure of. Mostly from Milos Urbanek.
2004-03-06Remove excessive boot time verbiage.Kenneth R Westerback
2004-03-06Add last 'files' bit to allow mpt driver to be compiled.Kenneth R Westerback
2004-03-06Fix commit botch of .orig files.Kenneth R Westerback
2004-03-06Initial version of driver for LSI MPT devices, like the U320 1030.Kenneth R Westerback
Basically works but much still to fix/implement. From NetBSD via Milos Urbanek and Marco Peereboom.
2004-03-05audio at uaudio works, deraadt@ okAnil Madhavapeddy
2004-03-05Remove duplicate defines. BSD airtools uses WI_STYPE_CTL_CFENDCFACKTodd C. Miller
instead of WI_STYPE_CTL_CFENDACK so for now, just "#define WI_STYPE_CTL_CFENDCFACK WI_STYPE_CTL_CFENDACK" mickey@ OK
2004-03-05Only send route add or delete messages if it's the first identicalRyan Thomas McBride
address being added or the last identical address being removed, respectively. Part of a larger diff approved by markus@ and dhartmei@, API changes held back for now.
2004-03-04Don't spl0() while polling, splbio() is enough and required.Miod Vallat
2004-03-043 buglets.Ted Unangst
if keylen < 0, bad things happen. large keys are useless, limit size and use stack for temp storage bzero of keyctx is unrelated to keylen, wipe whole thing. ok markus tdeval
2004-03-03In vmapbuf(), we actually only need to allow cache snooping, but enforcingMiod Vallat
write through is not necessary.
2004-03-03Make sure than svnd read their disklabel as svnd, not vnd devices.Miod Vallat
ok tedu@