Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-01-20 | Obvious .Xr fixes, found while testing mandocdb(8). | Ingo Schwarze | |
2014-01-20 | Convert the softraid work unit workqs to taskqs. | Joel Sing | |
ok dlg@ | |||
2014-01-20 | Store 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-20 | p_textvp moved from struct proc to struct process | Philip Guenther | |
2014-01-20 | Remove unused variable. | Joel Sing | |
2014-01-20 | Do not bother setting crp_desc to NULL, since it does not really gain us | Joel Sing | |
anything. ok mikeb@ | |||
2014-01-20 | Add 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-20 | Fix comment | Philip Guenther | |
2014-01-20 | Move p_textvp from struct proc to struct process so that the exit code | Philip Guenther | |
can be further simplified. ok kettenis@ | |||
2014-01-20 | document !received-on, ok dlg benno | Henning Brauer | |
2014-01-20 | support "!received-on <interface>", ok dlg benno | Henning Brauer | |
2014-01-20 | support negated matches on the rcvif, ok dlg benno | Henning Brauer | |
2014-01-20 | %d cleanups, to other formats; ok krw | Theo de Raadt | |
2014-01-20 | bzero to memset | David Gwynne | |
2014-01-20 | bcopy to memcpy | David Gwynne | |
2014-01-20 | Don't silently skip the next statement when encountering an | Kenneth R Westerback | |
invalid IP in a reject statement. | |||
2014-01-20 | Obvious markup fixes; ran into this while testing mandocdb(8). | Ingo Schwarze | |
2014-01-20 | fix markup: .Ar -> .Cm for command modifiers | Ingo Schwarze | |
2014-01-20 | Change markup of some fixed strings from .Ar to .Cm. | Ingo Schwarze | |
2014-01-20 | Instead of checking sc->sc_revision <= 1 check that the | Claudio 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-20 | Cast pointer to (u_int8_t *) when assigning it to a u_int8_t * | Kenneth R Westerback | |
variable. | |||
2014-01-20 | Fix broken prologue content; found with mandocdb(8). | Ingo Schwarze | |
Also reported upstream. | |||
2014-01-20 | Replace dedicated swu_fake variable with a work unit flag. | Joel Sing | |
ok krw@ | |||
2014-01-20 | memleak; found by Loganaden Velvindron @ AfriNIC; ok markus@ | Damien Miller | |
2014-01-20 | append to rather than truncating the log file | Darren Tucker | |
2014-01-19 | Fix .Ar macro abuse; found with mandocdb(8). | Ingo Schwarze | |
2014-01-19 | Refactor rnd startup so arc4random/arc4random_buf can create a chacha state | Theo 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-19 | newqueue support for the queue view, code mostly from pfctl. lifting done | Henning Brauer | |
by Arto Jonsson <ajonsson at kapsi dot fi>, many thanks! | |||
2014-01-19 | Don't use -q on sftp as it suppresses logging, instead redirect the output to | Darren Tucker | |
the regress logfile. | |||
2014-01-19 | do not truncate strlcpy/snprintf, fail hard and proper | Theo de Raadt | |
ok tedu | |||
2014-01-19 | Always compare arch case-insensitively. | Ingo Schwarze | |
2014-01-19 | Avoid the risk of trying to modify a literal string. | Ingo Schwarze | |
2014-01-19 | Always store the arch in lower-case only. | Ingo Schwarze | |
Reduces database size by ~0.5%, and by ~1.5% with -Q. | |||
2014-01-19 | Assert that a workunit has ccbs if it is being scheduled. Otherwise we | Joel Sing | |
deadlock since nothing will ever come back to tell us that the workunit is completed. ok krw@ | |||
2014-01-19 | Remove bogus .Tn; found with mandocdb(8). | Ingo Schwarze | |
2014-01-19 | white space fix | David Gwynne | |
2014-01-19 | We don't have any (and I can't find elsewhere) signed 16 bit or | Kenneth 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-19 | Fix 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-19 | If the system runs out ouf mbufs, the receive queue of the vio | Alexander 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-19 | Rename the hidden symbol __elf_fdnlist to __fdnlist, and remove the | Theo 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-19 | better error message for readpassphrase. from fritjof. ok deraadt | Ted Unangst | |
2014-01-19 | - statics -> statistics | Jason McIntyre | |
- new sentence, new line - wording tweak | |||
2014-01-19 | lazy init nthash to save some memory when it's not used. ok jsing | Ted Unangst | |
2014-01-19 | Cope with an arbitrary number of ELF program headers, and only copy the | Miod Vallat | |
contents of PT_LOAD headers to the output. | |||
2014-01-19 | Prettify; remove useless cast, reformat, fix TAILQ_FOREACH's. | pelikan | |
No functional change. ok deraadt | |||
2014-01-19 | insane typo | Theo de Raadt | |
2014-01-19 | oops, forgotten part | Theo 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-19 | Wording improvements from Patrik Lundin | Theo de Raadt | |
2014-01-19 | Initialize ci_randseed better using arc4random() + a trick. Remove the | Theo de Raadt | |
libkern srandom() API since it is not suitable for this use. ok kettenis miod | |||
2014-01-19 | Retain local changes from rev 1.13. | Tobias Stoeckmann | |
ok deraadt@ |