Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-03-10 | Simplify new LUN scanning logic, add diagnostic messages for all | Kenneth 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-10 | skip uvm_loan until later (kernel shrink); idea from markus | Theo de Raadt | |
2004-03-10 | mpt fits | Theo de Raadt | |
2004-03-10 | no need for re-including machine/stdarg.h | Theo de Raadt | |
2004-03-10 | sync | Theo de Raadt | |
2004-03-10 | new vscom puc; toni.tiveron@tiscali.it | Theo de Raadt | |
2004-03-10 | indent | Theo de Raadt | |
2004-03-09 | undo part from tom | Theo de Raadt | |
2004-03-09 | simplify the delay stuff | Theo de Raadt | |
2004-03-09 | Real, inverted, cursor. | Miod Vallat | |
2004-03-09 | Allow the screen blanker to be disabled; PR#3123 | Miod Vallat | |
2004-03-09 | scratch the -beta part | Theo de Raadt | |
2004-03-09 | Turn FAULTCHK in a real statement-like macro. | Miod Vallat | |
2004-03-09 | Correct MANSUBDIR (not enabled during build, though) | Miod Vallat | |
2004-03-09 | typo; from Martin Reindl <mreindl at catai.org> | Xavier Santolaria | |
ok jmc@. | |||
2004-03-09 | KNF, ok cedric@ deraadt@ | Ryan Thomas McBride | |
2004-03-09 | Fix multicast on recent sk chipsets. Adapted from a patch by Keith Mitchell | Matthieu Herrb | |
in <http://lists.freebsd.org/pipermail/freebsd-hardware/2003-December/000851.html> Ok deraadt@. | |||
2004-03-09 | Spacing and KNF. Partly from Joris Vink <nimadeus at pandora dot be>. | Tom Cosgrove | |
ok henning@, deraadt@ | |||
2004-03-09 | Typos | Miod Vallat | |
2004-03-09 | faster cache flushing for fpu context (after save or emulation) | Michael Shalayeff | |
2004-03-09 | same typo as in mac68k/mac68k/locore.s | Xavier Santolaria | |
ok miod@. | |||
2004-03-08 | typo; from Martin Reindl <mreindl at catai.org> | Xavier Santolaria | |
ok miod@. | |||
2004-03-07 | Eliminate 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-06 | Remove excessive boot time verbiage. | Kenneth R Westerback | |
2004-03-06 | Add last 'files' bit to allow mpt driver to be compiled. | Kenneth R Westerback | |
2004-03-06 | Fix commit botch of .orig files. | Kenneth R Westerback | |
2004-03-06 | Initial 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-05 | audio at uaudio works, deraadt@ ok | Anil Madhavapeddy | |
2004-03-05 | Remove duplicate defines. BSD airtools uses WI_STYPE_CTL_CFENDCFACK | Todd 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-05 | Only send route add or delete messages if it's the first identical | Ryan 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-04 | Don't spl0() while polling, splbio() is enough and required. | Miod Vallat | |
2004-03-04 | 3 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-03 | In vmapbuf(), we actually only need to allow cache snooping, but enforcing | Miod Vallat | |
write through is not necessary. | |||
2004-03-03 | Make sure than svnd read their disklabel as svnd, not vnd devices. | Miod Vallat | |
ok tedu@ | |||
2004-03-03 | The socket number diagnostic check was simply crying out for unsigned | Miod Vallat | |
arithmetic... | |||
2004-03-03 | remove bufq support until i figure out just what's going wrong. ok deraadt@ | Ted Unangst | |
2004-03-03 | Handle 68060 branch prediction error traps before checking whether we are | Miod Vallat | |
ignoring bus errors. | |||
2004-03-03 | allow force umount here too | Ted Unangst | |
2004-03-03 | repair status by not repeating fields. fixes pr2101 from jim razmus | Ted Unangst | |
2004-03-03 | better way of finding and identifying lkms. | Ted Unangst | |
adapted from pr2910 by peter werner, minus lkmfree removals since i couldn't tell what issue they were fixing. | |||
2004-03-03 | support forced unmounts. pr2394 from peter werner | Ted Unangst | |
2004-03-03 | save room for nul, so we can unmount later. pr2327 from peter werner | Ted Unangst | |
2004-03-03 | Add SYMBIOS devices for upcoming mpt driver. | Kenneth R Westerback | |
From NetBSD via Milos Urbanek and Marco Peereboom. | |||
2004-03-03 | Add SYMBIOS devices for upcoming mpt driver. | Kenneth R Westerback | |
From NetBSD via Milos Urbanek and Marco Peereboom. | |||
2004-03-02 | In process_set_pc() and process_set_regs(), disallow unaligned pc and npc | Miod Vallat | |
values. Workaround against PR #3663. ok deraadt@ | |||
2004-03-02 | Rework the card insertion/removal detection logic: | Miod Vallat | |
- instead of queueing events each time the sense information changes, only remember that the slot needs attention - when processing a slot needing attention, decide what to do depending upon its current sense information, rather than what it was when the change was detected - handle the ``only one sensor asserted'' state happening during slow insertion or removal. This makes the driver much more reactive to insertions and removals, and also removes unnecessary attach/detach calls. ok deraadt@ | |||
2004-03-02 | don't leak mbuf if uiomove fails; from netbsd; | Markus Friedl | |
ok henning, cedric, claudio, deraadt | |||
2004-03-02 | 68040 boards would not set address error and bus error trap vectors correctly; | Miod Vallat | |
fix inspired by the hp300 code. | |||
2004-03-02 | Fix timing issues with newer Prism firmware and retry card reset up | Todd C. Miller | |
to three times (only once for Symbol though). This fixes intermittent problems on Prism-based cards with newer firmware. Tested with a wide variety of cards and firmware revisions. OK mickey@ | |||
2004-03-02 | Make HostAP work Prism cards with newer firmware (1.7.0 and higher). | Todd C. Miller | |
Accept probe packets that Lucent cards send when the associated AP disapears; this speeds up reassocication with those cards. Don't advertise HostAP as being available for firmware 1.4.2. I added a note about this in the man pages a while ago but forgot to update the driver itself. OK mickey@ |