summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-03-17hvctl(4) is a driver for the "hvctl" Logical Domain Channel that allows theMark Kettenis
control domain to talk to the sun4v hypervisor.
2012-03-17vldc(4) is a "bus" driver for Logical Domain Channels.Mark Kettenis
2012-03-17Do not clear to end of line if the line is full, fixes missing lastNicholas Marriott
character in rightmost pane.
2012-03-17Use the region lower not the pane size to work out where the bottom lineNicholas Marriott
is.
2012-03-17Tweak last fix to actually hit the right end of pane.Nicholas Marriott
2012-03-17Fix warnings. Doh.Nicholas Marriott
2012-03-17Check event_initialized before event_del if event may not have been setNicholas Marriott
up; libevent2 complains about this. Reported by Moriyoshi Koizumi.
2012-03-17Redirect libevent logging to tmux's log.Nicholas Marriott
2012-03-17Revert screen-write.c r1.54 and fix the bug properly. After wrapping aNicholas Marriott
line in a pane, the cursor needs to move to the next line unless it scrolled.
2012-03-17some updates to reflect reality; prompted by a diff from Daniel BolgheroniJason McIntyre
ok ajacoutot
2012-03-17for consistency, remove "2.0" from mos' Nd; ok jsgJason McIntyre
2012-03-17llu -> PRIu64 in enqueue() to avoid warning in portableGilles Chehade
diff from Guillaume Leconte <guillaume.leconte@scality.com>
2012-03-17remove IP_JUMBO, SO_JUMBO, and RTF_JUMBO.David Gwynne
no objection from mcbride@ krw@ markus@ deraadt@
2012-03-16install the rc.d script for tftpd, ok dlg@Stuart Henderson
2012-03-16missing bracket; ok miodTheo de Raadt
2012-03-16pull in more .h (spotted since struct vnode was not in scope)Theo de Raadt
2012-03-16don't leak ypldap_addr structures when doing dns lookupsJonathan Matthew
ok dlg@
2012-03-16Display L3 cache information on amd64 for amd cpus, Intel now uses aChristiano F. Haesbaert
different scheme. ok jsg@
2012-03-15Fix vmmap SMALL_KERNEL introduced bug.Ariane van der Steldt
The if (min < VMMAP_MIN_ADDR) min = VMMAP_MIN_ADDR; code should have moved across when the small_kernel diff moved the initialization from uvm_map_setup() to uvm_map_setup_md(). Prevents a nasty panic on hppa, sparc64 (and possibly other archs). kettenis: the diff make some sense to me
2012-03-15Take cd9660 support off the "obviously a floppy" install media, to findTheo de Raadt
new space. The same cannot be done yet with some other architectures which share the RAMDISK kernel amongst media types too tightly. I am investigating the horrific src/distrib cleanups required to fix that.
2012-03-15syncTheo de Raadt
2012-03-15uncached_base was introduced early in IP27 support, since these designs useMiod Vallat
subspaces in the CCA_NC uncached memory space. However, being coherent, there was never a need for bus_dma to use uncached addresses. This means that, on the only systems where uncached_base was not set to PHYS_TO_XKPHYS(0, CCA_NC), it was never used. Remove the variable, and replace PHYS_TO_UNCACHED() with PHYS_TO_XKPHYS(, CCA_NC). No functional change.
2012-03-15No longer allow bus_space_barrier() to be a NULL pointer on a givenMiod Vallat
bus_space_tag on sgi, but rather always provide at least a dummy asm("sync") flavour. Saves a function pointer test at runtime.
2012-03-15Allow multiple backslashes at the start of a namespace path. It is prettyMark Kettenis
clear this is not supposed to happen, but unfortunately the description of the ECDT table in the standard document has a path that starts with two backslashes so that's what some vendors used. From Christophe Staiesse. ok deraadt@
2012-03-15we are always using gcc4 nowTheo de Raadt
2012-03-15Reduce installmedia pressure from new vmmap.Ariane van der Steldt
Has less special allocators on install media (where they aren't required anyway). Bonus: makes the vmmap initialization code easier to read.
2012-03-15stupid cvs (dir has 'core' in the name...)Stuart Henderson
2012-03-15resolve conflictsStuart Henderson
2012-03-15improve IPsec/ENC interaction:Markus Friedl
- ipip_input() recalculate the IP header checksum if the tos bits are changed after decapsulation. Otherwise these packets are dropped later in the stack. - ip_ecn_egress(): do not drop packets for IPsec if the outter packet of a Tunnel has the ECN-CE bit set (Congestion Experienced) and the inner packet does not indicate support ECN. - remove unused ip6_ecn_ingress(), ip6_ecn_egress() code ok mikeb@
2012-03-15Add AMD Hudson-2 chipset. From Brad.Stuart Henderson
2012-03-15Fix typo with the entry for the AMD Hudson-2 chipset. From Brad.Stuart Henderson
2012-03-15Let nviic(4) match the NVIDIA MCP89 chipset, from Brad.Stuart Henderson
2012-03-15Direct IPv6 packets with Ethernet encapsulation into the appropriateMike Belopuhov
input routine allowing us to bridge two IPv4 networks over an IPv6 link with gif(4). ok henning, sthen, ok and tests phessler, "lets get this in!" todd
2012-03-15Send secondary DA to terminals with XT in terminfo when starting up andNicholas Marriott
parse it to work out the xterm version.
2012-03-15use the correct dir for php in the default configRobert Nagy
2012-03-15Respond to secondary DA requests.Nicholas Marriott
2012-03-15Fix a warning. Doh.Nicholas Marriott
2012-03-15Add a helper function for enabling an optimization to make some codeNicholas Marriott
clearer.
2012-03-15Add sys/queue.h. ok dlgNicholas Marriott
2012-03-15Accept empty/nonexistant ldap attributes when we want a list. This allowsJonathan Matthew
empty groups to show up, which is helpful if they're used as primary groups. ok dlg@
2012-03-15root should always be excluded from the test for /etc/nologin insteadPhilip Guenthe
of having it always enforced even when marked as ignorenologin. This regressed when the logic was incompletely flipped around in rev 1.251 ok halex@ millert@
2012-03-15don't leak ue_netid_line when freeing the old user treeJonathan Matthew
ok dlg@
2012-03-14Store context off before moving the cursor when wrapping, to fix longNicholas Marriott
standing bug drawing over the status line.
2012-03-14Fix booting on the Thecus N1200. From Tobias Ulmer.Mark Kettenis
2012-03-14Close a race that would corrupt a sockbuf because the code that externalizesMark Kettenis
an SCM_RIGHTS message may sleep. Bits and pieces from NetBSD with some simplifications by yours truly. Fixes the "receive 1" panic seen by many. ok guenther@, claudio@
2012-03-14Force sched_yield() to be resolved before calling dlctl(DL_SET*LCK) withPhilip Guenthe
a function that can call sched_yield(), to avoid recursion ok kurt@ kettenis@
2012-03-14ubsec gets stuck after receiving a packet of a particular lengthMike Belopuhov
and stops processing any further packets. this is believed to be a result of the inconsistency of the destination mbuf chain as a a copy acquired via m_copym2 works fine. so far only one problem was discovered with the optimized inline version of m_copym2: a cluster has to be allocated if source chain had one. unfortunately, this solves the problem only for some packet sizes so apply a larger hammer and call m_copym2 for now. the problem was reported and diffs were patiently tested by Joosep <joosepm-at-gmail-dot-com>, thanks! deraadt agrees to this temporary measure.
2012-03-14* is a character, not a string.Theo de Raadt
ok ajacoutot
2012-03-14Remove the NO_HELP conditional directives. If defined, mg will not compile andlum
has not done so for numerous years. Not hard to fix, but just remove anyway. ok kjell@ millert@
2012-03-14repair function when used with different scales; from AIDA Shinra, thanks!Otto Moerbeek