Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-07-13 | use mallocarray for multiplied value checking | Ted Unangst | |
2014-07-13 | fix regress tests after log changes. noticed by bluhm@. | Sebastian Benoit | |
everybody stand back. i know regular expressions. | |||
2014-07-13 | Add configuration handling for certificate and key files. | Joel Sing | |
2014-07-13 | KASSERTMSG(9): New kernel assertion with message | Masao Uebayashi | |
KASSERT() is annoying as it only prints the expression as a string. If you (developers) want to know a little more information, you have to do: #ifdef DIAGNOSTIC if (bad) panic(...); #endif KASSERTMSG() replaces it into a single line: KASSERTMSG(!bad, ...); Taken from NetBSD. (There is a concern that KASSERT() messages are too long; consume more memory, and not friendly for small monitors. This have to be considered & revisited later.) "Like" from henning@ Man page review & advices from jmc@ and schwarze@ | |||
2014-07-13 | Add stubs for the proposed server API. | Joel Sing | |
2014-07-13 | add RDC R1012 support | sasano | |
2014-07-13 | Stop leaking internal library pointers in error messages. | Joel Sing | |
Requested by miod@ | |||
2014-07-13 | pass correct sizes to free() | Ted Unangst | |
2014-07-13 | add missing whitespace between .Fa macro argument and trailing punctuation | Ingo Schwarze | |
2014-07-13 | use mallocarray() | Theo de Raadt | |
2014-07-13 | pciide.c, pciide_rdc_reg.h(new): ported rdcide(4) from NetBSD. | sasano | |
it supports RDC's R1012 IDE controller. tested on 86duino EduCake (DM&P Vortex86EX SoC) ok by deraadt@ | |||
2014-07-13 | Tabs, not spaces. | Joel Sing | |
2014-07-13 | use mallocarray | Ted Unangst | |
2014-07-13 | Rename the context allocation from ressl_new to ressl_client, which makes | Joel Sing | |
it completely obvious what the context is for. Ensure client functions are used on client contexts. | |||
2014-07-13 | one .Fn argument per function argument | Ingo Schwarze | |
2014-07-13 | Some reallocarray() use; review Jean-Philippe Ouellet, patrick keshishian | Theo de Raadt | |
ok tedu | |||
2014-07-13 | Split the context allocation out from the configuration. This will allow | Joel Sing | |
us to properly report errors that occur during configuration processing. Discussed with tedu@ | |||
2014-07-13 | Do not fold multiple function arguments into the same .Fn argument: | Ingo Schwarze | |
That may cause indexing and formatting issues. Buggy mdoc(7) code mentioned by uebayasi@ to jmc@. | |||
2014-07-13 | boot(9): Cosmetic changes to improve diff'ability. | Masao Uebayashi | |
2014-07-13 | Move the client code into a separate file. | Joel Sing | |
2014-07-13 | Rename various configuration handling functions. | Joel Sing | |
Requested by and discussed with tedu@. | |||
2014-07-13 | Comment out option GPT until the matching userland bits are in place. | Miod Vallat | |
2014-07-13 | Use a single ressl.h header file. | Joel Sing | |
Discussed with beck@ and tedu@. | |||
2014-07-13 | Cosmetic changes to reduce diffs. | Masao Uebayashi | |
2014-07-13 | Update procflags list, add PS_SYSTEM, PS_EMBRYO, PS_ZOMBIE and | Claudio Jeker | |
PS_NOBROADCASTKILL. The resulting table is shifted so far right that a few additional lines had to be wrapped. Not ideal but the best we can do at the moment. | |||
2014-07-13 | The correct place to call _bus_dmamap_sync() is after we copy data *to* the | Mark Kettenis | |
bounce buffer and before we copy data *from* the bounce buffer. Currently _bus_dmamap_sync() is a no-op, but keeping it #ifdef'ed out in the wrong place makes no sense. ok deraadt@, miod@ | |||
2014-07-13 | sync | Theo de Raadt | |
2014-07-13 | Use lerrx instead of errx since the logging subsystem is already initialized. | Claudio Jeker | |
OK florian@ | |||
2014-07-13 | Fix sched_stop_secondary_cpus() to properly drain CPUs | Matthew Dempsky | |
TAILQ_FOREACH() isn't safe to use in sched_chooseproc() to iterate over the run queues because within the loop body we remove the threads from their run queues and reinsert them elsewhere. As a result, we end up only draining the first thread of each run queue rather than all of them. ok kettenis | |||
2014-07-13 | yes indeed, it returns void *. from Jean-Philippe Ouellet, i also had | Theo de Raadt | |
this lurking in a tree | |||
2014-07-13 | Explicitly initialise slen - this was not previously done due to a missing | Joel Sing | |
M_ASN1_D2I_begin macro. | |||
2014-07-13 | Convert error handling to SSLerr and ERR_asprintf_error_data. | Joel Sing | |
2014-07-13 | Some functions need to dup() before sending a socket by imsg and don't | YASUOKA Masahiko | |
need to close() after sending socket since imsg_compose() closes the passing socket. | |||
2014-07-13 | Only set machdep.allowaperture if 'vga1: aperture needed' is found | Robert Peichaer | |
in dmesg output. Use that information to decide whether or not to ask the user if he intends to use X. initial diff from and OK halex@ OK deraadt@ | |||
2014-07-13 | include stdint.h for standard ints. from Jean-Philippe Ouellet | Ted Unangst | |
2014-07-13 | fix even more trailing tabs | Jasper Lievisse Adriaanse | |
2014-07-13 | #$%#@$# CONSPEED | Miod Vallat | |
2014-07-13 | Display zero page hit and miss counters in vmstat -s. | Mark Kettenis | |
ok deraadt@ | |||
2014-07-13 | more hanging tabs | Jasper Lievisse Adriaanse | |
2014-07-13 | ugly hanging tabs; ok jasper | Theo de Raadt | |
2014-07-13 | Show an error if cmd_find_session can't find the current session, like | Nicholas Marriott | |
the other functions. | |||
2014-07-13 | No libsa putchar wanted here actually | Miod Vallat | |
2014-07-13 | An EOF is a good reason to close a connection. | Kenneth R Westerback | |
ok nicm@ | |||
2014-07-13 | obvious conversion to mallocarray() | Theo de Raadt | |
2014-07-13 | tweak previous; | Jason McIntyre | |
2014-07-13 | missing bracket in previous; | Jason McIntyre | |
2014-07-13 | Still needs <sys/reboot.h> | Miod Vallat | |
2014-07-13 | If a client is killed while suspended with ^Z so has gone through the | Nicholas Marriott | |
MSG_EXITED dance, don't try to resume it since a) it's pointless and b) the tty structures have been cleaned up and tmux will crash. | |||
2014-07-13 | remove all crypt choices other than bcrypt. ok afresh1 deraadt | Ted Unangst | |
2014-07-13 | calling this "encryption" makes me cringe. "slightly obfuscated" is better. | Ted Unangst | |