Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-07-21 | Repost ATI FireGL M24 using the emulator. This card is seen on some IBM | Mike Larkin | |
Thinkpad T43p models (and likely others). | |||
2010-07-21 | remove duplicate AP192K_GPIO_XXX macros, | Alexandre Ratchov | |
from Alexandr Shadchin, thanks! | |||
2010-07-21 | disable 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-21 | make ENVY_GPIO_XXX macros card specific, add stub for audiophile 192k | Alexandre Ratchov | |
2010-07-21 | Add 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 a | Jacob Meuser | |
ridiculous value. * encoding expansion factor is always 1. | |||
2010-07-21 | move use_maxpkt out of struct chan, use a local variable in the | Jacob Meuser | |
only function that was using it. | |||
2010-07-21 | Remove reference to non-existent behaviour. | lum | |
ok canacar@ | |||
2010-07-21 | some bits for USB 2.0 playback support. I'm not 100% sure about | Jacob 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-21 | delete #if 0 code we are not going to use; ok marco | Theo de Raadt | |
2010-07-21 | sync | Theo de Raadt | |
2010-07-21 | currently 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-21 | remove gratuitous carriage return that snuck in | Todd T. Fries | |
ok dlg@ | |||
2010-07-21 | sync timingsafe_bcmp() with the one dempsky@ committed to sys/lib/libkern | Damien Miller | |
2010-07-21 | Garbage collect ata_bio's badsect field. | Matthew Dempsky | |
ok deraadt@ | |||
2010-07-20 | support 24-bit encodings. simplify the way supported encodings are | Jacob 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 | |||
2010-07-20 | make the mask code for acpi_enable_onegpe() match other similar code | Theo de Raadt | |
2010-07-20 | opration -> operation | Miod Vallat | |
2010-07-20 | Use an SLIST rather than a TAILQ for the ccb free list. | Michael Knudsen | |
ok krw | |||
2010-07-20 | Make this compile again (was broken in rev 1.24 as far as I can tell), | Michael Knudsen | |
even though we don't actually compile it in any configurations. ok krw | |||
2010-07-20 | print the temperature readings that make us go down; ok kettenis | Theo de Raadt | |
2010-07-20 | Remove setresguid since it is no longer needed. | lum | |
ok matthew@ millert@ deraadt@ | |||
2010-07-20 | disconnect groff_man(7) from the build and install man(7) instead; | Ingo Schwarze | |
"fine" jmc@ "no worries" deraadt@ "looks good" J.C. Roberts | |||
2010-07-20 | do not timeout when stopping DMA channels. | Damien Bergamini | |
from a similar fix to iwlwifi | |||
2010-07-20 | two iterators should be u_int; ok jsg | Theo de Raadt | |
2010-07-20 | Switch some obvious network stack MAC comparisons from bcmp() to | Matthew Dempsky | |
timingsafe_bcmp(). ok deraadt@; committed over WPA. | |||
2010-07-20 | Add OpenSSH's timingsafe_bcmp() to libkern. | Matthew Dempsky | |
ok djm@, deraadt@ | |||
2010-07-20 | daniel dickman has folded the relevant bits of the files being removed | Jason McIntyre | |
into yacc.1 - thanks! ok millert deraadt | |||
2010-07-20 | also use bufq_quiesce() when suspending, and bufq_restart() when resuming, | Theo de Raadt | |
which will result in more stable filesystems during suspend ok kettenis | |||
2010-07-20 | removed an unused proto | Theo de Raadt | |
2010-07-20 | Handle the acpi interrupt controller with proper edge/level handling, | Theo de Raadt | |
wrapped in spltty to avoid racing against the interrupt controller. Repair the gpe bit masking code while there, and do operations in the right order ok kettenis mlarkin, help from jordan at figuring out the order of operations. | |||
2010-07-20 | tsleep() and EWOULDBLOCK was being used incorrectly for fixed minumum | Theo de Raadt | |
delays. tsleep() on an unknown wait channel, to ensure the minimum is met, and that wakeup()'s don't make the delay get restarted over and over.. ok kettenis mlarkin | |||
2010-07-20 | In acpiec_wait() we want to tsleep on an un-known channel, so that | Theo de Raadt | |
we don't get woken up early by a wakeup() ok kettenis; deeply tested on many machines by mlarkin | |||
2010-07-20 | Mark a DMA accessible malloc for later correction. This is | Matthew Dempsky | |
potentially up to 64KB, so we'll need something fancier than dma_alloc(). | |||
2010-07-20 | sync | Theo de Raadt | |
2010-07-20 | remove prototypes for functions that do not exist; ok jordan | Theo de Raadt | |
2010-07-20 | Instead of checking for the *etcXX.tgz filename, check whether the | Antoine Jacoutot | |
tarball contains ./var/db/sysmerge/etcsum or ./var/db/sysmerge/xetcsum. First, it's more correct and second it allows people to rename the sets without sysmerge bailing out. feature requested and tested by oga@ | |||
2010-07-20 | Another hand rolled offsetof(), replace with mask2prefixlen from kroute.c | Claudio Jeker | |
which was copied from bgpd. Found by deraadt@ | |||
2010-07-20 | VGA repost for ATI Radeon X1250IGP (as found on Gateway netbooks and | Mike Larkin | |
others). Repost via emulator or real mode code, either one works. Used the emulator to keep it consistent with other Radeon devices already listed. | |||
2010-07-20 | When we're preparing to go to sleep, only call bufq_restart() if other | Matthew Dempsky | |
preparations failed. ok kettenis@, thib@, deraadt@ | |||
2010-07-20 | exp2() is a function in libm, so rename the csh one.. | Theo de Raadt | |
2010-07-20 | delete unused variable | Theo de Raadt | |
2010-07-20 | do not use gcc -W options which you do not understand | Theo de Raadt | |
2010-07-20 | Do not put a data buffer on the stack. It will be dma'd to. Use | Theo de Raadt | |
malloc() for now, but mark it is dma reachable, and we will pick it up on the sweep in a while ok matthew | |||
2010-07-20 | typo; martin.pelikan@gmail.com | Theo de Raadt | |
2010-07-20 | sub-function needs const, too | Theo de Raadt | |
2010-07-19 | just use a buffer and make onewire_crc16() operate like onewire_crc() | Theo de Raadt | |
from j0@cox.net (author of owctr) | |||
2010-07-19 | merge from bsd.lv (minor improvements by kristaps@) | Ingo Schwarze | |
* remove \s documentation, we do not support it and don't plan to * note that we parse and ignore \m, \M, and \s escapes * fix two broken instances of \*q * we do not use empty macro lines before .SH headers | |||
2010-07-19 | Rollback the allproclk and fileheadlk addition. When grabbing an | Philip Guenthe | |
rwlock, the thread will release biglock if it sleeps, means that atomicity from before the rw_enter() to after it is not guaranteed. The change didn't address those, so pulling it until it does. "go for it" tedu@ | |||
2010-07-19 | * briefly mention the HISTORY of the man(7) language | Ingo Schwarze | |
* update the copyright notice * improve the wording in a few places * fix a couple of typos including two suggestions from J.C. Roberts feedback and ok jmc@, ok sobrado@ and kristaps@ |