summaryrefslogtreecommitdiffstats
path: root/share/man
Commit message (Collapse)AuthorAgeFilesLines
* MFC r286516: Document kern.cam.ctl.debug sysctl.mav2015-08-161-1/+12
|
* MFC r273081sbruno2015-08-121-9/+17
| | | | | | | | | | | brueffer: New sentence -> new line; use macros where appropriate. MFC r276345 Mikhail <mp@lenta.ru Correct naming of sysctl pmtud_blackhole_activated_min_mss. Clarify some statements around PMTUD blackhole detection to make the behavior more clear in the man page.
* MFC r284611:delphij2015-08-033-13/+15
| | | | Fix markups and change e.g./eg. to e.g.,.
* MFC r284607:delphij2015-08-031-5/+15
| | | | Document kern.cam.ada.legacy_aliases, while I'm there also fix some typos.
* MFC r285873:trasz2015-08-0211-98/+11
| | | | | | | Update Capsicum and Mandatory Access Control manual pages to no longer claim they are experimental. Sponsored by: The FreeBSD Foundation
* MFC r285676:trasz2015-08-022-3/+11
| | | | | | Expand sysctl descriptions in iscsi(4) and ctl(4). Sponsored by: The FreeBSD Foundation
* MFC r285100:trasz2015-08-021-2/+2
| | | | | | Make ctl(4) appear in "man -k iscsi" results. Sponsored by: The FreeBSD Foundation
* MFC r284682:trasz2015-08-022-5/+17
| | | | | | Expand sysctls descriptions for iscsi(4) and ctl(4). Sponsored by: The FreeBSD Foundation
* MFC r283286:trasz2015-08-021-1/+17
| | | | | | Start documenting ctl(4) sysctls. Differential Revision: The FreeBSD Foundation
* MFC: r286090brueffer2015-08-022-3/+4
| | | | The kernel option and module are actually called pmspcv.
* MFC: r285858, r286017brueffer2015-07-292-0/+127
| | | | Add a basic manpage for the pms driver.
* MFC r285173:kib2015-07-281-1/+3
| | | | | Document the locking context for the directly dispatched callouts. Cross-reference timeout(9).
* MFC: r277218, r277219, r280572, r280573, r280574brueffer2015-07-153-0/+334
| | | | | | | Add manpages for the ixl and ixlv drivers. PR: 194313 Approved by: re (marius)
* MFC: r262233brueffer2015-06-301-14/+16
| | | | Spelling, grammar and mdoc cleanup.
* MFC r284646:kib2015-06-271-3/+7
| | | | | The barriers, provided by _acq and _rel atomics, are acquire and release barriers, not read and write barriers.
* MFC: r283514arybchik2015-06-181-19/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | sfxge: add 7xxx NICs family support Support 7xxx adapters including firmware-assisted TSO and VLAN tagging: - Solarflare Flareon Ultra 7000 series 10/40G adapters: - Solarflare SFN7042Q QSFP+ Server Adapter - Solarflare SFN7142Q QSFP+ Server Adapter - Solarflare Flareon Ultra 7000 series 10G adapters: - Solarflare SFN7022F SFP+ Server Adapter - Solarflare SFN7122F SFP+ Server Adapter - Solarflare SFN7322F Precision Time Synchronization Server Adapter - Solarflare Flareon 7000 series 10G adapters: - Solarflare SFN7002F SFP+ Server Adapter Support utilities to configure adapters and update firmware. The work is done by Solarflare developers (Andy Moreton, Andrew Lee and many others), Artem V. Andreev <Artem.Andreev at oktetlabs.ru> and me. Sponsored by: Solarflare Communications, Inc.
* MFC r284179, r283959sbruno2015-06-171-0/+27
| | | | | | | | | | | | Implement multiqueue (max 2 tx/rx queues) for the 82574L chipset. Change default tuning parameters to handle this new configuration if EM_MULTIQUEUE is set in the kernel configuration. Off by default. See r283959 changelog for the scope of these changes. Relnotes: Yes Sponsored by: Limelight Networks
* MFC, r284192:ken2015-06-161-1/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ------------------------------------------------------------------------ r284192 | ken | 2015-06-09 15:39:38 -0600 (Tue, 09 Jun 2015) | 102 lines Add support for reading MAM attributes to camcontrol(8) and libcam(3). MAM is Medium Auxiliary Memory and is most commonly found as flash chips on tapes. This includes support for reading attributes and decoding most known attributes, but does not yet include support for writing attributes or reporting attributes in XML format. libsbuf/Makefile: Add subr_prf.c for the new sbuf_hexdump() function. This function is essentially the same function. libsbuf/Symbol.map: Add a new shared library minor version, and include the sbuf_hexdump() function. libsbuf/Version.def: Add version 1.4 of the libsbuf library. libutil/hexdump.3: Document sbuf_hexdump() alongside hexdump(3), since it is essentially the same function. camcontrol/Makefile: Add attrib.c. camcontrol/attrib.c: Implementation of READ ATTRIBUTE support for camcontrol(8). camcontrol/camcontrol.8: Document the new 'camcontrol attrib' subcommand. camcontrol/camcontrol.c: Add the new 'camcontrol attrib' subcommand. camcontrol/camcontrol.h: Add a function prototype for scsiattrib(). share/man/man9/sbuf.9: Document the existence of sbuf_hexdump() and point users to the hexdump(3) man page for more details. sys/cam/scsi/scsi_all.c: Add a table of known attributes, text descriptions and handler functions. Add a new scsi_attrib_sbuf() function along with a number of other related functions that help decode attributes. scsi_attrib_ascii_sbuf() decodes ASCII format attributes. scsi_attrib_int_sbuf() decodes binary format attributes, and will pass them off to scsi_attrib_hexdump_sbuf() if they're bigger than 8 bytes. scsi_attrib_vendser_sbuf() decodes the vendor and drive serial number attribute. scsi_attrib_volcoh_sbuf() decodes the Volume Coherency Information attribute that LTFS writes out. sys/cam/scsi/scsi_all.h: Add a number of attribute-related structure definitions and other defines. Add function prototypes for all of the functions added in scsi_all.c. sys/kern/subr_prf.c: Add a new function, sbuf_hexdump(). This is the same as the existing hexdump(9) function, except that it puts the result in an sbuf. This also changes subr_prf.c so that it can be compiled in userland for includsion in libsbuf. We should work to change this so that the kernel hexdump implementation is a wrapper around sbuf_hexdump() with a statically allocated sbuf with a drain. That will require a drain function that goes to the kernel printf() buffer that can take a non-NUL terminated string as input. That is because an sbuf isn't NUL-terminated until it is finished, and we don't want to finish it while we're still using it. We should also work to consolidate the userland hexdump and kernel hexdump implemenatations, which are currently separate. This would also mean making applications that currently link in libutil link in libsbuf. sys/sys/sbuf.h: Add the prototype for sbuf_hexdump(), and add another copy of the hexdump flag values if they aren't already defined. Ideally the flags should be defined in one place but the implemenation makes it difficult to do properly. (See above.) Sponsored by: Spectra Logic Corporation ------------------------------------------------------------------------
* MFC r273331, r273371, r275851:bryanv2015-06-142-0/+237
| | | | | | | | | - Add vxlan interface - Use the size of the Ethernet address, not the entire header, when copying into forwarding entry. - Prefix all the vxlan ifconfig commands so they are unique
* MFC r283897:ae2015-06-061-1/+39
| | | | | Add example how to configure gre(4) tunnel with the same inner and outer addresses using multiple FIBs.
* MFC r274246:ae2015-06-063-200/+108
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Overhaul if_gre(4). Split it into two modules: if_gre(4) for GRE encapsulation and if_me(4) for minimal encapsulation within IP. gre(4) changes: * convert to if_transmit; * rework locking: protect access to softc with rmlock, protect from concurrent ioctls with sx lock; * correct interface accounting for outgoing datagramms (count only payload size); * implement generic support for using IPv6 as delivery header; * make implementation conform to the RFC 2784 and partially to RFC 2890; * add support for GRE checksums - calculate for outgoing datagramms and check for inconming datagramms; * add support for sending sequence number in GRE header; * remove support of cached routes. This fixes problem, when gre(4) doesn't work at system startup. But this also removes support for having tunnels with the same addresses for inner and outer header. * deprecate support for various GREXXX ioctls, that doesn't used in FreeBSD. Use our standard ioctls for tunnels. me(4): * implementation conform to RFC 2004; * use if_transmit; * use the same locking model as gre(4); PR: 164475 MFC r274289 (by bz): gcc requires variables to be initialised in two places. One of them is correctly used only under the same conditional though. For module builds properly check if the kernel supports INET or INET6, as otherwise various mips kernels without IPv6 support would fail to build. MFC r274964: Add ip_gre.h to ObsoleteFiles.inc.
* MFC r273955,274060,274164: Add /etc/rc.d/growfs script.cperciva2015-06-052-0/+65
|
* MFC r283652:pkelsey2015-06-041-1/+4
| | | | | Provide an unambiguous description of the potential hazard in calling pthread_setspecific(3) from a key destructor.
* MFC 281887:jhb2015-06-0213-13/+13
| | | | | Reassign copyright statements on several files from Advanced Computing Technologies LLC to Hudson River Trading LLC.
* MFC r281915:markj2015-05-292-2/+7
| | | | | | | Make vpanic() externally visible. MFC r281916: Fix DTrace's panic() action.
* MFH: r283114julian2015-05-261-5/+6
| | | | | | | | | | Fixup to the kern_psignal manpage r283105 misspelled kern_psignal as kernel_psignal in one occurrence, and added trailing whitespace. While here, change 'call' to the more standard 'function', and say why the name was changed (taken from the commit message for r225617).
* MFH: r283105julian2015-05-261-5/+18
| | | | | Only several years late, catch the psignal man page up to the fact that psignal has been renamed to kern_psignal since 9.0.
* MFC r283093:pkelsey2015-05-241-0/+5
| | | | Added description of POSIX-specified behavior when invoked on a key from within that key's destructor.
* MFC r280221:ian2015-05-241-4/+27
| | | | Update ucom(4) with information about the new PPS capture abilities.
* MFC 282273:jhb2015-05-221-6/+3
| | | | | Update this page to note that XENHVM now works on i386. (It shipped enabled in GENERIC in 10.0.)
* MFC r282574:bdrewery2015-05-212-18/+1
| | | | Remove references to Giant in namei(9). This was removed in r241896.
* MFC r282577:hselasky2015-05-211-1/+4
| | | | Add support for DYMO LabelWriter PnP.
* MFC r279316:trasz2015-05-151-2/+3
| | | | | | Add uefisign(8) reference to uefi(8) manual page. Sponsored by: The FreeBSD Foundation
* MFC r281265:trasz2015-05-151-1/+2
| | | | | | | | | | | | | | | | Add a hint that "device ctl" kind of depends on "device iscsi". It actually doesn't - "device ctl" automatically pulls in ICL, which would normally be a part of iscsi.ko. However, doing it that way makes iscsi.ko unloadable, and building ctl.ko without iscsi.ko (using MODULES_OVERRIDE) results in ctl.ko that is unloadable, due to missing symbols that would be resolved to iscsi.ko. And since the symbols are named "icl_whatever", it's not obvious that it's iscsi.ko that's required. If there is a better way - let me know. Sponsored by: The FreeBSD Foundation
* r281955 removed M_FLOWID which could cause problems for old drivers still usinghiren2015-05-111-6/+6
| | | | | | | | | | | | | | | | | the field. It cannot be removed from stable/10 so restore it. Change M_HASHTYPE_GET() and M_HASHTYPE_SET() to do the right thing when M_FLOWID exists. Also bumping the FreeBSD version to note the fact that M_FLOWID is brought back in stable/10. (Just a note that M_FLOWID has been removed from -head.) Spotted by: np Suggested by: hans Reviewed by: hans, tuexen (earlier version) Helped by: jhb, delphij, gjb Sponsored by: Limelight Networks
* MFC 281701:markj2015-05-051-1/+31
| | | | | | SDT(9): add a section on SDT providers, mentioning the "sdt" provider. Add examples demonstrating how one can list available providers and the DTrace probes provided by a provider.
* MFC r281923, r281924: Add link to mvs(4).mav2015-05-011-0/+1
|
* MFC 280721:jhb2015-04-291-1/+11
| | | | | | | | | Allow additional flags to be passed to netstat -i in the daily status check. In particular, this allows an administrator to specify "-h" for human readable output if that is preferred. The default setting passes "-d", so that can be excluded by using a custom setting.
* MFC r281712:kib2015-04-251-1/+4
| | | | Make wait6(2), waitid(3) and ppoll(2) cancellation points.
* MFC r280475:ngie2015-04-251-1/+1
| | | | | | The number of commands added when ddb(4) is enabled is 3, not 2 Sponsored by: EMC / Isilon Storage Division
* MFC r275358 r275483 r276982 - Removing M_FLOWID by hps@hiren2015-04-241-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | r275358: Start process of removing the use of the deprecated "M_FLOWID" flag from the FreeBSD network code. The flag is still kept around in the "sys/mbuf.h" header file, but does no longer have any users. Instead the "m_pkthdr.rsstype" field in the mbuf structure is now used to decide the meaning of the "m_pkthdr.flowid" field. To modify the "m_pkthdr.rsstype" field please use the existing "M_HASHTYPE_XXX" macros as defined in the "sys/mbuf.h" header file. This patch introduces new behaviour in the transmit direction. Previously network drivers checked if "M_FLOWID" was set in "m_flags" before using the "m_pkthdr.flowid" field. This check has now now been replaced by checking if "M_HASHTYPE_GET(m)" is different from "M_HASHTYPE_NONE". In the future more hashtypes will be added, for example hashtypes for hardware dedicated flows. "M_HASHTYPE_OPAQUE" indicates that the "m_pkthdr.flowid" value is valid and has no particular type. This change removes the need for an "if" statement in TCP transmit code checking for the presence of a valid flowid value. The "if" statement mentioned above is now a direct variable assignment which is then later checked by the respective network drivers like before. r275483: Remove M_FLOWID from SCTP code. r276982: Remove no longer used "M_FLOWID" flag from mbuf.h and update the netisr manpage. Note: The FreeBSD version has been bumped. Reviewed by: hps, tuexen Sponsored by: Limelight Networks
* Regen for r281891bdrewery2015-04-231-4/+4
|
* MFC r281745:kevlo2015-04-231-1/+2
| | | | | | Add new USB ID. PR: 199522
* MFC r281605,281768:brooks2015-04-211-2/+2
| | | | | | | | r281605: Fix a minor function definition inconsistancy. r281768: Bump doc date missed in r281605.
* MFC r280688 (by ru):pluknet2015-04-191-5/+3
| | | | Corrected descriptions of net.inet.icmp.icmplim and icmplim_output.
* MFC r272378:markj2015-04-161-1/+5
| | | | | | Add net.inet.icmp.tstamprepl. PR: 193689
* MFC: r280301:allanjude2015-04-161-6/+8
| | | | | | | Fix grammar in epair(4) man page Approved by: eadler (mentor, implicit) Sponsored by: ScaleEngine Inc.
* MFC r280819:kib2015-04-121-59/+60
| | | | Formatting changes to the pthread_testcancel(3).
* MFC r280818:kib2015-04-121-1/+10
| | | | Make kevent(2) a cancellation point.
* MFC 279952:jhb2015-04-091-1/+3
| | | | | - Align comment for df flags variable in periodic.conf. - Note default value of df flags variable in periodoc.conf(5).
OpenPOWER on IntegriCloud