summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-03-01Copy the stackgap_init() and stackgap_alloc() functions fromChristian Weisgerber
compat/common/compat_util.c to dev/systrace.c, the one place they are used, and remove the remaining kernel references to compat/*. ok visa@
2016-03-01drop Linux emulation support; ok sthen@ visa@Christian Weisgerber
2016-03-01Enter libedit directory by default.Ingo Schwarze
A few tests are enabled and work, so this starts being useful.
2016-03-01Support for running Linux binaries under emulation is going away.Christian Weisgerber
Remove "option COMPAT_LINUX" and everything directly tied to it from the kernel and the corresponding man page documentation. ok visa@ guenther@
2016-03-01More unit tests for libedit.Ingo Schwarze
Those that still fail are commented out in the Makefiles for now; i have patches for them.
2016-03-01add LIBCRYPTO to DPADDGleydson Soares
OK deraadt@ mikeb@
2016-03-01Pointless 'return;' in void functionsJeremie Courreges-Anglas
2016-03-01Kill unused #definesJeremie Courreges-Anglas
No functional change
2016-03-01Remove some more unused variables, and use RB_FOREACH_SAFE inNicholas Marriott
key_bindings_unref_table.
2016-03-01Redraw status on mode entry and exit.Nicholas Marriott
2016-03-01When a mouse drag is finished, fire a MouseUp key press, instead ofNicholas Marriott
doing the drag end in code. From Stephen Coakley.
2016-03-01Remove unused variables, from Michal Mazurek.Nicholas Marriott
2016-03-01Use system wcwidth() instead of carrying around UTF-8 width tables.Nicholas Marriott
2016-03-01Fix break-pane synopsis and some other tmux.1 bits.Nicholas Marriott
2016-03-01DB_SYM_NULL -> NULL.Martin Pieuchot
2016-03-01update currency exchange rates;Jason McIntyre
2016-03-01Remove support for ancient, broken DSA implementations.Doug Hogan
Based on a few OpenSSL commits: Remove ancient DSA workarounds commit ab4a81f69ec88d06c9d8de15326b9296d7f498ed Remove workaround for broken DSA implementations using negative integers commit dfb10af92e9663ce4eefaa1d6b678817fa85344d Typo in error name (EVP_R_DECODE_ERROR -> DSA_R_DECODE_ERROR) commit f6fb7f1856d443185c23f1a5968c08b4269dd37d ok beck@
2016-03-01Update moduli file.Darren Tucker
2016-03-01enm_ac in ether_multi is set but never used. so we dont need it.David Gwynne
2016-02-29Add NET_RT_IFNAMES; OK deraadt@Tim van der Molen
2016-02-29correct return values for -e; from patrik lundinJason McIntyre
ok sthen espie
2016-02-29__tfork is section 3, not 2;Jason McIntyre
2016-02-29Merge add/make_prefix() and kill last use of struct in6_prefixreq in userland.Jeremie Courreges-Anglas
ok florian@
2016-02-29Print ssize_t with %zd; ok deraadt@ mmcc@Jeremie Courreges-Anglas
2016-02-29delete the kern.emul/KERN_EMUL sysctl bits since there are noChristian Weisgerber
emulations left; ok millert@ deraadt@, jmc@ (man pages)
2016-02-29Kill unused variable.Jeremie Courreges-Anglas
2016-02-29Move ckqueue() to common_source/common.cJeremie Courreges-Anglas
Patch from Chris Bennett, ok tb@
2016-02-29remove NULL checks for pqueue_free()mmcc
ok doug@
2016-02-29init_prefix() is now trivial, merge it with its caller.Jeremie Courreges-Anglas
Suggested by and ok bluhm@
2016-02-28rearrange DH public value tests to be a little more clearDamien Miller
rearrange DH private value generation to explain rationale more clearly and include an extra sanity check. ok deraadt
2016-02-28Add a missing Ns macroTim van der Molen
2016-02-28Fix ghastly whitespace. From Chris Bennetttb
2016-02-28syncStuart Henderson
2016-02-28Tweak info about using subdirectories.Robert Peichaer
feedback from and OK jmc@
2016-02-28Remove USB_SET_IMMED ioctl and corresponding code and manpage bits.Stefan Kempf
Nothing uses it. suggested by and ok mpi@
2016-02-28When IPsec UDP encapsulation is used for IPv6, the stack shouldMike Belopuhov
construct an IPv6 packet instead of an IPv4. Diff from Patrick Wildt <patrick at blueri ! se> with input from bluhm@; ok mpi, bluhm
2016-02-28remove mention of Linux and FreeBSD binary emulation; pointed out by jmc@Christian Weisgerber
2016-02-28drop the support for Linux emulation; ok guenther@ visa@Christian Weisgerber
2016-02-28Support for running Linux binaries under emulation is going away.Christian Weisgerber
Remove "option COMPAT_LINUX" and everything directly tied to it from the kernel and the corresponding man page documentation. ok visa@ guenther@
2016-02-28fix a typoed ioctl name; ok millert@ deraadt@Christian Weisgerber
2016-02-28Remove leftovers from mutliple symbol tables support.Martin Pieuchot
2016-02-28fruncate() returns EFBIG when length exceeds the max file size.natano
ok mpi@
2016-02-28Repair the namegen function to make ffs regress useful again.natano
openssl md5 adds a "(stdin)= " prefix to the output, but all we need is the actual md5 sum itself. This caused most of the ffs regress tests to fail. ok mpi@
2016-02-28Convert FDT values from big endian to host endian.Martin Pieuchot
This is a no-op on socppc but will allows ARM ports (little-endian) to make use of this code. From Patrick Wildt.
2016-02-28Remove useless code, from Patrick Wildt.Martin Pieuchot
2016-02-28Rename ddb_trap_glue() to db_trap_glue().Martin Pieuchot
Let's keep the 'db_' prefix for all ddb(4) functions that should not be instrumented.
2016-02-28Remove SIOCSIFALIFETIME_IN6 ioctl, as NetBSD did.Stefan Kempf
As described in NetBSD kern/35897 PR, the parameters this ioctl needs overlay each other in a union. The ioctl cannot have worked properly. Discovered while discussing overflow checks with mmcc@ and mpi@ The checks were part of the removed code. ok deraadt@
2016-02-28Add back undocumented -h switch defaulting to usage().tb
pjanzen@ correctly pointed out that a majority of games do this, so no need to deviate here.
2016-02-28In emit_insxl() force the first operand of the insbl or inswl patternJonathan Gray
into a register. Fixes an ICE when building Mesa with __sync builtins. From Roger Sayle in gcc svn rev 121779 in Feb 2007 before the license change. Tested by miod and matthieu.
2016-02-27pakets -> packetsmmcc