summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-07-22In safte_match(), return 0 on SCSI errors, not an errno value. FixesMatthew Dempsky
regression from scsi_scsi_cmd() removal. ok dlg@
2010-07-22Appropriately set SCSI_DATA_IN or SCSI_DATA_OUT depending on type ofMatthew Dempsky
dvd_auth command. Fixes regression from scsi_scsi_cmd() removal. ok dlg@
2010-07-22SCSI HBA drivers are supposed to get their SCSI CDBs from xs->cmd, notMatthew Dempsky
xs->cmdstore. ok krw@ a while back (contingent upon testing), and deraadt@ says this has been in snapshots for weeks now.
2010-07-22syncTheo de Raadt
2010-07-22remove unused variableTheo de Raadt
2010-07-22Eliminate scsi_scsi_cmd() now that ss(4) is gone and with it theKenneth R Westerback
last bastardized sync and buf call through scsi_scsi_cmd(). Flatten code to call scsi_xs_sync() directly for all commands. Airplane typos shaken out by various. ok dlg@ matthew@ deraadt@
2010-07-21Some ss(4) bits escaped the purge, eliminate them.Nicholas Marriott
ok todd krw
2010-07-21remove unnecessary ``return 0'' statements,Alexandre Ratchov
from Remco <remco at d-compu.dyndns.org>, thanks!
2010-07-21In the SYNOPSIS, .Nm at the beginning of an input line startsIngo Schwarze
an .Nm block, and gets special handling (new line, indentation). But .Nm in the middle of a line is just a normal in-line element, so make sure it does NOT get the special handling. Partly fixes the test(1) SYNOPSIS; indentation after "[" is still excessive, which is an unrelated and more difficult issue. Reminded of the problem by jmc@; OK kristaps@.
2010-07-21let mpath build again even though it is disabledTodd T. Fries
ok dlg@
2010-07-21urndis supports the HTC Wildfire just fine. Tested here.Edd Barrett
OK mk@
2010-07-21Disable the heuristics for legacy free systems if pckbc flags are set to 1Miod Vallat
in UKC; found the hard way by jakemsr@ on an old Tecra laptop.
2010-07-21document exit values; from daniel dickmanJason McIntyre
2010-07-21document exit values; from daniel dickmanJason McIntyre
2010-07-21fix the barmy exit returns formatting; from daniel dickmanJason McIntyre
2010-07-21missing argument to Ex; from daniel dickmanJason McIntyre
2010-07-21more HISTORY; from daniel dickmanJason McIntyre
2010-07-21more consistent text for our return values; from daniel dickmanJason McIntyre
2010-07-21in the acpi GPE handler, late ack level interrupts not edge interrupts.Theo de Raadt
Duh.
2010-07-21spacing and indents that are driving me crazyTheo de Raadt
2010-07-21ptm needs no read/write, just use enodev.Nicholas Marriott
ok deraadt
2010-07-21No need for read/write functions, just use enodev like all the otherTheo de Raadt
things things do ok nicm
2010-07-21Search filter BER tags use a context-specific class, not an applicationMartin Hedenfal
class. This allows ypldap to talk to ldapd, which otherwise refuses the search filter. ok gilles@
2010-07-21document fortran moduleSteven Mestdagh
2010-07-21reverse logic in previousSteven Mestdagh
2010-07-21update gcc3 and gcc4 modules with COMPILER_VERSION instead of USE_GCC[34]Steven Mestdagh
2010-07-21Fix more cdev initializations which were using enodev for poll; ok kettenisTheo de Raadt
2010-07-21clean up a pile of prototypes and shred some macros which were just coveringTheo de Raadt
for ones everyone knows better
2010-07-21Merge the edge and level gpe handlers into one (now possible since theTheo de Raadt
gpe structure tells us whether the gpe is edge or level)
2010-07-21fix NULL-deref, ok martinh@Gilles Chehade
2010-07-21Make sure that the FPU IPIs shoot down the right FPU context and not the FPUMark Kettenis
context of some random process that happened to be switched onto the FPU after the decision was made to send the IPI.
2010-07-21Add suspend/unsuspend logic.Mark Kettenis
ok damien@, deraadt@
2010-07-21add a couple quirks for the E-MU 0202Jacob Meuser
* the clock rate is configured through the audio interface, instead of on the endpoint. * since the clock rate is set on the interface, both play and record must use the same sample rate. this means the playback and recording parameters are not independent, which is what uaudio assumes.
2010-07-21Only use username if author is NULL. Fixes "ci -wusername" when runRay Lai
as root. OK nicm
2010-07-21Repost ATI FireGL M24 using the emulator. This card is seen on some IBMMike Larkin
Thinkpad T43p models (and likely others).
2010-07-21remove duplicate AP192K_GPIO_XXX macros,Alexandre Ratchov
from Alexandr Shadchin, thanks!
2010-07-21disable vscsi until we actually have something that uses it (like iscsid),David Gwynne
and until matthew@ is happy with it. suggested by deraadt@
2010-07-21make ENVY_GPIO_XXX macros card specific, add stub for audiophile 192kAlexandre Ratchov
2010-07-21Add a history section saying that ldapd/ldapctl first appeared in 4.8.Martin Hedenfal
2010-07-21* check that the bytes per frame the device is reporting isn't aJacob Meuser
ridiculous value. * encoding expansion factor is always 1.
2010-07-21move use_maxpkt out of struct chan, use a local variable in theJacob Meuser
only function that was using it.
2010-07-21Remove reference to non-existent behaviour.lum
ok canacar@
2010-07-21some bits for USB 2.0 playback support. I'm not 100% sure aboutJacob Meuser
scaling the frame rate to the polling interval, but it works on the E-MU 0202 and it generally makes a lot of sense, especially considering that this often brings the frames rate back to 1 kHz, which is the frame rate of USB 1.x, which was the most current USB spec when USB audio 1.0 spec was written.
2010-07-21delete #if 0 code we are not going to use; ok marcoTheo de Raadt
2010-07-21syncTheo de Raadt
2010-07-21currently we use the endpoint's maximum packet size for recording,Jacob Meuser
and for playback, we use a packet size that is at least one audio frame smaller. in most usb audio devices, the sample clock is synced to the usb clock. this means that for sample rates that aren't multiples of 1000, we'll occasionally need to add a frame to adjust the overall rate. that's why we use the smaller packet size. also, the usb audio spec defines a way for devices to request to always use the maximum packet size. so, * add a max_bytes_per_frame, which is the largest packet size the channel will use. use that instead of calculating what the maximum we will use is in a couple places. generally makes things easier to understand. * respect a device's request to always use maximum packet size.
2010-07-21remove gratuitous carriage return that snuck inTodd T. Fries
ok dlg@
2010-07-21sync timingsafe_bcmp() with the one dempsky@ committed to sys/lib/libkernDamien Miller
2010-07-21Garbage collect ata_bio's badsect field.Matthew Dempsky
ok deraadt@
2010-07-20support 24-bit encodings. simplify the way supported encodings areJacob Meuser
handled by storing an array of supported encodings. NOTE: this also removes all conversions from this driver. in particular, uaudio no longer supports 16-bit big endian encodings, because the USB audio specification only supports little endian encodings. ok ratchov