summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
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@
2004-03-03The socket number diagnostic check was simply crying out for unsignedMiod Vallat
arithmetic...
2004-03-03remove bufq support until i figure out just what's going wrong. ok deraadt@Ted Unangst
2004-03-03Handle 68060 branch prediction error traps before checking whether we areMiod Vallat
ignoring bus errors.
2004-03-03allow force umount here tooTed Unangst
2004-03-03repair status by not repeating fields. fixes pr2101 from jim razmusTed Unangst
2004-03-03better 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-03support forced unmounts. pr2394 from peter wernerTed Unangst
2004-03-03save room for nul, so we can unmount later. pr2327 from peter wernerTed Unangst
2004-03-03Add SYMBIOS devices for upcoming mpt driver.Kenneth R Westerback
From NetBSD via Milos Urbanek and Marco Peereboom.
2004-03-03Add SYMBIOS devices for upcoming mpt driver.Kenneth R Westerback
From NetBSD via Milos Urbanek and Marco Peereboom.
2004-03-02In process_set_pc() and process_set_regs(), disallow unaligned pc and npcMiod Vallat
values. Workaround against PR #3663. ok deraadt@
2004-03-02Rework 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-02don't leak mbuf if uiomove fails; from netbsd;Markus Friedl
ok henning, cedric, claudio, deraadt
2004-03-0268040 boards would not set address error and bus error trap vectors correctly;Miod Vallat
fix inspired by the hp300 code.
2004-03-02Fix timing issues with newer Prism firmware and retry card reset upTodd 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-02Make 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@
2004-03-02track va for each segment and not for the whole map.Michael Shalayeff
simplifies the cache syncing a lot. testing by miod@ and mickey@
2004-03-02limit total number of queued out-of-order packets to NMBCLUSTERS/2; ok mcbrideMarkus Friedl
2004-03-02call fifo_reclaim here tooTed Unangst
2004-03-02silly fifos aren't a real fs, so we have to be sure to call reclaimTed Unangst
in the host fs.
2004-03-02prevent memory leak on revoke by freeing resources in a real reclaimTed Unangst
function. also check fifoinfo is valid before deref. ok millert@
2004-03-02disable COMPAT_25; ok miod millertTheo de Raadt
2004-03-01Initialize the frame buffer when the PROM did not do this on our behalf.Miod Vallat
2004-03-01More readable DAC programming.Miod Vallat
2004-03-01rfx fits on the installation media.Miod Vallat
2004-03-01Define a wsdisplay type for rfx; ok deraadt@Miod Vallat
2004-02-29Enter rfx, driver for the SBus RasterFlex frame buffer family.Miod Vallat
Currently 8-bit only for now. This apparently completes the SBus frame buffer support list - yet if you stumble upon an unsupported SBus frame buffer, I'd love to hear about it...
2004-02-29More colormap games for 8-bit framebuffers to enjoy the inverted cursor too.Miod Vallat
2004-02-29Check for negative numbers.Tobias Weingartner
ok grange@
2004-02-28MTRR not yetTheo de Raadt
2004-02-28MTRR on by defaultTheo de Raadt
2004-02-28syncTheo de Raadt
2004-02-28crunch it smallerTheo de Raadt
2004-02-28rename our NPXCW settingTheo de Raadt
2004-02-28most USB devicesTheo de Raadt
2004-02-28em(4) on floppyTheo de Raadt
2004-02-28copy from i386, no changes yetTheo de Raadt
2004-02-28Initialize MXCSR when FPU is first used. ok deraadt@Thomas Nordin