summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-04-11syncStuart Henderson
2016-04-11Howard Marks died yesterdayStuart Henderson
2016-04-11Add functions to dump vcpu register state. Needed for some upcoming diffs.Mike Larkin
Not presently used.
2016-04-11Clarify some commentsMike Larkin
2016-04-10For now, disable ahc(4) such that GENERIC.MP kernels don't overflow the 8MMark Kettenis
reserved for .text and .rodata. Hopefully I can get rid of this limit soon. propmpted by guenther@
2016-04-10Clean up and complete the lists of allowed syscalls.Theo Buehler
With input from schwarze@ and semarie@. "go ahead" schwarze@ (documentation perspective only, without checking factual accuracy) ok semarie@ on an earlier version
2016-04-10Enable UTF-8 support in rev.Martijn van Duren
Some minor cleanups while here. OK schwarze@
2016-04-10Fix layer violation in the ihidev(4) code by implementing a generic mechanismMark Kettenis
that allows the i2c controller implementation to establish interrupts on behalf of i2c slave device drivers. Use this mechanism in dwiic(4) to let it configure the right acpi interrupt (global or gpio). Change the level to IPL_TTY as this is the appropriate level to use for keyboards and other input devices. ok jsg@
2016-04-10Simple regression tests for rev(1), including UTF-8.Ingo Schwarze
The program will soon be fixed by martijn@.
2016-04-10remove an uneeded includeJonathan Gray
2016-04-10Don't try to get a board name string before attaching mainbus with theJonathan Gray
platform abstraction. The string is only displayed when attaching the soc abstractions so this is not needed. When arm mainbus becomes aware of fdt it can show the /model property itself.
2016-04-10convert ypldap_addr list to a tailqJonathan Matthew
ok dlg@
2016-04-10arguments to "chain" are space separated, not comma; verified by jungJason McIntyre
diff from david+bsd i also removed Op, since ... is enough/
2016-04-10Add octeon.Visa Hankala
2016-04-10per rfc, ehlo responses contain hostname, then options. from dyn+bsdTed Unangst
2016-04-09For pointers, use NULL rather than 0; no functional change;Ingo Schwarze
from Pedro Giffuni via Christos Zoulas.
2016-04-09Delete 26 wrapper macros and two wrapper functions that are noIngo Schwarze
longer needed now that we always compile with wide character support, reducing code obfuscation. OK czarkoff@ martijn@. Diff also proofread by Christian Heckendorf <mbie at ulmus dot me>.
2016-04-09Always compile with WIDECHAR on and delete that preprocessor switch.Ingo Schwarze
OK martijn@. Diff also proofread by Christian Heckendorf <mbie at ulmus dot me>.
2016-04-09Reset the terminal to its initial state before exiting a programIngo Schwarze
using libedit, using code from NetBSD tty.c rev. 1.42, 1.48, 1.49, 1.58, and 1.59. Code mostly by Christos Zoulas, one bug report by John Hein, one additional bugfix by me (rev. 1.59). While here, switch t_mode to unsigned char, which is sufficient, also from NetBSD. OK martijn@. Also checked by Christian Heckendorf <mbie at ulmus dot me>.
2016-04-09Remove _tz as intermediate variable and use CGI_TZ directly.Robert Peichaer
Feedback from and OK halex@ OK krw@ for a similar diff
2016-04-09tweak MALLOC_STATS printing (switched off by default), prodded byOtto Moerbeek
Michael McConville
2016-04-09make private key loading functions consistently handle NULLDamien Miller
key pointer arguments; ok markus@
2016-04-09redundant memset(3), from Michael McConville, ok armani@Otto Moerbeek
2016-04-09Use _if for a single interface name and _ifs for a list of interfaceRobert Peichaer
names instead of _ifdev and _ifdevs. OK krw@ halex@
2016-04-09Use builtin.Antoine Jacoutot
2016-04-09replace 0xf57ff05f with dmb syJonathan Gray
spotted by guenther
2016-04-09Document (near) standards conformancePhilip Guenther
based on diff by mmcc@
2016-04-08Use _if instead of _ifs as variable name for single interface names.Robert Peichaer
OK krw@, halex@
2016-04-08Rename getdevname() to get_dkdev_name() to better reflect the actualRobert Peichaer
purpose and simplify the logic to remove the partition information from the device name. With help from and OK halex@, krw@
2016-04-08Directly assign device name to rootdisk with modified sed pattern.Robert Peichaer
With help from and OK halex@ OK krw@
2016-04-08We must always check if the socket is already bound, and always setVincent Gross
INPLOOKUP_IPV6 when applicable. Bug introduced in revision 1.197 by yours truly. Ok bluhm@
2016-04-08syncStuart Henderson
2016-04-08When bgp receives an RTM_CHANGE message for an RTF_MPATH route[1], andPeter Hessler
it finds it actually on an interface, bgpd can get confused. In this case, just log it and treat it as an RTM_ADD so bgpd doesn't suicide. [1] includes all ospfd installed routes, btw. OK benno@ sthen@
2016-04-08Fix match function so that the cortex bus only attaches if the attachPatrick Wildt
args are actually looking for the cortex bus. ok kettenis@
2016-04-08bare .Nm gets turned into m_copym2, which is wrong when describing mbufs.David Gwynne
use explicit .Nm mbuf where appropriate. discussed with jmc@
2016-04-08syncReyk Floeter
2016-04-08Add Intel Bay Trail EHCI (as found on 1st gen Compute Stick)Reyk Floeter
2016-04-08Get rid of some infrastrcuture that is now obsolete and synchronize some ofMark Kettenis
the data structures in drmP.h with Linux 3.14. ok jsg@
2016-04-08whitespace at EOLDamien Miller
2016-04-08tweak previous;Jason McIntyre
2016-04-08We accidentally send an empty string and a zero uint32 with everyDamien Miller
direct-streamlocal@openssh.com channel open, in contravention of our own spec. Fixing this is too hard wrt existing versions that expect these fields to be present and fatal() if they aren't, so document them as "reserved" fields in the PROTOCOL spec as though we always intended this and let us never speak of it again. bz#2529, reported by Ron Frederick
2016-04-08may as well put words around bpf_validate while hereDavid Gwynne
2016-04-08document bpf_filter and bpf_mfilterDavid Gwynne
2016-04-08document m_purge.David Gwynne
2016-04-08m_freem returns an mbuf like m_free nowDavid Gwynne
this steals the m_free words to describe what m_freem does now.
2016-04-08add m_purge for freeing a list of mbufs linked via m_nextpktDavid Gwynne
this tweaks m_freem so it returns the m_nextpkt from the mbuf it freed, like how m_free returns the m_next from the mbuf it frees. ok mpi@
2016-04-08document m_dup_pkt()David Gwynne
2016-04-07Link to faq15.html#Ports instead of just faq15.html. This matches theTheo Buehler
DESCRIPTION section that sthen@ fixed in November and reflects the content of the former faq/ports/ports.html better. discussed with jmc@
2016-04-07Retry the drm_crtc.c "idr"conversion. Turns out the xf86-video-intel driverMark Kettenis
is buggy and trucates the ids to 8 bits. So specifymaximum in the idr_alloc() call until that gets fixed.
2016-04-07Return -ENOSPC if idr_alloc() fails to allocate an unused id instead ofMark Kettenis
spinning forever.