Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-05-22 | be pedantic with sizeof use | Jonathan Gray | |
no change in behaviour as sizeof(char **) is the same as sizeof(char *) ok otto@ guenther@ | |||
2015-05-22 | Don't use an uninitialised softc pointer in midiread/midiwrite. | Jonathan Gray | |
ok ratchov@ | |||
2015-05-22 | LITTE_ENDIAN -> LITTLE_ENDIAN | Jonathan Gray | |
ok ratchov@ | |||
2015-05-22 | Limit the number of dma segments used for transmitting packets to | Mark Kettenis | |
IWM_NUM_OF_TBS - 2. We have IWM_NUM_OF_TBS slots, but use two of those for sending commands to the firmware. Hopefully fixes the iwm0: hardware error, stopping device errors I've seen somewhat regularly. ok claudio@, deraadt@ | |||
2015-05-22 | mention ssh-keygen -E for comparing legacy MD5 fingerprints; bz#2332 | Damien Miller | |
2015-05-22 | Reorder EscapeChar option parsing to avoid a single-byte out- | Damien Miller | |
of-bounds read. bz#2396 from Jaak Ristioja; ok dtucker@ | |||
2015-05-22 | add knob to relax GSSAPI host credential check for multihomed hosts | Damien Miller | |
bz#928, patch by Simon Wilkinson; ok dtucker (kerberos/GSSAPI is not compiled by default on OpenBSD) | |||
2015-05-22 | Update DH groups | Darren Tucker | |
2015-05-22 | Remove 6k and 8k bit moduli fragments since they are now kept in | Darren Tucker | |
usr.bin/ssh/moduli-gen. | |||
2015-05-22 | Update DH groups | Darren Tucker | |
2015-05-22 | sync | Theo de Raadt | |
2015-05-22 | sync | Theo de Raadt | |
2015-05-22 | fix a non safe use of TAILQ_FOREACH with TAILQ_REMOVE | Jonathan Gray | |
ok reyk@ | |||
2015-05-22 | fix a non safe use of LIST_FOREACH with LIST_REMOVE | Jonathan Gray | |
ok claudio@ kettenis@ reyk@ | |||
2015-05-21 | Use m_defrag(9) instead of rolling our own version of it. | Mark Kettenis | |
ok jca@ | |||
2015-05-21 | sync | Theo de Raadt | |
2015-05-21 | Establish interrupts for both keyboard and mouse slots at pckbc attach time, | Miod Vallat | |
rather than lazily from pckbc when slots are discovered. This is consistent with what other isa devices (and pckbc on non-isa busses) do, and as a side effect, this makes the dmesg output shorter. This will also let us get rid of pckbc's intr_establish() callback in a later diff. Prompted by krw@ noticing ugly kernel output in a configuration with the mouse slot left empty. ok krw@ mpi@ | |||
2015-05-21 | Report all valid interrupt locators in isaprint() - although config(8) stanzas | Miod Vallat | |
only allow one irq for isa devices, there is actually support for more since we got isapnp(4) support, and upcoming changes will actually have regular isa(4) devices claim more than one irq in their indirect match function. | |||
2015-05-21 | no such thing as mips64le | Miod Vallat | |
2015-05-21 | Switch amd64, hppa, mips64, mips64le and powerpc to binutils 2.17. | Mark Kettenis | |
ok deraadt@ | |||
2015-05-21 | No need to call tzset() and log_init() in the forked constraint | Reyk Floeter | |
handler. It is run in a chroot, so tzset() wouldn't even succeed to open the zone file. Found with tame. OK deraadt@ | |||
2015-05-21 | Rename caddr_t p to cp in an inner block to avoid aliasing the outer | Nicholas Marriott | |
struct proc *p, ok deraadt | |||
2015-05-21 | Support "ssh-keygen -lF hostname" to find search known_hosts and | Damien Miller | |
print key hashes. Already advertised by ssh-keygen(1), but not delivered by code; ok dtucker@ | |||
2015-05-21 | some fixes from pjanzen; | Jason McIntyre | |
2015-05-21 | No need for ifp since we do not set "rcvif". | Martin Pieuchot | |
2015-05-21 | No need to set "rcvif", if_input() does it for you. | Martin Pieuchot | |
2015-05-21 | tedu commented out xl_testpacket(), remove one of the IFQ_ENQUEUE() | Martin Pieuchot | |
in the tree. | |||
2015-05-21 | Convert to if_output(). | Martin Pieuchot | |
2015-05-21 | Correctly state the link state to INVALID when creating a carp interface. | Martin Pieuchot | |
Since vhe are allocated with M_ZERO and INIT is also defined to be 0, carp_set_state() would result in a no-op because of the state check. So explicitly initialize the state of a vhe to INIT and move the state check in carp_set_state_all() to prevent similar issues in the future. Problem and initial diff from Johan Ymerson, thanks! ok henning@ | |||
2015-05-21 | Access to uninitialized variable fixed. | Gerhard Roth | |
ok mikeb@ | |||
2015-05-21 | regress test for AuthorizedPrincipalsCommand | Damien Miller | |
2015-05-21 | add AuthorizedPrincipalsCommand that allows getting authorized_principals | Damien Miller | |
from a subprocess rather than a file, which is quite useful in deployments with large userbases feedback and ok markus@ | |||
2015-05-21 | regress test for AuthorizedKeysCommand arguments | Damien Miller | |
2015-05-21 | support arguments to AuthorizedKeysCommand | Damien Miller | |
bz#2081 loosely based on patch by Sami Hartikainen feedback and ok markus@ | |||
2015-05-21 | refactor: split base64 encoding of pubkey into its own | Damien Miller | |
sshkey_to_base64() function and out of sshkey_write(); ok markus@ | |||
2015-05-21 | Re-remove extra perl utils, patch lost in 5.20.2 update | Andrew Fresh | |
pointed out by miod@ | |||
2015-05-20 | Remove clauses 3 and 4 from Christos Zoulas' BSD license. | Ingo Schwarze | |
This is safe because Christos did that himself in NetBSD in 2008. No code change. | |||
2015-05-20 | Remove function argument name from posix_spawnattr_getsigmask() | Todd C. Miller | |
prototype to match other prototypes in the file. OK guenther@ deraadt@ | |||
2015-05-20 | Fix sign compare bug introduced when rnum() was redefined to use | Todd C. Miller | |
arc4random_uniform(). From pjanzen@, OK deraadt@ | |||
2015-05-20 | Merge the get_drive() function with install_disk(), which is the | Robert Peichaer | |
only remaining consumer. OK krw@ | |||
2015-05-20 | Signed types are bad array indicies - let it panic instead. | Martin Pelikan | |
ok deraadt krw millert | |||
2015-05-20 | scrap unused ixgbe_get_link_capabilities_X540 | Mike Belopuhov | |
2015-05-20 | Remove hotplug(4) sensor support: the code has been disabled by | Reyk Floeter | |
henning@ 9 years ago because of an issue with the /dev/hotplug device - it does not support multiple readers opening it. Nobody ever cared enough to fix it so it is time to sent the dead code to the Attic. OK henning@ (feeling sad about it), mpi@ and others | |||
2015-05-20 | Use off_t instead of size_t to pass file size and print it using %lld when | Mark Kettenis | |
constructing the Content-Length header field. Should fix some, but probably not all, problems with serving files bigger than 2G on 32-bit architectures. ok reyk@, florian@ | |||
2015-05-20 | Keep track of the ifih corresponding to a vlan instance to ease its | Martin Pieuchot | |
removal. As soon as carp(4) will be converted to the new if_input() API it will be possible to add multiple vlan(4) and carp(4) pseudo-ifps on top of the same parent interface. When such thing happens we can no longer assume that the first pseudo-ifp to be destroyed will be the last configured. ok dlg@ | |||
2015-05-20 | Do not increment if_opackets in if_output(). It might make sense to do | Martin Pieuchot | |
that later but all drivers should be adapated. Should fix a double output packet accounting, reported by Hrvoje Popovski. | |||
2015-05-20 | Return empty string if format is empty rather than attempting to | Nicholas Marriott | |
allocate zero bytes. | |||
2015-05-20 | No need to check the return value of memcpy() if you actually checked this | Miod Vallat | |
pointer for NULL the line above; ok doug@ | |||
2015-05-20 | Remove cubieboard specific gpio led setting. | Jonathan Gray | |
From Artturi Alm in bitrig. | |||
2015-05-20 | Now all the socs use the same va entry point and don't have any | Jonathan Gray | |
conflicting symbols we can combine the configs. Multiple umg files are still required however. The bsd.umg target in the kernel is replaced by targets for bsd.IMX.umg, bsd.OMAP.umg and bsd.SUNXI.umg. |