summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-05-06fix a fd leak in an error path in code under #ifdef DEBUGJonathan Gray
2015-05-06regenJonathan Gray
2015-05-06#include <sys/event.h> was removed from init_sysent.c but notJonathan Gray
syscalls.master where the file is generated from. Fix this by removing it from syscalls.master so it doesn't come back. From Nicolas Bedos.
2015-05-06Pass a thread pointer instead of its file descriptor table to getsock(9).Martin Pieuchot
Diff from Vitaliy Makkoveev. Manpage tweak and ok millert@
2015-05-06use res_hnok() to valid domain part in valid_domain()Gilles Chehade
ok eric@
2015-05-06Add a format window_linked which is 1 if a window has been linkedNicholas Marriott
multiple times, also remove the default space in window_flags and use a conditional to add it in window-status-format (this means additional flags can be added in the option without extra spaces). From Thomas Adam with tweaks by me.
2015-05-06Document that priority 1 is reserved for kernel use.Martin Pieuchot
2015-05-06Display thread IDs instead of the name of the process's owner when "-H"Martin Pieuchot
is used. The rationnal is that when you're looking at threads you're generally already filtereing by PID and this allow you to see which thread is a pig. Written some time ago with mikeb@ ok sthen@, krw@, guenther@
2015-05-06Turn cursor off during redraw, pointed out by George Nachman.Nicholas Marriott
2015-05-06Clarify pseudo-terminal request behaviour and use "pseudo-terminal"Darren Tucker
consistently. bz#1716, ok jmc@ "I like it" deraadt@.
2015-05-06Blacklist DH-GEX for specific PuTTY versions known to send non-RFC4419Darren Tucker
DH-GEX messages rather than all versions of PuTTY. According to Simon Tatham, 0.65 and newer versions will send RFC4419 DH-GEX messages. ok djm@
2015-05-06make SWAP_KEY_GET symmetrical with SWAP_KEY_PUT by having it callDavid Gwynne
a function in uvm_swap_encrypt.c instead of doing stuff inline. lets me remove an extern from the header too. ok kettenis@
2015-05-06put mpi's atomics back in, but with the return value of add (and therefore ↵David Gwynne
sub, inc, and dec) fixed. the asm read the value from memory into a register, added to it, and then tried to write it back. after succeeding it doesnt have to add again before returning. this splits sub, inc, and dec off from add. sub can use the subf opcode, and inc and dec can use the addic opcode. explicitely identify where the modified memory is so we can avoid using "memory" as a clobber. ok mpi@
2015-05-06Add missing braces so this will correctly fall back to the "name"Jonathan Gray
property of a node if "device_type" is not present. ok mpi@ miod@
2015-05-06add missing bracesJonathan Gray
ok guenther@ miod@
2015-05-06Use | when combining flags not +. Luckily in this case 1 + 2 == 1 | 2.Jonathan Gray
ok mlarkin@
2015-05-06Fix a memory leak in _dl_load_dep_libs()Jonathan Gray
ok otto@ guenther@
2015-05-05Eliminate rabid semicolonChris Cappuccio
2015-05-05no need to swizzle load/store addresses for 32bit values on big endian systemsJonathan Matthew
ok miod@
2015-05-05Updated fifotest.outTodd C. Miller
2015-05-05fifofs now respects the flags a descriptor was opened with.Todd C. Miller
Also add tests for when no FD events are specified. A few tests still don't pass which will be addressed shortly.
2015-05-05Now that we have a_fflag in struct vop_poll_args we can handleTodd C. Miller
things like POLLOUT on a read-only fd more sensibly. Previously, any poll events could be used regardless of the actual file flags of the descriptor. The new fifo_poll() is effectively a pared down soo_poll() with slightly different semantics to batter match FIFOs. OK and feedback from guenther@
2015-05-05AI_ADDRCONFIG: skip loopback addresses, not loopback interfaces.Jeremie Courreges-Anglas
This is what RFC3493 suggests. Fixes AI_ADDRCONFIG on setups where global addresses are configured only on loopback interfaces. Discussed with and ok eric@ gilles@
2015-05-05Move the AI_ADDRCONFIG setup to its own function.Jeremie Courreges-Anglas
Input from and ok gilles@ eric@
2015-05-05Remove man page links for crypto(9) key operations; reminded by jmc@Mike Belopuhov
2015-05-05Less magic numberAlexandr Shadchin
For PS/2 - status byte - bit 5: The bit is '1' if the data on input port 60h came from the AUX port, or '0' if the data came from the keyboard or from the keyboard controller itself. KBS_TERR (kbd transmission error) was valid for AT-mode, but not for PS/2-mode. ok ratchov@, miod@
2015-05-05Make argument name consistent and use .Fn rather than .Nm in section 3.Ingo Schwarze
Patch from <Kaspars at Bankovskis dot net>.
2015-05-05add missing braces in _aucat_wmsg()Jonathan Gray
As ratchov@ notes: "all _aucat_wmsg() callers set hdl->wtodo, so your diff can't break things that used to work by accident." ok ratchov@
2015-05-05Remove references to APIs that don't exist anymore.Mike Belopuhov
Based on a diff from Vincent Gross <dermiste@kilob.yt>, thanks!
2015-05-05Implement If-Modified-Since.Florian Obser
From Kyle Thompson <jmp AT giga DOT moe>. Tweaks by me. OK benno@
2015-05-05WinSCP doesn't implement RFC4419 DH-GEX so flag it so we don't offer thatDarren Tucker
KEX method. ok markus@
2015-05-05Huawei MU609 from Cristián Edwards.Martin Pieuchot
ok dcoppa@
2015-05-05regenMartin Pieuchot
2015-05-05Huawei MU609 from Cristián Edwards.Martin Pieuchot
ok dcoppa@
2015-05-05Flag user specified routes with an AF_LINK gateway as RTF_LLINFO.Martin Pieuchot
This makes ND6 and ARP layers happy since they both check for this flag, but is was redundant to provide route(8)'s "-llinfo" option when adding a l2 route. RTF_LLINFO is clearly redundant for userland tools, so only allow the kernel to set it. ok benno@, claudio@
2015-05-05tweak;Jason McIntyre
2015-05-05Document that shm_open() accepts O_CLOEXEC and O_NOFOLLOW as extensionsPhilip Guenther
ok miod@
2015-05-05use the sizeof the struct not the sizeof a pointer to the structJonathan Gray
in ssh_digest_start() This file is only used if ssh is built with OPENSSL=no ok markus@
2015-05-05emul_native is only used for kernel threads which can't dump core, soPhilip Guenther
delete coredump_trad(), uvm_coredump(), cpu_coredump(), struct md_coredump, and various #includes that are superfluous. This leaves compat_linux processes without a coredump callback. If that ability is desired, someone should update it to use coredump_elf32() and verify the results... ok kettenis@
2015-05-05fix a return path that lacked a rw_exit_write() callJonathan Gray
ok kettenis@
2015-05-05use the sizeof the struct not the sizeof a pointer to the structJonathan Gray
ok claudio@
2015-05-04fix numbers for pppx, vscsi and diskmapJonathan Matthew
ok dlg@
2015-05-04Default daemon_flags are no longer in /etc/rc.conf,Ingo Schwarze
but you can still find them in the rc.d(8) scripts.
2015-05-04Remove comments about default daemon_flags; most are empty, thoseIngo Schwarze
that aren't are redundant because they can be found in the rc.d(8) scripts themselves, and they risk getting out of sync. While here, sort the daemons alphabetically. No functional change. Triggered by a much smaller nameserver-only patch from stephan@. OK ajacoutot@ rpe@ stephan@ and looks good to sthen@.
2015-05-04fix device numbering comments, no binary changeJonathan Matthew
2015-05-04Document the disklabel(8) autopartitioning feature.Robert Peichaer
While here, reformat the documentation for the additional questions. Feedback from schwarze@ OK henning@ on a similar diff OK jmc@
2015-05-04Add the new template file based autopartitioning feature of disklabel(8)Robert Peichaer
to the OpenBSD installer. It is available during unattended installation. The template file is fetched from an url, provided as answer to a new question in the response file: URL to autopartitioning template for disklabel = url Original diff from and OK henning@ 'no objection' krw@
2015-05-04lightly document the posix option and POSIXLY_CORRECT; will sketch outJason McIntyre
in more detail once i get my head round them...
2015-05-04Add SwissSign CA root certificates. Requested by robert@, ok dcoppa@ aja@ miod@Stuart Henderson
2015-05-04tweak previous;Jason McIntyre