Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-06-09 | sync | Theo de Raadt | |
2013-06-09 | adapt to a pcidevs name change | Theo de Raadt | |
2013-06-09 | sync | Theo de Raadt | |
2013-06-09 | shorten many names to cope with uvm code growth | Theo de Raadt | |
ok jsg | |||
2013-06-09 | remove fxp because uvm additions overflows all i386 install media | Theo de Raadt | |
2013-06-09 | Fix/clarify some comments. do memset()'s only when variable is going | Kenneth R Westerback | |
to be used. | |||
2013-06-09 | Re-apply static route and classless static route support -- this time | Kenneth R Westerback | |
passing the correct destination for the default route, '0.0.0.0', rather than the new lease address. Populating egress group works this time. Problem found the hard way by Chris Smith. | |||
2013-06-09 | Fix resident_count accounting. Resident count would be incremented when | Miod Vallat | |
mappings are created, but only decremented if the pages had actually been faulted in. | |||
2013-06-09 | sort; | Jason McIntyre | |
2013-06-09 | Re-apply route adding code refactoring -- it wasn't the problem that | Kenneth R Westerback | |
broke populating the egress group. | |||
2013-06-09 | And remove files removed in upstream tarball. Duh. | Landry Breuil | |
2013-06-09 | Bump major to 23. last dead kitten for today. | Landry Breuil | |
2013-06-09 | merge conflicts, and kill a few more kittens while here. | Landry Breuil | |
2013-06-09 | Add fts3_tokenize_vtab.c to SRCS, regen .pc and header with the correct | Landry Breuil | |
version info. | |||
2013-06-09 | merge conflicts | Landry Breuil | |
2013-06-09 | Update to sqlite 3.7.17. | Landry Breuil | |
See for changes: http://www.sqlite.org/releaselog/3_7_16.html http://www.sqlite.org/releaselog/3_7_16_1.html http://www.sqlite.org/releaselog/3_7_16_2.html http://www.sqlite.org/releaselog/3_7_17.html tested by sebastia@ on vax & sparc, by myself on hppa/amd64/sparc64/sgi/i386/macppc. looks ok to espie@ (a lot of kittens died during the preparation of this cvs import) | |||
2013-06-09 | Add test for "true && true && false" and "set -e". | Todd C. Miller | |
2013-06-09 | arguments to bcopy/memmove are reversed. put on thinking cap, then commit. | Ted Unangst | |
2013-06-09 | regen | Miod Vallat | |
2013-06-09 | Constify the mib argument of sysctl(). | Miod Vallat | |
ok matthew@ millert@ | |||
2013-06-09 | add some basic descriptions for the fuse sysctls | Ted Unangst | |
2013-06-09 | add fuse sysctls, from Sylvestre Gallon | Ted Unangst | |
2013-06-09 | typo | Miod Vallat | |
2013-06-09 | move fuse sysctl defines up and add _KERNEL. from Sylvestre Gallon | Ted Unangst | |
2013-06-09 | change a bcopy to memmove (mainly to catch platforms that don't offer it) | Ted Unangst | |
2013-06-09 | the kernel is supposed to provide memmove, but some archs are missing it. | Ted Unangst | |
add i386 sparc and sparc64. ok deraadt | |||
2013-06-09 | fix an off by one preventing access to the last filesystem. | Ted Unangst | |
from Sylvestre Gallon | |||
2012-05-22 | import sqlite 3.7.12 (tested by landry@) | Marc Espie | |
2012-04-14 | sqlite 3.7.11 library, vendor sources | Marc Espie | |
2013-06-09 | oops! one more instance of previous... | Jason McIntyre | |
2013-06-09 | the argument name for "source" is "source", not "table"; | Jason McIntyre | |
from MrD | |||
2013-06-09 | Add back backslash fixes caught in rollback. | Kenneth R Westerback | |
2013-06-09 | Backout static/classless route handling and default route refactoring | Kenneth R Westerback | |
since the former relies on the latter and the latter breaks 'egress' group populating. | |||
2013-06-08 | KNF | Bob Beck | |
2013-06-08 | Fix parsing of ambiguous options, the whole loop must be processed. | Todd C. Miller | |
From FreeBSD. OK miod@ | |||
2013-06-08 | POSIX specifies that for an AND/OR list, only the last command's | Todd C. Miller | |
exit status matters for "set -e". OK espie@ | |||
2013-06-08 | Add CTASSERT macro, for compile time assertions | Stefan Fritsch | |
ok kettenis@ | |||
2013-06-08 | Remove redundant code setting PCI_COMMAND_MASTER_ENABLE as this is already | Brad Smith | |
taken care of by pci_mapreg_map(). Ok yasuoka@ uebayasi@ | |||
2013-06-08 | Add new sysctl for pipex packet input/output queue length and | YASUOKA Masahiko | |
counters. ok guenther, feedback jmc | |||
2013-06-07 | Add proper mmap(2) support for drm(4)/inteldrm(4). This changes the | Mark Kettenis | |
DRM_I915_GEM_MMAP and DRM_I915_GEM_MMAP_GTT ioctls to be compatible with Linux. This also is the first step that moves us away from accessing all graphics memory through the GTT, which should make things faster. ok tedu@ (for the uvm bits) | |||
2013-06-07 | Add {,u}{div,mod}si3 to libkern and to the kernel as well. | Miod Vallat | |
2013-06-07 | Add an "ABANDONED" channel state and use for mux sessions that are | Darren Tucker | |
disconnected via the ~. escape sequence. Channels in this state will be able to close if the server responds, but do not count as active channels. This means that if you ~. all of the mux clients when using ControlPersist on a broken network, the backgrounded mux master will exit when the Control Persist time expires rather than hanging around indefinitely. bz#1917, also reported and tested by tedu@. ok djm@ markus@. | |||
2013-06-07 | Add mkuboot to the base set. | Brandon Mercer | |
OK florian@ | |||
2013-06-07 | stuff that currently doesn't match what posix says, naddy agrees | Marc Espie | |
2013-06-07 | sync | Theo de Raadt | |
2013-06-06 | Disable a broken optimization in try_combine(); GCC PR #34628. | Miod Vallat | |
The PR comes with a real fix, but it is covered by the GPL v3, and is neither trivial nor straightforward, so use a hammer and disable the unreliable code. Verified to fix bogus code generation on macppc. | |||
2013-06-06 | tweak previous; | Jason McIntyre | |
2013-06-06 | sync | Miod Vallat | |
2013-06-06 | Update the miniroot to install some other needed files. Much collaboration and | Brandon Mercer | |
OK florian@ | |||
2013-06-06 | sync | Theo de Raadt | |