Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-03-17 | hvctl(4) is a driver for the "hvctl" Logical Domain Channel that allows the | Mark Kettenis | |
control domain to talk to the sun4v hypervisor. | |||
2012-03-17 | vldc(4) is a "bus" driver for Logical Domain Channels. | Mark Kettenis | |
2012-03-17 | Do not clear to end of line if the line is full, fixes missing last | Nicholas Marriott | |
character in rightmost pane. | |||
2012-03-17 | Use the region lower not the pane size to work out where the bottom line | Nicholas Marriott | |
is. | |||
2012-03-17 | Tweak last fix to actually hit the right end of pane. | Nicholas Marriott | |
2012-03-17 | Fix warnings. Doh. | Nicholas Marriott | |
2012-03-17 | Check event_initialized before event_del if event may not have been set | Nicholas Marriott | |
up; libevent2 complains about this. Reported by Moriyoshi Koizumi. | |||
2012-03-17 | Redirect libevent logging to tmux's log. | Nicholas Marriott | |
2012-03-17 | Revert screen-write.c r1.54 and fix the bug properly. After wrapping a | Nicholas Marriott | |
line in a pane, the cursor needs to move to the next line unless it scrolled. | |||
2012-03-17 | some updates to reflect reality; prompted by a diff from Daniel Bolgheroni | Jason McIntyre | |
ok ajacoutot | |||
2012-03-17 | for consistency, remove "2.0" from mos' Nd; ok jsg | Jason McIntyre | |
2012-03-17 | llu -> PRIu64 in enqueue() to avoid warning in portable | Gilles Chehade | |
diff from Guillaume Leconte <guillaume.leconte@scality.com> | |||
2012-03-17 | remove IP_JUMBO, SO_JUMBO, and RTF_JUMBO. | David Gwynne | |
no objection from mcbride@ krw@ markus@ deraadt@ | |||
2012-03-16 | install the rc.d script for tftpd, ok dlg@ | Stuart Henderson | |
2012-03-16 | missing bracket; ok miod | Theo de Raadt | |
2012-03-16 | pull in more .h (spotted since struct vnode was not in scope) | Theo de Raadt | |
2012-03-16 | don't leak ypldap_addr structures when doing dns lookups | Jonathan Matthew | |
ok dlg@ | |||
2012-03-16 | Display L3 cache information on amd64 for amd cpus, Intel now uses a | Christiano F. Haesbaert | |
different scheme. ok jsg@ | |||
2012-03-15 | Fix 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-15 | Take cd9660 support off the "obviously a floppy" install media, to find | Theo 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-15 | sync | Theo de Raadt | |
2012-03-15 | uncached_base was introduced early in IP27 support, since these designs use | Miod 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-15 | No longer allow bus_space_barrier() to be a NULL pointer on a given | Miod 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-15 | Allow multiple backslashes at the start of a namespace path. It is pretty | Mark 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-15 | we are always using gcc4 now | Theo de Raadt | |
2012-03-15 | Reduce 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-15 | stupid cvs (dir has 'core' in the name...) | Stuart Henderson | |
2012-03-15 | resolve conflicts | Stuart Henderson | |
2012-03-15 | improve 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-15 | Add AMD Hudson-2 chipset. From Brad. | Stuart Henderson | |
2012-03-15 | Fix typo with the entry for the AMD Hudson-2 chipset. From Brad. | Stuart Henderson | |
2012-03-15 | Let nviic(4) match the NVIDIA MCP89 chipset, from Brad. | Stuart Henderson | |
2012-03-15 | Direct IPv6 packets with Ethernet encapsulation into the appropriate | Mike 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-15 | Send secondary DA to terminals with XT in terminfo when starting up and | Nicholas Marriott | |
parse it to work out the xterm version. | |||
2012-03-15 | use the correct dir for php in the default config | Robert Nagy | |
2012-03-15 | Respond to secondary DA requests. | Nicholas Marriott | |
2012-03-15 | Fix a warning. Doh. | Nicholas Marriott | |
2012-03-15 | Add a helper function for enabling an optimization to make some code | Nicholas Marriott | |
clearer. | |||
2012-03-15 | Add sys/queue.h. ok dlg | Nicholas Marriott | |
2012-03-15 | Accept empty/nonexistant ldap attributes when we want a list. This allows | Jonathan Matthew | |
empty groups to show up, which is helpful if they're used as primary groups. ok dlg@ | |||
2012-03-15 | root should always be excluded from the test for /etc/nologin instead | Philip 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-15 | don't leak ue_netid_line when freeing the old user tree | Jonathan Matthew | |
ok dlg@ | |||
2012-03-14 | Store context off before moving the cursor when wrapping, to fix long | Nicholas Marriott | |
standing bug drawing over the status line. | |||
2012-03-14 | Fix booting on the Thecus N1200. From Tobias Ulmer. | Mark Kettenis | |
2012-03-14 | Close a race that would corrupt a sockbuf because the code that externalizes | Mark 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-14 | Force sched_yield() to be resolved before calling dlctl(DL_SET*LCK) with | Philip Guenthe | |
a function that can call sched_yield(), to avoid recursion ok kurt@ kettenis@ | |||
2012-03-14 | ubsec gets stuck after receiving a packet of a particular length | Mike 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-14 | Remove the NO_HELP conditional directives. If defined, mg will not compile and | lum | |
has not done so for numerous years. Not hard to fix, but just remove anyway. ok kjell@ millert@ | |||
2012-03-14 | repair function when used with different scales; from AIDA Shinra, thanks! | Otto Moerbeek | |