summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* 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: Merge more of the dtb machineryimp2015-06-041-1/+5
| | | | | | | Merge 278459,278460,278461,278462 which define DTBDIR and other things needed for install to work. Although the commit in head kinda fixed install_as_user, it's unknown if that works in 10.x (it didn't the last time I tried).
* 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:imp2015-06-022-0/+18
| | | | Merge r276846: Add infrastructure to build dtb files from dts files.
* 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 INDEX.keymaps fixesemaste2015-05-212-8/+8
| | | | | | | | | | | | | | | | | | | | | r282898: Correct UTF-8 encoding in Británico One á was ISO 8859-1 0xE1 instead of UTF-8 0xC3 0xA1. r282902: Correct language code -- "Danish" is English The menu entry "Danish ISO-8859-1 (macbook)" was first added to the syscons(4) INDEX.keymaps in r241851 with no language code, and then in r256367 incorrectly tagged with "da". It is a Danish keyboard map, but the description is in English and therefore must be "en". This error subsequently propagated into the vt(4) INDEX.keymaps. r282905: Restore 'he' language code for Hebrew kbdmap(1) menu title r282914: kbdmap(1): Correct menu title: keyboards have a layout, not a language PR: 146793, 193656
* MFC r279316:trasz2015-05-151-2/+3
| | | | | | Add uefisign(8) reference to uefi(8) manual page. Sponsored by: The FreeBSD Foundation
* MFC r279321:trasz2015-05-151-4/+1
| | | | | | Make the uefikeys script output slightly more obvious. Sponsored by: The FreeBSD Foundation
* MFC r279317:trasz2015-05-152-2/+44
| | | | | | Add key/cert generation script for uefisign(8). 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).
* MFH: r281206brueffer2015-04-071-1/+1
| | | | Add a missing comma.
* MFH: r280765brueffer2015-04-071-3/+3
| | | | | | | Mention support for 16h family processors, added in r263169. PR: 198933 Submitted by: isoa@kapsi.fi
* MFC r280233, r280237, r280441hiren2015-04-061-1/+17
| | | | | | Add connection flowid and flowtype to siftr(4). Sponsored by: Limelight Networks
* MFC r280179,r280180:bdrewery2015-04-042-1/+15
| | | | | | | | | | | | r280179: Add LIB_CXX so that C++ libraries will use CXX to link. This adds some extra dependencies directly to Makefile.inc1 as atf is still a prebuild library in stable/10. If r273449 is MFCd these can come out. r280180: Document LIB and LIB_CXX.
* MFC r280178:bdrewery2015-04-031-1/+1
| | | | Unhide linker line for libraries.
* MFC r280177:bdrewery2015-04-031-14/+0
| | | | Remove unneeded handling of undefined NM.
* MFC r280262 and r280263:hselasky2015-03-261-9/+24
| | | | Add more known bugs to the USB audio manual page.
* MFC: 280160arybchik2015-03-251-0/+21
| | | | | | | sfxge: add tunables to control LRO parameters on driver load time Sponsored by: Solarflare Communications, Inc. Approved by: gnn (mentor)
* MFC: 279181arybchik2015-03-251-2/+2
| | | | | | | sfxge: add indefinite article and update timestamp Sponsored by: Solarflare Communications, Inc. Approved by: gnn (mentor)
* MFC: 277895arybchik2015-03-251-4/+12
| | | | | | | | | | | | | | | | | | | sfxge: Separate software Tx queue limit for non-TCP traffic Add separate software Tx queue limit for non-TCP traffic to make total limit higher and avoid local drops of TCP packets because of no backpressure. There is no point to make non-TCP limit high since without backpressure UDP stream easily overflows any sensible limit. Split early drops statistics since it is better to have separate counter for each drop reason to make it unabmiguous. Add software Tx queue high watermark. The information is very useful to understand how big queues grow under traffic load. Sponsored by: Solarflare Communications, Inc. Approved by: gnn (mentor)
* MFC: 277894arybchik2015-03-251-0/+4
| | | | | | | | sfxge: implemented parameter to restrict RSS channels Submitted by: Artem V. Andreev <Artem.Andreev at oktetlabs.ru> Sponsored by: Solarflare Communications, Inc. Approved by: gnn (mentor)
* MFC: 272377arybchik2015-03-251-11/+18
| | | | | | | | | | Some cleanup for sfxge.4 Use standard mdoc macros instead of pure roff, fix some other mdoc usage, make the style consistent, and fix some grammar issues. Approved by: hrs (mentor)
* MFC: 272329arybchik2015-03-251-0/+26
| | | | | | | Update SolarFlare driver manual page with new tunables. Submitted by: Andrew Rybchenko <arybchenko at solarflare.com> Sponsored by: Solarflare Communications, Inc.
* MFC r279776:dchagin2015-03-251-3/+7
| | | | | Add a cred parameter to the VOP_VPTOCNP(9) manpage. While here fix igor warning about new line.
OpenPOWER on IntegriCloud