summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-09-15Make the HTTP version mandatory and abort if it is missing in the request.Reyk Floeter
2014-09-15Make the HTTP version mandatory and abort if it is missing in the request.Reyk Floeter
2014-09-15We missed a hyphen in 'async-signal-safe'Philip Guenther
Noted by Jean-Philippe Ouellet (jean-philippe (at) ouellet.biz)
2014-09-15When fopen()ing internal to libc (the API doesn't support the usePhilip Guenther
of the resulting FILE *), then pass fopen() the 'e' mode letter to mark it close-on-exec. ok miod@
2014-09-15Pass O_CLOEXEC to open() or mkostemp() instead of setting FD_CLOEXEC afterwardsPhilip Guenther
ok miod@
2014-09-15Use _PATH_NETWORKS for "/etc/networks"Philip Guenther
ok miod@
2014-09-15Mention that SIGTHR is both local and weirdPhilip Guenther
"seems fair" schwarze@
2014-09-14Error out when negative values are given for sizes on the command line.Ingo Schwarze
Do not error out when the maximum permissible value is given, but only when it is exceeded. Patch from William Orr <will at worrbase dot com> using feedback from tedu@. ok millert@
2014-09-14Support backslash-escaping of white space in the query expression,Ingo Schwarze
to be more similar to apropos(1) called from the shell. Missing feature reported by Marcus MERIGHI <mcmer dash openbsd at tor dot at> on misc@.
2014-09-14Add the ne(4) NE2000 PCI frontend.Brad Smith
ok kettenis@
2014-09-14Clean up isp(4) from kernel configs with the new drivers alreadyBrad Smith
added. The new drivers match at a higher priority.
2014-09-14Fix some bugs in the fpu_sqrt implementation that would limit the accuracyMark Kettenis
of the result in many cases. From FreeBSD allbeit with some changes to keep the coding style consistent.
2014-09-14Do not claim that empty numbers set EINVAL, our implementation doesn't.Ingo Schwarze
Mention that invalid bases do set EINVAL (as required by POSIX); this part of the change uses part of an earlier patch by millert@. Minor mdoc(7) cleanup and sync between the two pages while here. Feedback and ok jmc@ and millert@.
2014-09-14remove uneeded proc.h includesJonathan Gray
ok mpi@ kspillner@
2014-09-14- Don't capitalize jumbo.Brad Smith
- Don't try to keep track of jumbo frame sizes in the pages. Users can use `ifconfig hwfeatures' to determine what the hardware supports.
2014-09-13Don't bother mentioning an unimplemented feature in a BUGS section.Brad Smith
2014-09-13Add tests for syslogd's memory buffer and read it with syslogc.Alexander Bluhm
2014-08-20Run syslogd regressions tests. As only one syslogd can run perAlexander Bluhm
machine, each test kills any syslogd first. At the end the system's syslogd gets restarted. The test framework runs a client, and a server, and a syslogd. The messages are passed via the log socket or via UDP from the client to syslogd. From there UDP transport is used to reach the server. All processes write log files where the message has to show up. The test arguments are kept in the args-*.pl files. The content of a log file, the data sent to a pipe process and what the server received are checked. The invocation of the sendsyslog(2) syscall is checked with ktrace, the open file descriptors of syslogd are checked with fstat.
2014-09-13Make sure that the following functions return 0 and EINVAL asIngo Schwarze
required by the C standard when called with an invalid base: strtoll(), strtoimax(), strtoul(), strtoull(), and strtoumax(). Same behaviour for strtoq() and strtouq() even though not standardized. No functional change in strtol(), it was the only one already correct. While here, simplify the conditional expression for checking the base and sync whitespace and comments among the six files. ok millert@
2014-09-13Don't say or imply that using ifconfig has anything to do with whether theBrad Smith
hardware can transmit or receive jumbo frames.
2014-09-13Tweak after recent gnome MODULE change.Antoine Jacoutot
2014-09-13Replace all queue *_END macro calls except CIRCLEQ_END with NULL.Doug Hogan
CIRCLEQ_* is deprecated and not called in the tree. The other queue types have *_END macros which were added for symmetry with CIRCLEQ_END. They are defined as NULL. There's no reason to keep the other *_END macro calls. ok millert@
2014-09-13document default EXTRACT_CASES support for *.tar.lzma (reminded by juanfra@)Christian Weisgerber
and add more bzip2 cases
2014-09-13In PKG mode, cope with non-default PREFIX (e.g. /var/www/...).Antoine Jacoutot
2014-09-13remove invalid cpuid.ph entriesJonathan Gray
2014-09-13cpuid.h is md not miJonathan Gray
2014-09-13zap MLINK for *Q_END and CIRCLEQ*;Jason McIntyre
2014-09-13Add HP Gen9 Smart Array/Smart HBA devices.Jonathan Gray
Untested, but there doesn't seem to have been any changes to the firmware interface so these should work without additional changes, as was the case with the last few generations.
2014-09-13regenJonathan Gray
2014-09-13Add HP Gen9 Smart Array/Smart HBA devices and some devicesJonathan Gray
from submitted dmesgs.
2014-09-13Retire the CIRCLEQ_* and *_END macros here, noting why they were deprecated.Philip Guenther
kick started by Gre'goire Duche^ne <gduchene@awhk.org> ok millert@
2014-09-12Provide a sparc64 version of sqrtl(3) that simply calls _Qp_sqrt.Mark Kettenis
The generic sqrtl(3) is not nearly accurate enough for quad-precision floating point.
2014-09-12Fix some bugs in the _Qp_sqrt implementation that would limit the accuracyMark Kettenis
of the result in many cases. From FreeBSD allbeit with some changes to keep the coding style consistent. This fixes the asinhl(4) issue reported by dickman@ on tech@.
2014-09-12Remove cached 802.11 nodes in IEEE80211_STA_CACHE state (these are nodesStuart Henderson
which have been seen but which haven't otherwise interacted with us), fixing a problem where old cached nodes are seen when doing a scan. From Marcin Piotr Pawlowski, feedback stsp@ ok kspillner@ dcoppa@
2014-09-12Something went amiss in last pcidevs_data.h generation/commit. Regen andKenneth R Westerback
unbreak kernel compiles.
2014-09-12Remove the code that attempts to synchronize P-state transitions between CPUs.Mark Kettenis
Spinning inside an IPI handler is generally a bad idea as it is very hard to avoid deadlocks. As far as I can tell the synchronization isn't necessary. Multi-core CPUs have hardware mechanisms to do the appropropriate coordination between cores and coordination between sockets isn't necessary either. This seems to fix the various hangs and suspend/resume failures that people have been seeing when running apmd -A or apmd -C. Tested by many. ok kspillner@, mpi@
2014-09-12dont leak a ccb in identifyDavid Gwynne
2014-09-12regenDavid Gwynne
2014-09-12add Intel SSD DC P3700/P3600/P3500David Gwynne
2014-09-12fix some format string issuesDavid Gwynne
2014-09-12warn about commas in function arguments; inspired by mdoclint(1)Ingo Schwarze
2014-09-11fix the only .Xr ordering and punctuation issue i could findIngo Schwarze
with the new MANDOCERR_XR_* warnings in the whole tree
2014-09-11warn about botched .Xr ordering and punctuation below SEE ALSO;Ingo Schwarze
inspired by mdoclint(1)
2014-09-11mplement membar(9) API for i386.Mark Kettenis
ok matthew@, guenther@
2014-09-11Install files that moved from etc to base during "make build"Robert Peichaer
to unbreak updating from src. OK ajacoutot@
2014-09-11typo, from Daniel JakotsMartin Pieuchot
2014-09-11Tweak notes after moving xetc to xbase.Robert Peichaer
OK matthieu@ ajacoutot@
2014-09-10syncTodd T. Fries
2014-09-10Disable -Wshadow again, since it breaks builds on vax with gcc3.Joel Sing
2014-09-10Handle different possible variations of the Host header (eg.Reyk Floeter
www.example.com, www.example.com:80, [2001:db8::1], [2001:db8::1]:80). The port is optional and is typically used on non-default ports. If the server name is a plain IPv6 address, it is commonly specified in square brackets. Makes ajacoutot@ happy OK florian@