summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* style(9) and whitespace cleanups.jsing2015-09-122-58/+50
|
* vhif_ifp in struct carp_ifs is set but never used. it can be trimmed.dlg2015-09-121-4/+1
| | | | ok claudio@ mpi@
* ifmedia64 fixes.miod2015-09-122-5/+5
|
* mii_softc's view of the current mii state need to use the proper typesmiod2015-09-121-3/+3
| | | | (ifmedia64).
* Avoid out of boundary access on invalid or short packet reads.tobias2015-09-121-4/+11
| | | | ok florian@
* vhif_nvrs in carp_if is used to count the number of entries indlg2015-09-121-4/+2
| | | | | | | | | 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@
* Use rtref(9) in rtable_match() before returning a route entry.mpi2015-09-122-18/+20
| | | | ok bluhm@, claudio@
* Add a few -fno-builtin-foo to silence the build.miod2015-09-121-2/+4
|
* Remove workaround for old SIMICS toolchain.miod2015-09-122-90/+2
|
* Remove horribly old and outdated `documentation' for the assembly code.miod2015-09-1212-652/+0
|
* Rework fb_setsize() logic to get rid of gotos.miod2015-09-121-20/+18
|
* Also print the error registers in the ddb callback.miod2015-09-121-1/+7
|
* use SOCK_CLOEXEC instead of fnctl; ok guenther beck jsingderaadt2015-09-121-12/+16
|
* When panicing, show the non-idle, on-proc threads before showing the stackguenther2015-09-121-1/+4
| | | | | | trace ok deraadt@ miod@ beck@
* syncderaadt2015-09-1218-18/+18
|
* fix previous;jmc2015-09-122-31/+48
|
* syncderaadt2015-09-1220-0/+27
|
* Intel docs suggest that cpus in C3 may go into deeper states automaticallyguenther2015-09-121-9/+4
| | | | | | | 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@
* Add support for the 88E1512/88E1514 phys using the 1512 init sequencejsg2015-09-122-4/+111
| | | | | | from the Intel code in FreeBSD. Tested by Paul Levlin on a machine with I354.
* Update sqlite3 to 3.8.11.1. Bump major, regen .pc and header. Changesjturner2015-09-12117-5943/+11806
| | | | | | | available here: http://sqlite.org/changes.html Tested in bulk by aja@. ok landry@ "Please crank sqlite when you get this mail." deraadt@
* add missing functions to NAME;jmc2015-09-111-1/+2
| | | | ----------------------------------------------------------------------
* Workaround broken AML by treating FFH vendor 8 the same as vendor 1 (== intel)guenther2015-09-111-3/+7
| | | | ok millert@ kettenis@ and something like an ok mlarkin@
* Make the powerpc pmap (more) mpsafe by protecting both the pmap itself and thekettenis2015-09-112-6/+59
| | | | | | | 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@
* Adapt test to 50MB CAfile limit.bluhm2015-09-112-3/+3
|
* Bad whatever, that if_put() should not be there. Found the hard way by deraadt@claudio2015-09-111-2/+1
| | | | OK mpi@
* Instead of printing errno strings here and there, add a logerrorx()bluhm2015-09-111-52/+66
| | | | | | | | 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@
* Now that the port tree is clean, RTF_XRESOLVE disapear.mpi2015-09-111-2/+2
| | | | ok sthen@, claudio@
* consistency: .Ic -> .Cm; and drop redundant .Bkschwarze2015-09-111-8/+3
|
* spaces found during a readderaadt2015-09-111-19/+18
|
* add some missing .Cm macros and drop some redundant .Bk while hereschwarze2015-09-113-27/+32
|
* Add TLS suppport to nc. Provides a useful little test and script tool.beck2015-09-113-45/+346
| | | | ok jsing@ bluhm@
* unifdef -DOPENSSL_NO_RC5jsing2015-09-112-42/+2
|
* back out refcnt for dv_ref, there's too many hand crafted devices alldlg2015-09-113-9/+8
| | | | | | over the tree. much encouragement from l2k15
* rd pretends to be a device allocated by subr_autoconf. it needs todlg2015-09-111-2/+2
| | | | | | refcnt_init like a real device too. found by deraadt@
* kill strcpy deadbeck2015-09-111-1/+2
| | | | ok deraadt@
* unbreak build on UP kernels.dlg2015-09-111-16/+8
| | | | found by deraadt@
* No longer document RTF_XRESOLVE but keep the define around untilmpi2015-09-111-3/+2
| | | | ports are clean.
* if_put after if_get for in6_src and ip6_output which got a lot easier afterclaudio2015-09-112-17/+38
| | | | all the cleanup by mpi@ since we no longer overwrite ifps, etc. OK dlg@
* RTF_XRESOLVE is gone.mpi2015-09-111-3/+2
|
* if_put after if_get for nd6_nbr. OK dlg@claudio2015-09-111-1/+7
|
* Remove XRESOLVE support.mpi2015-09-112-5/+3
| | | | | dlg@ is sad because we won't be able to implement arpd(8) the way people intended it in the 80s.
* Remove RTF_XRESOLVE support.mpi2015-09-114-12/+5
|
* The -D option requires an argument, and the argument must followschwarze2015-09-111-6/+6
| | | | | without intervening whitespace. Documentation bug found because the SYNOPSIS markup was technically incomplete.
* kill evil commentbeck2015-09-111-3/+1
| | | | ok deraadt@
* Stop supporting RTF_XRESOLVE, no daemon is doing resolution thesempi2015-09-111-11/+4
| | | | | | days. ok claudio@
* if_put after if_get when IP6_EXTHDR_GET fails in icmp6_input.dlg2015-09-111-1/+2
| | | | | | | claudio missed this one cos he was drunk while he was supposed to be fixing this file. ok claudio@ mpi@
* Remove never called functions to dump per-ifp IPv6 statistics now thatmpi2015-09-112-129/+2
| | | | | | the kernel buffers are gone. ok claudio@
* if_put after if_get in ip_savecontroldlg2015-09-111-1/+2
| | | | ok mpi@
* if_put after if_get in igmp_joingroupdlg2015-09-111-5/+7
| | | | ok mpi@ claudio@
* Document rtref(9).mpi2015-09-112-4/+13
|