Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-05-22 | Add am335x as an omap device. | rapha | |
ok patrick@ | |||
2013-05-22 | BUS_DMA_WAITOK can't be used in the bge_init path since it | Mike Belopuhov | |
might be called from a timeout(9); ok kettenis, dlg, deraadt | |||
2013-05-22 | We're handling L2 there, so use the corresponding define, not the L1 one. | Patrick Wildt | |
ok bmercer@ | |||
2013-05-22 | as checked through thorough tests, youngest->mtime == ctime, so ditch | Marc Espie | |
the extra field. remove some extra abstraction layer: use clock_gettime directly instead of ts_set_from_now (what is "now" anyways) time_to_string takes param by pointer rename "now" into starttime (more accurate term) randomize queue uses arc4random_uniform (prompted by deraadt@) display debug timestamp with ns too (it's debug, so it doesn't really matter whichever way it's done, as long as it's done) okay millert@ | |||
2013-05-22 | Split keyboard mapping definitions to new files, luna88k/dev/omkbdmap.[ch]. | Kenji Aoyama | |
Also modify RAWKEY_XXX values, to input the right characters on Japanese keyboard. ok miod@ | |||
2013-05-22 | Move the gmac/null ciphers to a different table block, clearly labelled as | Stuart Henderson | |
not doing encryption. ok reyk@ | |||
2013-05-22 | Use SIOCAIFADDR rather than SIOCSIFADDR to set the address. | Martin Pieuchot | |
ok mikeb@, claudio@ | |||
2013-05-22 | fix formatting here too; from ingo | Jason McIntyre | |
2013-05-22 | Sync with upstream. Fix buffer growing and memory allocation for wide | YASUOKA Masahiko | |
chars. Handle return of mbstowcs(). ok nickm | |||
2013-05-21 | Delete unused function. | Mark Kettenis | |
2013-05-21 | Rewrite ioctl handling bits. | Brad Smith | |
ok sthen@ | |||
2013-05-21 | de-static-ize prototypes as well, which makes these functions not-static | Mark Kettenis | |
for real! Pointed out by Alexey E. Suslikov. | |||
2013-05-21 | am335x has the mmc registers offset by 0x100, like omap4. | rapha | |
ok patrick@ | |||
2013-05-21 | Rewrite ioctl handling bits. | Brad Smith | |
ok sthen@ | |||
2013-05-21 | remove unused cpu_lock code (where it is truly unused). it is not | Ted Unangst | |
part of the future we have planned. middling ok from a few | |||
2013-05-21 | Fix pty descriptor leak if fork() fails. | Matthew Dempsky | |
ok millert | |||
2013-05-21 | When mapping a new entry, map it read-only, even though it should be | Patrick Wildt | |
writable. This will cause a pmap fault on first write, so that we can mark the page as modified. Also mask the bits used for the protection settings, so that there aren't any leftovers. ok bmercer@ | |||
2013-05-21 | Simplify the debug output to help diagnose problems without needing | Martin Pieuchot | |
special glasses. No object change if UHUB_DEBUG is not defined. | |||
2013-05-21 | Small code clean up. Removing noisy printfs. | Brandon Mercer | |
2013-05-21 | Check for NULL ptr before dereferencing, not after; found the hard way by | Miod Vallat | |
dcoppa@ | |||
2013-05-21 | Remove some unused defines and make the number of interrupt lines variable. | rapha | |
ok bmercer@ | |||
2013-05-21 | Ensure that sc_lock is held when calling sr_meta_native_bootprobe() - the | Joel Sing | |
softraid status functions will complain otherwise. Found the hard way by ajacoutot@ | |||
2013-05-21 | sr_raid_startwu() is no longer called from interrupt context, hence does | Joel Sing | |
not need to invoke a workq-based callback. | |||
2013-05-21 | Provide a function that handles the scheduling of work units. This | Joel Sing | |
simplifies the discipline code, avoids code duplication and moves the scheduling logic into a single location. ok krw@ | |||
2013-05-21 | Add a driver for the am335x timers, to be used by the beaglebone. | rapha | |
Derived from the existing omap3 gptimer. ok patrick@ | |||
2013-05-21 | Make the sr_raid_startwu() function handle deferred work units, instead of | Joel Sing | |
the caller having to handle the state changes. | |||
2013-05-21 | Fix missing work unit state initialisations. | Joel Sing | |
2013-05-21 | Use a state to indicate that a work unit should only be constructed and not | Joel Sing | |
scheduled, rather than trying to imply this from the rebuild flag. | |||
2013-05-20 | Wrap list of prototypes in a .nr nS 1/0 pair just like all the others. No | Mark Kettenis | |
cluse what this is supposed to do, but it is consistent with what happens elsewhere in this man page and fixes the obvious formatting problems. | |||
2013-05-20 | de-static-ize, such that people don't get confused by aesni failures on | Mark Kettenis | |
AMD hardware the next time somebody tries to run on a broken KVM hypervisor. | |||
2013-05-20 | D'oh, add missing break in prefix_writebuf(). Another find by blambert@ | Claudio Jeker | |
who is to shy to commit these by himself. | |||
2013-05-20 | Call pt_getaddr() a bit earlier so that addr.aid is available when first | Claudio Jeker | |
accessed. Found by magic clang skill of blambert@ | |||
2013-05-20 | Remove `abort_task' from usb task queue before recycling a `struct | YASUOKA Masahiko | |
usbd_xfer object' which includes the `abort_task'. Otherwise usb_abort_task_thread() may try to dequeue the recycled task then it causes panic with page fault. reported by Edd Barrett and Wade, Daniel. ok mpi | |||
2013-05-19 | Support .Bl -offset in -mdoc -Tman. | Ingo Schwarze | |
Issue found when Thomas Klausner <wiz at NetBSD dot org> made me look at the manuals of his http://www.nih.at/libzip library. | |||
2013-05-19 | Move printing of the .RS macro into print_offs() such that print_offs() | Ingo Schwarze | |
takes care of printing the whole line. This reduces code duplication - in particular after the upcoming commit to repair .Bl -offset - and makes print_offs() more similar to what print_width() does. No functional change. | |||
2013-05-19 | If pid<0, kill() won't fail with EPERM unless none of the target processes | Philip Guenther | |
could be signaled. | |||
2013-05-19 | Switch mvme68k to MI wdsc(4) driver. Tested on MVME147. | Miod Vallat | |
2013-05-19 | select(-1, ...) should fail with EINVAL. | Philip Guenther | |
ok matthew@ | |||
2013-05-19 | add some messages when entering suspend as well | Ted Unangst | |
2013-05-19 | Make the cursor position when moving backwards by paragraph behave the | lum | |
same as emacs: move to line above paragraph. ok florian@ | |||
2013-05-19 | Standardise logging of supplemental information during userauth. Keys | Damien Miller | |
and ruser is now logged in the auth success/failure message alongside the local username, remote host/port and protocol in use. Certificates contents and CA are logged too. Pushing all logging onto a single line simplifies log analysis as it is no longer necessary to relate information scattered across multiple log entries. "I like it" markus@ | |||
2013-05-19 | fix failure to recognise cert-authority keys if a key of a different type | Damien Miller | |
appeared in authorized_keys before it; ok markus@ | |||
2013-05-18 | /dev/ttyc is no longer special, now that sun serial mice are handled by | Miod Vallat | |
wsmouse; update ttys and fbtab accordingly. | |||
2013-05-18 | fix cut'n'paste abuse in "can't happen" error message | Miod Vallat | |
2013-05-18 | Add parameters describing the usable part of the GTT and enable the checks | Mark Kettenis | |
that use them. | |||
2013-05-18 | sync | Miod Vallat | |
2013-05-18 | s/mvme88k/mvme68k/ in Dt; | Jason McIntyre | |
2013-05-18 | Get rid of the pmap7 header now that we merged it into the pmap one. | Patrick Wildt | |
2013-05-18 | Put libgcov.a in the same directory as libgcc.a rather than /usr/lib (unlike | Miod Vallat | |
FreeBSD). | |||
2013-05-18 | Replace strcpy() calls with strlcpy() to avoid triggering warnings when | Miod Vallat | |
linking against -lgcov. |