summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdlib/reallocarray.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-08-30Set the MRU to a full size frame instead of basing it on the MTU.brad2-9/+7
ok dlg@
2014-08-30let the mru always be what the chip can do, not what the mtu implies.dlg1-10/+2
tested by and ok mikeb@
2014-08-30Don't panic when an illegal IRQ is passed to intr_{dis,}establish().mpi2-13/+21
At least the device-tree for the second bge(4) on my PowerMac is not parsed correctly but we can live with that until the bug is fixed.
2014-08-30Bump the fan limit and avoid a panic on my quad G5.mpi1-2/+2
2014-08-30Rewrite how queue heads are inserted and removed from the asynchronousmpi2-287/+210
list. Use a queue head per xfer and no longer per pipe. Since queue heads are now setup when a transfer is submited we do not need to open the control pipe more than once. This also simplify transfer abortion. Tested by many, thanks!
2014-08-30Allow new devices to get an address when XHCI_DEBUG is defined.mpi1-2/+2
2014-08-30Fix profiling (GPROF) build.mpi1-1/+3
2014-08-29Make the syslogd regression tests more reliable. Other processesbluhm14-15/+31
on the system may create log entries during the test run that show up in the log file. Ignore those additional lines.
2014-08-29Prepare for testing libevent in syslogd. Pass the EVENT_NO...bluhm3-4/+20
environment variables over sudo into syslogd. Run the tests with the select(2) and poll(2) and kqueue(2) backend. Call "make libevent" for these tests.
2014-08-29Use the load average from averunnable.ldavg[] instead of bogus cp_time[]miod2-28/+16
arithmetic to display the load average in leds 5-8 of 8 led systems.
2014-08-29Additional input validation:schwarze1-1/+4
Error out on "rcctl enable daemon flags NO". Without this check, this "enable" command effectively disabled the daemon. "commit" ajacoutot@
2014-08-29synctodd1-1/+1
2014-08-29Simplify append_to_pkg_scripts(), in particular avoid the expensiveschwarze1-6/+4
svc_is_enabled() and look at ${pkg_scripts} only, flags are not relevant to this function. "please commit" ajacoutot@
2014-08-29Fix checking sync for old synaptics touchpad (ver 5.9)shadchin1-4/+18
From Thierry Deval <thierry at deval dot be> ok mpi@
2014-08-29Move dhclient.conf(5) to examples.ajacoutot4-7/+7
no objections from todd@ millert@ rpe@
2014-08-29Document the fact that 'enable' can also be used to modify flags even ifajacoutot1-2/+8
the daemon is already enabled.
2014-08-29Use two instead of one http descriptor for request and response.reyk4-51/+69
OK chrisz@
2014-08-29mount_mfs does not require disklabel to be run;jmc1-5/+3
diff From: Navan Carson confirmed/ok mikeb
2014-08-29Implement consistent host hashing for relayd, based onblambert4-17/+121
work done by andre@ Re-add a randomized hash seed (which had apparently gotten inadvertently removed in the past). Allows for multiple relayd instances to be configured to forward traffic to the same host, falling back to the random seed when not explicitly configured to do so. ok reyk@
2014-08-29The image/x-ms-bmp extension is bmp, not mp.reyk1-2/+2
Found by Navan Carson; Thanks!
2014-08-29Some cleanings, no functional change.ajacoutot1-65/+53
2014-08-29update entry for /usr/share/sysmerge; ok ajacoutotjmc1-5/+5
2014-08-29knock out double .Pp;jmc1-3/+2
2014-08-28Merge a paragraph.ajacoutot1-9/+8
2014-08-28tweak AUTHORS; ok ajacoutotjmc1-3/+3
2014-08-28Major sysmerge cleanup now that both etc and xetc sets are part of base.ajacoutot2-541/+352
Expect more changes/cleanup/... in the near future. -S (signature) option is gone since we are not fetching sets anymore -s and -x are gone as well for obvious reasons Left is: usage: sysmerge [-bdp] I would appreciate feedback, *lots* of things have changed and there may be side effects I missed. Consider sysmerge as WIP for the time being.
2014-08-28Drop check and tweak comment.ajacoutot1-4/+3
with schwarze@
2014-08-28OpenSSL_add_all_algorithms() is called from openssl_startup() - it does notjsing6-13/+6
need to also be called from some of the applications.
2014-08-28openssl_setup() calls SSL_load_error_strings(), which happens to calljsing27-60/+30
ERR_load_crypto_strings() - as such, we do not need to call the same function from most of the applications.
2014-08-28Add option handling with a callback function for argument processing.jsing2-2/+10
2014-08-28Convert openssl(1) crl to new option/usage handling.jsing1-186/+246
2014-08-28Given the usage option name/argument name width a few more characters.jsing1-2/+2
2014-08-28Ensure that a format option argument is a known specifier.jsing1-2/+10
2014-08-28Add option handling for ordered flags.jsing2-2/+8
2014-08-28Add option handling for input/output formats.jsing2-2/+8
2014-08-28er, rehook httpd.jmc1-6/+6
here's a thought: if i just leave man pages alone, they will eventually come good. while here, remove some escape sequences;
2014-08-28fix previous, and add a SEE ALSO section for httpd;jmc1-5/+5
2014-08-28Simplify.ajacoutot1-5/+2
2014-08-28Consistency in conditionals; no functional change.ajacoutot1-5/+5
2014-08-28Support .St -susv1 and .St -susv4. Illumos wants to use this,schwarze2-5/+11
and it's illogical anyway to have -susv2 and -susv3 but not -susv4.
2014-08-28I just noticed that -Tps writes "%%CreationDate:" headers.schwarze1-6/+1
That's an unwelcome leak of potentially private information. Kill it with fire.
2014-08-28preserve errno value on success.bcook2-8/+12
If getrandom returns a temporary failure, make sure errno is not polluted when it succeeds. Thanks to deraadt@ for pointing it out.
2014-08-27Disentangle svc_default_enabled_flags() and svc_get_flags().schwarze1-13/+9
This saves three expensive function calls in svc_default_enabled_flags(), two to _rc_parse_conf() and one to svc_get_flags(). No functional change. Feedback and ok ajacoutot@.
2014-08-27Remove $_ usage that warns under Perl 5.18.kspillner1-2/+1
Yep espie@
2014-08-27Rename Persistant to Persistent.kspillner4-10/+10
sure espie@
2014-08-27Convert openssl(1) prime to the new options/usage handling.jsing1-60/+81
2014-08-27Reset the config struct before calling options_parse(), otherwise configjsing1-1/+3
options from the previous run stick in interactive mode.
2014-08-27Add an option type that handles argument to integer conversion.jsing2-4/+22
2014-08-27Add regression tests for diff -uw issue reported by guenther@. Ensure thekspillner5-3/+24
'+' and '-' always appear in the first column of a newline in diff -uw output, even when one file doesn't end with a newline and the other file contains additional lines. ok guenther@
2014-08-27Ensure diff -uw always produces valid output when one file doesn't endkspillner1-5/+9
with a newline. Issue reported by guenther@. ok guenther@