summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-09-12mii_softc's view of the current mii state need to use the proper typesMiod Vallat
(ifmedia64).
2015-09-12Avoid out of boundary access on invalid or short packet reads.Tobias Stoeckmann
ok florian@
2015-09-12vhif_nvrs in carp_if is used to count the number of entries inDavid Gwynne
vhif_ifs so you can tell when that list is empty. you can use TAILQ_EMPTY to see if a list is empty though, so kill the count and use EMPTY instead. ok mpi@
2015-09-12Use rtref(9) in rtable_match() before returning a route entry.Martin Pieuchot
ok bluhm@, claudio@
2015-09-12Add a few -fno-builtin-foo to silence the build.Miod Vallat
2015-09-12Remove workaround for old SIMICS toolchain.Miod Vallat
2015-09-12Remove horribly old and outdated `documentation' for the assembly code.Miod Vallat
2015-09-12Rework fb_setsize() logic to get rid of gotos.Miod Vallat
2015-09-12Also print the error registers in the ddb callback.Miod Vallat
2015-09-12use SOCK_CLOEXEC instead of fnctl; ok guenther beck jsingTheo de Raadt
2015-09-12When panicing, show the non-idle, on-proc threads before showing the stackPhilip Guenther
trace ok deraadt@ miod@ beck@
2015-09-12syncTheo de Raadt
2015-09-12fix previous;Jason McIntyre
2015-09-12syncTheo de Raadt
2015-09-12Intel docs suggest that cpus in C3 may go into deeper states automaticallyPhilip Guenther
when all cores are in C3, so treat the latency+power values from ACPI as advisory and stop skipping states based on them. ok mlarkin@ kettenis@
1998-10-05Import of SSLeay-0.9.0b with RSA and IDEA stubbed + OpenBSD buildryker
functionality for shared libs. Note that routines such as sslv2_init and friends that use RSA will not work due to lack of RSA in this library. Needs documentation and help from ports for easy upgrade to full functionality where legally possible.
2015-09-12Add support for the 88E1512/88E1514 phys using the 1512 init sequenceJonathan Gray
from the Intel code in FreeBSD. Tested by Paul Levlin on a machine with I354.
2015-09-12Update sqlite3 to 3.8.11.1. Bump major, regen .pc and header. ChangesJames Turner
available here: http://sqlite.org/changes.html Tested in bulk by aja@. ok landry@ "Please crank sqlite when you get this mail." deraadt@
2015-09-11add missing functions to NAME;Jason McIntyre
----------------------------------------------------------------------
2015-04-19Update sqlite3 to 3.8.9. Changes available here:James Turner
http://sqlite.org/releaselog/3_8_9.html Tested in bulk and ok landry@
2015-04-04Update sqlite3 to 3.8.8.3. Changes available here:James Turner
http://sqlite.org/releaselog/3_8_8_3.html Tested in bulk and ok landry@
2014-09-29Update sqlite3 to 3.8.6. A list of changes are available here:James Turner
http://sqlite.org/releaselog/3_8_6.html. Tested in a bulk and ok landry@
2014-03-24Update sqlite to 3.8.4. A list of changes are available here:James Turner
http://sqlite.org/changes.html. Tested in a bulk and ok landry@
2013-06-09Update 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)
2012-11-29minor update to 3.7.14.1Marc Espie
2012-06-22import 3.7.13Marc Espie
okay jasper@
2012-06-04minor update to 3.7.12.1Marc Espie
2012-04-14sqlite 3.7.11 library, vendor sourcesMarc Espie
2015-09-11Workaround broken AML by treating FFH vendor 8 the same as vendor 1 (== intel)Philip Guenther
ok millert@ kettenis@ and something like an ok mlarkin@
2015-09-11Make the powerpc pmap (more) mpsafe by protecting both the pmap itself and theMark Kettenis
pv lists with a mutex. This should make pmap_enter(9), pmap_remove(9) and pmap_page_protect(9) safe to use without holding the kernel lock. ok visa@, mpi@, deraadt@
2015-09-11Adapt test to 50MB CAfile limit.Alexander Bluhm
2015-09-11Bad whatever, that if_put() should not be there. Found the hard way by deraadt@Claudio Jeker
OK mpi@
2015-09-11Instead of printing errno strings here and there, add a logerrorx()Alexander Bluhm
to syslogd that does not do that. Use it for anything that does not look like a system call or library call around it. Also add logerrorctx() that prints the TLS error instead. Reduce the maximum CAfile limit to 50MB, requested by Bob. OK beck@
2015-09-11Now that the port tree is clean, RTF_XRESOLVE disapear.Martin Pieuchot
ok sthen@, claudio@
2015-09-11consistency: .Ic -> .Cm; and drop redundant .BkIngo Schwarze
2015-09-11spaces found during a readTheo de Raadt
2015-09-11add some missing .Cm macros and drop some redundant .Bk while hereIngo Schwarze
2015-09-11Add TLS suppport to nc. Provides a useful little test and script tool.Bob Beck
ok jsing@ bluhm@
2015-09-11unifdef -DOPENSSL_NO_RC5Joel Sing
2015-09-11back out refcnt for dv_ref, there's too many hand crafted devices allDavid Gwynne
over the tree. much encouragement from l2k15
2015-09-11rd pretends to be a device allocated by subr_autoconf. it needs toDavid Gwynne
refcnt_init like a real device too. found by deraadt@
2015-09-11kill strcpy deadBob Beck
ok deraadt@
2015-09-11unbreak build on UP kernels.David Gwynne
found by deraadt@
2015-09-11No longer document RTF_XRESOLVE but keep the define around untilMartin Pieuchot
ports are clean.
2015-09-11if_put after if_get for in6_src and ip6_output which got a lot easier afterClaudio Jeker
all the cleanup by mpi@ since we no longer overwrite ifps, etc. OK dlg@
2015-09-11RTF_XRESOLVE is gone.Martin Pieuchot
2015-09-11if_put after if_get for nd6_nbr. OK dlg@Claudio Jeker
2015-09-11Remove XRESOLVE support.Martin Pieuchot
dlg@ is sad because we won't be able to implement arpd(8) the way people intended it in the 80s.
2015-09-11Remove RTF_XRESOLVE support.Martin Pieuchot
2015-09-11The -D option requires an argument, and the argument must followIngo Schwarze
without intervening whitespace. Documentation bug found because the SYNOPSIS markup was technically incomplete.