summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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@
2014-09-10zap trailing whitespace;Jason McIntyre
2014-09-10Remove redundant null check and rename vars consistently in syslogdDoug Hogan
Merge in more functionality from bluhm's patch. ok bluhm@
2014-09-10document \<word\> as being non standardJonathan Gray
from Pedro F. Giffuni in FreeBSD pr 153257 ok millert@ tedu@
2014-09-10s/IWL/IWN/ in comment here tooDavid Coppa
2014-09-10sockatmark(3) has been implemented; add it to the async-signal-safe listsPhilip Guenther
2014-09-10Add cpuid.h from clang r197399 with additional feature bits,Jonathan Gray
and defines for compatibility with the equivalent gcc header. cpuid.h was introduced in gcc 4.3 and a compatible header has been included with recent versions of clang. Earlier version ok miod@. Tested in a ports bulk build by landry@.
2014-09-10Avoid possible use of uninitialized variable.Mike Larkin
From Maxime Villard via a post to tech@ a long time ago ok guenther@, doug@
2014-09-10update STANDARDS reference from POSIX 1990 to POSIX 2008;Ingo Schwarze
joint work with and ok guenther@
2014-09-09workqs were replaced with tasks in here, so dont need workq.h anymore.David Gwynne
2014-09-09remove the scsi_task() wrapper around workq_add_task now that nothingDavid Gwynne
uses it. dont need to include workq.h anymore here either now.
2014-09-09replace scsi_task(), which is a wrapper around workqs, with a quickDavid Gwynne
conversion to tasks. tested by chris@
2014-09-09If a manpath directory (for example, a _whatdb entry from man.conf(5)Ingo Schwarze
or an entry in the MANPATH environment variable) does not exist, silently skip it. This brings makewhatis(8) back closer to the behaviour of espie@'s version and ought to shut up the weekly(8) whining observed by henning@ on machines not having xbase installed. Also, don't error out after the first unusable manpath entry, still try the others. Of course, still complain about non-existent directories specified on the command line and about any directories failing for other reasons than ENOENT.
2014-09-09fix remaining spaces/tabs issues in #define linesStuart Henderson
2014-09-09Backport https://svnweb.freebsd.org/base?view=revision&revision=258829 to fixStuart Henderson
scans with various iwn(4) devices. From Fabian Raetz, testing by Fabian, Marcin Piotr Pawlowski, Mike Burns, kettenis@ and myself. ok kettenis@ with minor tweaks for whitespace in #define lines which I've done; also I have done s/IWL/IWN/ in comments as noticed by dcoppa@.