summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-01-20Obvious .Xr fixes, found while testing mandocdb(8).Ingo Schwarze
2014-01-20Convert the softraid work unit workqs to taskqs.Joel Sing
ok dlg@
2014-01-20Store the algorithm and key length in the discipline data structure,Joel Sing
instead of having multiple switch statements in various places. ok mikeb@
2014-01-20p_textvp moved from struct proc to struct processPhilip Guenther
2014-01-20Remove unused variable.Joel Sing
2014-01-20Do not bother setting crp_desc to NULL, since it does not really gain usJoel Sing
anything. ok mikeb@
2014-01-20Add strong stack protector mode for the original propolice in GCC3.Martynas Venckus
This includes additional functions to be protected --- those that have local array definitions, or have references to local frame addresses. Miod verified that this works on real hardware, and not just on the cross-compiled monster I tested this on.
2014-01-20Fix commentPhilip Guenther
2014-01-20Move p_textvp from struct proc to struct process so that the exit codePhilip Guenther
can be further simplified. ok kettenis@
2014-01-20document !received-on, ok dlg bennoHenning Brauer
2014-01-20support "!received-on <interface>", ok dlg bennoHenning Brauer
2014-01-20support negated matches on the rcvif, ok dlg bennoHenning Brauer
2014-01-20%d cleanups, to other formats; ok krwTheo de Raadt
2014-01-20bzero to memsetDavid Gwynne
2014-01-20bcopy to memcpyDavid Gwynne
2014-01-20Don't silently skip the next statement when encountering anKenneth R Westerback
invalid IP in a reject statement.
2014-01-20Obvious markup fixes; ran into this while testing mandocdb(8).Ingo Schwarze
2014-01-20fix markup: .Ar -> .Cm for command modifiersIngo Schwarze
2014-01-20Change markup of some fixed strings from .Ar to .Cm.Ingo Schwarze
2014-01-20Instead of checking sc->sc_revision <= 1 check that theClaudio Jeker
fadt->hdr_revision <= 1. This is a better check since it checks the version of the proper descriptor. This allows the alix APU to reboot since those boards have currently a wrong sc->sc_revision. Committing this now so that it can be tested easier. With and OK jsg@ also fine by derradt@
2014-01-20Cast pointer to (u_int8_t *) when assigning it to a u_int8_t *Kenneth R Westerback
variable.
2014-01-20Fix broken prologue content; found with mandocdb(8).Ingo Schwarze
Also reported upstream.
2014-01-20Replace dedicated swu_fake variable with a work unit flag.Joel Sing
ok krw@
2014-01-20memleak; found by Loganaden Velvindron @ AfriNIC; ok markus@Damien Miller
2014-01-20append to rather than truncating the log fileDarren Tucker
2014-01-19Fix .Ar macro abuse; found with mandocdb(8).Ingo Schwarze
2014-01-19Refactor rnd startup so arc4random/arc4random_buf can create a chacha stateTheo de Raadt
on first call, very early on, from boot-supplied entropy, then feed from that. Later when we have more subsystems ready, the main() can properly initialize the entropy-driven model. Lots of discussion with mikeb. ok kettenis markus mikeb
2014-01-19newqueue support for the queue view, code mostly from pfctl. lifting doneHenning Brauer
by Arto Jonsson <ajonsson at kapsi dot fi>, many thanks!
2014-01-19Don't use -q on sftp as it suppresses logging, instead redirect the output toDarren Tucker
the regress logfile.
2014-01-19do not truncate strlcpy/snprintf, fail hard and properTheo de Raadt
ok tedu
2014-01-19Always compare arch case-insensitively.Ingo Schwarze
2014-01-19Avoid the risk of trying to modify a literal string.Ingo Schwarze
2014-01-19Always store the arch in lower-case only.Ingo Schwarze
Reduces database size by ~0.5%, and by ~1.5% with -Q.
2014-01-19Assert that a workunit has ccbs if it is being scheduled. Otherwise weJoel Sing
deadlock since nothing will ever come back to tell us that the workunit is completed. ok krw@
2014-01-19Remove bogus .Tn; found with mandocdb(8).Ingo Schwarze
2014-01-19white space fixDavid Gwynne
2014-01-19We don't have any (and I can't find elsewhere) signed 16 bit orKenneth R Westerback
signed 8 bit dhcp option types. So nuke getShort() and all 's' and 'b' format support. While here use '%u'/'%lu' and not '%d'/'%ld' to snprintf() unsigned values.
2014-01-19Fix one more off-by-one (making it an off-by-two):Tobias Stoeckmann
1. integer division can give an off-by-one (like 2/3 = 0 for calloc) 2. ending the shells array with NULL takes space, too ok millert@
2014-01-19If the system runs out ouf mbufs, the receive queue of the vioAlexander Bluhm
interface may get emtpy. The driver did not recover from that starvation as it does not get receive interrupts anymore. Fix this by adding a one second receive timeout in that case. OK sf@
2014-01-19Rename the hidden symbol __elf_fdnlist to __fdnlist, and remove theTheo de Raadt
format handling wrapper. __fdnlist is used by libkvm. Avoid cranking libc because the time is inconvenient, and __elf_fdnlist is not used anywhere. ok millert jsing
2014-01-19better error message for readpassphrase. from fritjof. ok deraadtTed Unangst
2014-01-19- statics -> statisticsJason McIntyre
- new sentence, new line - wording tweak
2014-01-19lazy init nthash to save some memory when it's not used. ok jsingTed Unangst
2014-01-19Cope with an arbitrary number of ELF program headers, and only copy theMiod Vallat
contents of PT_LOAD headers to the output.
2014-01-19Prettify; remove useless cast, reformat, fix TAILQ_FOREACH's.pelikan
No functional change. ok deraadt
2014-01-19insane typoTheo de Raadt
2014-01-19oops, forgotten partTheo de Raadt
Initialize ci_randseed better using arc4random() + a trick. Remove the libkern srandom() API since it is not suitable for this use. ok kettenis miod
2014-01-19Wording improvements from Patrik LundinTheo de Raadt
2014-01-19Initialize ci_randseed better using arc4random() + a trick. Remove theTheo de Raadt
libkern srandom() API since it is not suitable for this use. ok kettenis miod
2014-01-19Retain local changes from rev 1.13.Tobias Stoeckmann
ok deraadt@