summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-10-30Fix bug that when there are no volumes but there are hot spares it wouldMarco Peereboom
no show the hotspares.
2008-10-30only few (frequency, blocksize) pairs are compatible with both resamplingAlexandre Ratchov
and block based audio i/o (arithmetic constraints). For now round the frequency to a supported one, (ie 8kHz, 11.025kHz, 12kHz multiple), and get the the block size from a table. fixes problem reported by Robert <robert _at_ openbsd.pap.st> ok jakemsr
2008-10-30since people often ask, add BUGS entry to explain whyAlexandre Ratchov
aucat should be started automatically yet at system startup help from jmc@
2008-10-30Use msleep() in the reaper to make it not lose events. Based on discussionTheo de Raadt
PR 5609, and revisited with dlg. Tested on all platforms. ok miod
2008-10-30Arpresolve could loose few packets during resolving an ethernetJoerg Goltermann
address. This cvs commit introduces a queue that buffers a small burst of packets and resending the packets in correct order when the ethernet address is resolved. Code written by Armin Wolfermann <aw@osn.de>. OK: claudio@ henning@
2008-10-30fix broken section heading;Jason McIntyre
2008-10-30From Jeremy Morse via NetBSD:Marcus Glocker
* Serialize access to the ehci intrlist. * Change the ehci intrlist to a tailq so xfers are not queued out of order. * In ehci_check_itd_intr, don't treat a transfer error as an indication that the xfer is no longer active. This also fixes "ehci_allocx not free" errors seen recently. Tested and OK brad@, kevlo@
2008-10-30ugh, typo fix, committed previous from the wrong treeTodd T. Fries
2008-10-30patches for macppc to remove more EINVAL returns in the audio codeTodd T. Fries
tested by me, from ratchov@, please commit ratchov@
2008-10-30for devices that do not allow independent setting of recording andJacob Meuser
playback parameters (like the macppc i2s devices), be sure to synchronise recording parameters to playback parameters when configuring for full-duplex operation, as audio(4) dictates. ok ratchov
2008-10-29chmod(2) the aucat socket, as if aucat(1) was started withAlexandre Ratchov
umask = 0, this allows one user to start the server and another user to use it (eg. _mpd). ok todd, deraadt, jakemsr
2008-10-29add a flag to know is this is Audigy 2 ValueJacob Meuser
2008-10-29support for Audigy 2 Value based on patch from Dennis SuhoninJacob Meuser
(openlunatic at gmail). tested by Dawe (dawedawe at gmx de), thanks, and me. does not disturb currenlty working emu(4) devices.
2008-10-29Mention bio support for cac(4).Brad Smith
2008-10-29Add initial bio support; only volume status is handled.Brad Smith
Based on cac(4) bio support from NetBSD which is derived from OpenBSD's ciss(4) bio support. Tested by otto@ jbg@ ok marco@
2008-10-29Bring pd structure up to dateMarco Peereboom
2008-10-29tweak previous;Jason McIntyre
2008-10-29some macro fix up;Jason McIntyre
2008-10-29if MALLOC_STATS is defined, record how many "cheap reallocs" wereOtto Moerbeek
tried and how many actually succeeded.
2008-10-29Xr OpenBSD::Intro(3p)Marc Espie
2008-10-29come on -- this was not even test compiledTheo de Raadt
2008-10-29document LIBSIO_DEBUGTodd T. Fries
ok ratchov@
2008-10-29- Add a workaround field to the softc struct.Brad Smith
- Move the extended FIFO workaround from the capabilities field to the workaround field. - Add General purpose register 1 defines for the workarounds. - Enable a workaround for CRC errors that can be experienced with A2 revision adapters. - Add a workaround for packet loss that can be experienced with A2 revision adapters when in 10/100 mode with half duplex. From DraonFly - Rename the workaround flags so they describe what is being worked around. ok jsg@
2008-10-29dlg says "well, that is embarassing"Theo de Raadt
2008-10-29no need to warn about using the default device; Thomas PfaffTheo de Raadt
2008-10-29native default parameters for i2s devices instead of 8kHzJacob Meuser
mulaw mono, which few can even do. "Please just get this in." brad@
2008-10-28syncTheo de Raadt
2008-10-28make DRM_INFO() a bit less gross, though getting all the grossness out at ↵Theo de Raadt
once is impossible; ok oga
2008-10-28Do not keep retrying to send advertisements if there isMarco Pfatschbacher
no carpdev configured. I don't see how we can run into this at all, but let's leave this test for a a little extra safety. OK henning@
2008-10-28fix missing n in error messageAlexandre Ratchov
2008-10-28sio_initpar() is supposed to return void like the documentationJonathan Gray
says according to ratchov@. Make it so, and crank major. ok ratchov@
2008-10-28Always skip "urpf-failed" test for IPv6 link local addresses.Marco Pfatschbacher
We could re-embed the scope-id before we do the route lookup, but then we would just find the very interface we've received the packet on anyway. OK markus@, claudio@, henning@
2008-10-28#if NVLAN > 0 in one more spot.Brad Smith
2008-10-28Use -Werror unconditionnaly again.Miod Vallat
2008-10-28Remove extendsidi2 expansion for now. It works, but since it only fillsMiod Vallat
the two SImode subregs of the DImode destination operand, this confuses the register life analysis and causes gcc to emit wrong warning about values not being initialized. Unfortunately, the fallback logic infers a worse sequence (mov + cmp against zero + ext of the cmp signedness bit, instead of mov + ext of the sign bit), which wastes an instruction and a register. This is hopefully a temporary measure until a nonconfusing flavour of the fast expansion is devised (preferrably one which does not expose the optimize_reg_copy_3 big-endian bug as well).
2008-10-28Fix output when reporting on multivolume disk groups.Marco Peereboom
Reported by mitja@muzenic.net
2008-10-28Add the MacBookPro4,1 to the list of systems with GPIO quirks andBrad Smith
needs adjustment. Allows the integrated speakers to work. from Alexey Suslikov
2008-10-28Avoid infinite recursion in search_string_def() and search_pointer_def(),Miod Vallat
PR #5033; gcc 2.95 will need a similar fix (soon).
2008-10-28Do not leave pmap_cache_state pointing to freed memory if it was theDale Rahn
last process running.
2008-10-28NewUser and NewGroup are subclasses of NewAuthMarc Espie
2008-10-28mention the new pflow(4) features: bpf support and multiple interfacesJoerg Goltermann
OK: henning@
2008-10-28add support for multiple pflow(4) interfacesJoerg Goltermann
OK: claudio@ henning@
2008-10-28clarify usage of gcc3/gcc4 modules a bit more.Steven Mestdagh
ok ajacoutot@
2008-10-28Do the DNS resolution in a seperate process. A lot of code is copied from ntpd.aschrijver
This is necessary because DNS resolution is not possible from a chroot. Cleanup the aldap interface a bit.
2008-10-28#include sensorsMarco Peereboom
2008-10-28- reverse logic for the gcc MODULESAntoine Jacoutot
ok steven@
2008-10-28- document the fact that USE_GCC* is always set when the correspondingAntoine Jacoutot
MODULE is used "go ahead" robert@
2008-10-28Shut splassert upMarco Peereboom
Fix an undo error in previous commit
2008-10-28Be nicer waking up.Marco Peereboom
prompted and ok dlg
2008-10-28Major overhaul of bio.Marco Peereboom
Fix set hotspare that didn't always work. Fix several very subtle bugs because of firmware lies Fix disk size that sometimes was incorrect Only poke drives if something changed so it makes bio way faster on subsequent calls Tested by several folks, thanks Ok dlg