summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-11-08add ibm serveraid m1115Mike Belopuhov
2013-11-08Replace sc_dying in favour of usbd_is_dying() and usbd_deactivate().Paul Irofti
Okay mpi@
2013-11-08To make sure detach hooks are executed in reverse order they were added,Martin Pieuchot
they must be appended to the head of the list. It doesn't really matter right now since most of our pseudo drivers use their own custom detach procedure, but teach vlan(4) to do the right thing since more conversion are coming. ok deraadt@
2013-11-08syncStuart Henderson
2013-11-08add ID for Areca ARC-1214Stuart Henderson
2013-11-08openssh-6.4Damien Miller
2013-11-08Rekey less frequently during tests to speed them upDarren Tucker
2013-11-08use calloc for all structure allocations; from markus@Damien Miller
2013-11-08fix bootstrap_bs_map to map more than one section.aalm
ok patrick@, fgsch@
2013-11-07In polling mode since r1.101 we could end up dereferencing anMartin Pieuchot
uninitialized variable in case the transfer we were waiting for timed out; problem reported by oga@bitrig. So bring uhci_waitintr() in sync with its equivalent in ohci(4) and ehci(4), stop using an uhci_xfer, do not dereference it and set the correct status of the transfer.
2013-11-07syncMiod Vallat
2013-11-07add fuse_invalidate() and fuse_setup() functions.Sylvestre Gallon
ok tedu@
2013-11-07syncTheo de Raadt
2013-11-07Replace sc_dying in favour of usbd_is_dying() and usbd_deactivate().Paul Irofti
Okay mpi@
2013-11-07Replace sc_dying in favour of usbd_is_dying() and usbd_deactivate().Paul Irofti
Okay mpi@
2013-11-07Replace sc_dying in favour of usbd_is_dying() and usbd_deactivate().Paul Irofti
Okay mpi@
2013-11-07Replace sc_dying in favour of usbd_is_dying() and usbd_deactivate().Paul Irofti
Okay mpi@
2013-11-07Kill sc_dying. Nobody was using it anyway.Paul Irofti
"just kill it" mpi@
2013-11-07Output the effective values of Ciphers, MACs and KexAlgorithms whenDarren Tucker
the default has not been overridden. ok markus@
2013-11-07Replace sc_dying in favour of usbd_is_dying() and usbd_deactivate().Paul Irofti
Okay mpi@
2013-11-07Now that it is safe to disestablish a hook from itself, do not leak theMartin Pieuchot
detach hook when the parent interface is destroy/removed. ok reyk@
2013-11-07Replace sc_dying in favour of usbd_is_dying() and usbd_deactivate().Paul Irofti
Tested and okay mpi@.
2013-11-07Replace sc_dying in favour of usbd_is_dying() and usbd_deactivate().Paul Irofti
Testing and okay mpi@.
2013-11-07Replace sc_dying in favour of usbd_is_dying() and usbd_deactivate().Paul Irofti
Okay yuo@
2013-11-07Replace sc_dying in favour of usbd_is_dying() and usbd_deactivate().Paul Irofti
Okay mpi@
2013-11-07Make sure to mark the controller as dying in order to stop processingMartin Pieuchot
any transfer when autoconf(9) asks for it. This brings uhci(4) in sync with ohci(4) and ehci(4). ok pirofti@
2013-11-07Remove isoc_len from the transfer descriptor, it is assigned once butMartin Pieuchot
never read.
2013-11-07missing manpage, spotted by jmc@Eric Faurot
2013-11-07Replace sc_dying in favour of usbd_is_dying() and usbd_deactivate().Paul Irofti
Okay mpi@
2013-11-07add a simplistic version of WARN_ON_ONCE() that doesn't warnJonathan Gray
reduces the diff to linux and avoids a clang warning brad mentioned ok kettenis@ brad@
2013-11-07trailing spaceDarren Tucker
2013-11-07Use ssh -Q to get kex types instead of a static list.Darren Tucker
2013-11-07Use ssh -Q instead of hardcoding lists of ciphers or MACs.Darren Tucker
2013-11-07Add the documentation related to the lzip change.juanfra
ok espie@ sthen@
2013-11-07Factor out the data transfer rekey testsDarren Tucker
2013-11-07Test rekeying for every Cipher, MAC and KEX, plus test every KEX withDarren Tucker
the GCM ciphers.
2013-11-06pull the event ack handling out of mpii_event_process into mpii_event_doneDavid Gwynne
so we can use it in multiple places.
2013-11-06from portable: s/true/true_val/ to avoid name collisions on dump platformsDamien Miller
2013-11-06Nowadays, seekdir(3) doesn't call _readdir_unlocked().Ingo Schwarze
Consequently, the "skipdeleted" argument is always == 1. Remove it, effectively reverting readdir.c rev. 1.14. ok millert@ guenther@
2013-11-06Back port remainder of use_loginclass fix from sudo 1.7.9.Todd C. Miller
2013-11-06Search the userland buffer of dirent structures before falling back toIngo Schwarze
getdents(2). No functional change, but considerable speedup in many cases, see http://marc.info/?l=openbsd-tech&m=138369623117934 for some approximate numbers. ok guenther@, "good diagnosis" deraadt@
2013-11-06Handle fuse client private data. Needed by encfs.Sylvestre Gallon
Bump shlib_version. ok stsp@.
2013-11-06simplify a crazy expressionTheo de Raadt
2013-11-06In hibernate_write_chunks(), keep track of relative block numbers insteadTheo de Raadt
of absolute, so that we can add range checking. ok mlarkin
2013-11-06spacingTheo de Raadt
2013-11-06return the known error, instead of EIOTheo de Raadt
2013-11-06shorten dev_t in hib_infoTheo de Raadt
2013-11-06Don't cargo-cult copy the invocation of size(1) on compiled bootblocks,Miod Vallat
when 1) they aren't in ELF format, and 2) the result does not EVEN REMOTELY matter on these architectures.
2013-11-06forgot armv7/armv7 files...Sylvestre Gallon
2013-11-06After factorizing armv7_machdep code here is an effort to factorize allSylvestre Gallon
the code present in omap/omap.c imx/imx.c and sunxi/sunxi.c All this code looks quite the same, so we move it in a generic armv7/armv7.c This is a step closer to only one kernel for all armv7 boards. ok patrick@, rapha@