summaryrefslogtreecommitdiffstats
path: root/share/man
Commit message (Collapse)AuthorAgeFilesLines
* Kill yet another reference to UserConfiggavin2013-05-041-1/+1
|
* Update Intel email address.eadler2013-05-024-8/+8
| | | | | | PR: docs/175349 Submitted by: Lars Eggert <lars@netapp.com> Discussed with: jfv
* Fix the man page installation broken in r250079. Pointy hat to me.carl2013-04-301-1/+2
| | | | | | | Thanks to Florian Smeets for pointing this out and providing a patch. Submitted by: Florian Smeets <flo@smeets.im> Approved by: jimharris (mentor)
* Add a new driver to support the Intel Non-Transparent Bridge(NTB).carl2013-04-292-0/+119
| | | | | | | | | | | | | | | | | | | | The NTB allows you to connect two systems with this device using a PCI-e link. The driver is made of two modules: - ntb_hw which is a basic hardware abstraction layer for the device. - if_ntb which implements the ntb network device and the communication protocol. The driver is limited at the moment to CPU memcpy instead of using DMA, and only Back-to-Back mode is supported. Also the network device isn't full featured yet. These changes will be coming soon. The DMA change will also bring in the ioat driver from the project branch it is on now. This is an initial port of the GPL/BSD Linux driver contributed by Jon Mason from Intel. Any bugs are my contributions. Sponsored by: Intel Reviewed by: jimharris, joel (man page only) Approved by: jimharris (mentor)
* mdoc improvementsjoel2013-04-281-8/+16
|
* Polish devcfg(4) slightly: add \n after the end of every sentence.wkoszek2013-04-271-13/+16
|
* Add Xilinx Zynq ARM/FPGA SoC support to FreeBSD/arm port.wkoszek2013-04-272-1/+85
| | | | | | Submitted by: Thomas Skibo <ThomasSkibo (at) sbcglobal.net> Tested by: wkoszek (ZedBoard) Reviewed by: wkoszek, freebsd-arm@ (no objections raised)
* Fix examples for overriding INSTALL to not suggest hardcodingbdrewery2013-04-261-2/+2
| | | | | | | | | | 'install' since it breaks buildworld after the introduction and use of 'install -l' in r245752. Overriding INSTALL causes /usr/bin/install to be used instead of the proper /usr/src/tools/install.sh which handles the new flag. Approved by: bapt MFC after: 2 weeks
* Document constantness of dst argument to if_output.glebius2013-04-261-2/+2
| | | | Submitted by: pluknet
* On those machines that use critical(9) for counter(9) we need toglebius2013-04-261-0/+1
| | | | include systm.h.
* Update description of process status output.joel2013-04-221-3/+4
| | | | | PR: 143850 Submitted by: Slaven Rezic <slaven@rezic.de>
* Fix manual page.hselasky2013-04-211-2/+2
| | | | | PR: usb/177896 Submitted by: Leif Velcro <velcroleaf@rocketmail.com>
* Remove cross-references to nonexistent CPU_SET(3) manpage.joel2013-04-212-4/+2
| | | | | | | Also fix cpu_getaffinity(2) document title. PR: 176317 Submitted by: brucec
* Add missing Pp. Also remove some minor whitespace.joel2013-04-201-1/+1
| | | | | PR: 177995 Submitted by: olgeni
* Make DELAY(9) reference pause(9).trasz2013-04-201-1/+3
|
* Remove EOL whitespace.joel2013-04-181-2/+2
|
* Document jail_<jname>_parameters option.jlh2013-04-171-0/+36
| | | | | | | | The description explains why we should not configure "path", "host.hostname", "command", "ip4.addr" and ip6.addr" parameters with this, but rather use the historical rc.conf(5) options. MFC after: 3 days
* Fixing a typo.hiren2013-04-151-1/+1
| | | | | Submitted by: Benedikt Steinbusch (benedikt.steinbusch@googlemail.com) Approved by: sbruno (mentor)
* Fix usage for soreceive(9) - uio must always be non-NULL.trasz2013-04-121-5/+12
| | | | MFC after: 1 week
* Document sbuf_start_section() and sbuf_end_section() functions.trociny2013-04-111-2/+36
| | | | MFC after: 1 month
* Remove contractions.joel2013-04-115-6/+6
|
* Remove EOL whitespace.joel2013-04-111-1/+1
|
* Update ciss(4) man page. We absolutely support performant mode of operationsbruno2013-04-101-10/+7
| | | | | | | | | | on this controller. Indicate that the 5300 is the *only* controller that will only work in simple mode. Bus rescans should not be needed now and I consider it a bug if disks do not appear or dissapear when created or destroyed. Obtained from: Yahoo! Inc
* Merge from projects/counters: counter(9).glebius2013-04-082-0/+209
| | | | | | | | | | | | | Introduce counter(9) API, that implements fast and raceless counters, provided (but not limited to) for gathering of statistical data. See http://lists.freebsd.org/pipermail/freebsd-arch/2013-April/014204.html for more details. In collaboration with: kib Reviewed by: luigi Tested by: ae, ray Sponsored by: Nginx, Inc.
* Merge from projects/counters: UMA_ZONE_PCPU zones.glebius2013-04-081-0/+17
| | | | | | | | | | | | | | | | | | | | | | | These zones have slab size == sizeof(struct pcpu), but request from VM enough pages to fit (uk_slabsize * mp_ncpus). An item allocated from such zone would have a separate twin for each CPU in the system, and these twins are at a distance of sizeof(struct pcpu) from each other. This magic value of distance would allow us to make some optimizations later. To address private item from a CPU simple arithmetics should be used: item = (type *)((char *)base + sizeof(struct pcpu) * curcpu) These arithmetics are available as zpcpu_get() macro in pcpu.h. To introduce non-page size slabs a new field had been added to uma_keg uk_slabsize. This shifted some frequently used fields of uma_keg to the fourth cache line on amd64. To mitigate this pessimization, uma_keg fields were a bit rearranged and least frequently used uk_name and uk_link moved down to the fourth cache line. All other fields, that are dereferenced frequently fit into first three cache lines. Sponsored by: Nginx, Inc.
* mdoc: sort cross references.joel2013-04-081-3/+3
|
* Remove reference to the nonexistent sysctl node net.inet6.mld.stats.ae2013-04-081-6/+2
| | | | | | | Also add cross reference to the icmp6(4). PR: 177696 MFC after: 1 week
* Fix synopsis for sbuf_len.trociny2013-04-071-1/+1
| | | | MFC after: 3 days
* Remove references to ataraid(4) and atacontrol(8).joel2013-04-041-9/+0
|
* Remove atapicam(4) reference.joel2013-04-041-2/+0
|
* Remove all legacy ATA code parts, not used since options ATA_CAM enabled inmav2013-04-044-291/+0
| | | | | | | | | most kernels before FreeBSD 9.0. Remove such modules and respective kernel options: atadisk, ataraid, atapicd, atapifd, atapist, atapicam. Remove the atacontrol utility and some man pages. Remove useless now options ATA_CAM. No objections: current@, stable@ MFC after: never
* Update man page for igb(4) with a little bit of information aboutsbruno2013-04-031-1/+6
| | | | | | | | | | | hw.igb.num_queues for those so inclined. PR: kern/177384 Submitted by: hiren.panchasara@gmail.com Reviewed by: sbruno@ Approved by: jfv@ Obtained from: Yahoo! Inc. MFC after: 2 weeks
* Remove obsolete references to sysinstall.eadler2013-04-022-15/+1
| | | | | | | | This change is not intended for MFC. PR: docs/177570 Submitted by: Garrett Cooper <yaneurabeya@gmail.com> (partial) Approved by: bcr (mentor)
* Fix dates in manual pages modified in 249009.trasz2013-04-021-1/+1
|
* Make it possible to build CTL as a module.trasz2013-04-022-0/+91
| | | | | Reviewed by: ken Sponsored by: FreeBSD Foundation
* Extend taskqueue(9) to enable per-taskqueue callbacks.will2013-03-231-0/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The scope of these callbacks is primarily to support actions that affect the taskqueue's thread environments. They are entirely optional, and consequently are introduced as a new API: taskqueue_set_callback(). This interface allows the caller to specify that a taskqueue requires a callback and optional context pointer for a given callback type. The callback types included in this commit can be used to register a constructor and destructor for thread-local storage using osd(9). This allows a particular taskqueue to define that its threads require a specific type of TLS, without the need for a specially-orchestrated task-based mechanism for startup and shutdown in order to accomplish it. Two callback types are supported at this point: - TASKQUEUE_CALLBACK_TYPE_INIT, called by every thread when it starts, prior to processing any tasks. - TASKQUEUE_CALLBACK_TYPE_SHUTDOWN, called by every thread when it exits, after it has processed its last task but before the taskqueue is reclaimed. While I'm here: - Add two new macros, TQ_ASSERT_LOCKED and TQ_ASSERT_UNLOCKED, and use them in appropriate locations. - Fix taskqueue.9 to mention taskqueue_start_threads(), which is a required interface for all consumers of taskqueue(9). Reviewed by: kib (all), eadler (taskqueue.9), brd (taskqueue.9) Approved by: ken (mentor) Sponsored by: Spectra Logic MFC after: 1 month
* Retire the mislabeled ENABLE_SUID_SSH knob.des2013-03-221-5/+0
|
* Document some flags to the uma_zcreate(). Not all flags are documented,glebius2013-03-211-0/+54
| | | | | only those that at least are used in the kernel, or that definitely work.
* Document uma_find_refcnt().glebius2013-03-211-1/+11
|
* Document NGM_NAT_LIBALIAS_INFO.glebius2013-03-211-1/+26
| | | | Submitted by: Dmitry Luhtionov <dmitryluhtionov gmail.com>
* Implement SOCK_CLOEXEC, SOCK_NONBLOCK and MSG_CMSG_CLOEXEC.jilles2013-03-191-8/+10
| | | | | | | | | | | | | | | | | | | This change allows creating file descriptors with close-on-exec set in some situations. SOCK_CLOEXEC and SOCK_NONBLOCK can be OR'ed in socket() and socketpair()'s type parameter, and MSG_CMSG_CLOEXEC to recvmsg() makes file descriptors (SCM_RIGHTS) atomically close-on-exec. The numerical values for SOCK_CLOEXEC and SOCK_NONBLOCK are as in NetBSD. MSG_CMSG_CLOEXEC is the first free bit for MSG_*. The SOCK_* flags are not passed to MAC because this may cause incorrect failures and can be done later via fcntl() anyway. On the other hand, audit is expected to cope with the new flags. For MSG_CMSG_CLOEXEC, unp_externalize() is extended to take a flags argument. Reviewed by: kib
* iwn(4) doesn't support adhoc mode.glebius2013-03-191-3/+2
| | | | | PR: misc/177106 Submitted by: Hiren Panchasara <hiren.panchasara gmail.com>
* Add preliminary support for IBM/Lenovo TrackPoint.jkim2013-03-181-3/+9
| | | | | | PR: kern/147237 (based on the initial patch for 8.x) Tested by: glebius (device detection and suspend/resume) MFC after: 1 month
* Cross-reference gvinum(8) instead of vinum(8).joel2013-03-161-2/+2
|
* Belatedly remove the vinum(4) manual page. The vinumglebius2013-03-162-1167/+0
| | | | | | manager is absent in FreeBSD since 6.0-RELEASE. Reviewed by: joel
* Sort sections.joel2013-03-141-23/+23
|
* Add GEOM_* kernel options to the SYNOPSIS.joel2013-03-141-1/+36
|
* vinum isn't a new product.joel2013-03-131-6/+1
|
* Add missed `_load' to the `if_foo_load="YES"' line.pluknet2013-03-132-2/+2
| | | | | PR: docs/176915 MFC after: 1 week
* The ZyXEL ZyAIR G-202 is also supported by zyd(4)gavin2013-03-071-1/+2
| | | | MFC after: 1 week
OpenPOWER on IntegriCloud