summaryrefslogtreecommitdiffstats
path: root/share/man/man4
Commit message (Collapse)AuthorAgeFilesLines
* Break the last part to its own sentence rather than a run-on.thompsa2012-02-231-3/+4
| | | | Suggested by: dougb
* Add a sysctl/tunable default value for the use_flowid sysctl in r232008.thompsa2012-02-231-2/+4
|
* Rename DESCRIPTION section to HARDWARE, so this manpage can be used forbrueffer2012-02-231-1/+1
| | | | | | automatic hardware notes generation. MFC after: 3 days
* Xref the following in wlan(4):gjb2012-02-221-1/+4
| | | | | | | | - bwn(4) - mwl(4) - run(4) MFC after: 3 days
* Document the net.link.lagg.X.use_flowid sysctl from r232008.thompsa2012-02-221-1/+13
|
* Make it clear that fec is just an aliasthompsa2012-02-221-2/+3
|
* More improvements, the biggest one using list environments for enumerations.brueffer2012-02-201-24/+40
|
* - Trim empty lines resulting in bad rendering, EOL whitespacespluknet2012-02-191-11/+14
| | | | | | | | | | - Convert to our standard SYNOPSIS language - Consistently use "The .Nm driver" - Rewrite .nf .fi block with mdoc - Add pci dependency to SYNOPSIS - Start .Bl list with new paragraph Approved by: luigi
* add manpage for the "oce" driverluigi2012-02-172-0/+118
| | | | | Submitted by: Naresh Raju Gottumukkala (Emulex) MFC after: 3 days
* Merge multi-FIB IPv6 support from projects/multi-fibv6/head/:bz2012-02-171-2/+2
| | | | | | | | | | | | Extend the so far IPv4-only support for multiple routing tables (FIBs) introduced in r178888 to IPv6 providing feature parity. This includes an extended rtalloc(9) KPI for IPv6, the necessary adjustments to the network stack, and user land support as in netstat. Sponsored by: Cisco Systems, Inc. Reviewed by: melifaro (basically) MFC after: 10 days
* Update HISTORY for isci.4 man page.jimharris2012-02-141-1/+1
| | | | | Sponsored by: Intel Approved by: scottl
* Minor cleanup and added missing svn keywords.brueffer2012-02-131-5/+7
|
* Globally replace u_int*_t from (non-contributed) man pages.ed2012-02-1224-149/+149
| | | | | | | | | | | The reasoning behind this, is that if we are consistent in our documentation about the uint*_t stuff, people will be less tempted to write new code that uses the non-standard types. I am not going to bump the man page dates, as these changes can be considered style nits. The meaning of the man pages is unaffected. MFC after: 1 month
* Add support for RICOH R5CE823 card reader, that can be found inglebius2012-02-091-1/+3
| | | | | | | some Lenovo laptops. The conroller needs a quirk to lower its frequency, and after that it operates normally.
* Fix some Xr references:gjb2012-02-099-21/+20
| | | | | | | | | | | | | | | | | | - ada(4): ad(4) - removed, ada(4) would be a self-referencing entry - cd(4): ad(4) -> ada(4) - da(4): ad(4) -> ada(4) - DEVICE_PROBE(9): ugen(5) -> ugen(4) - ed(4): dhclinet(8) -> dhclient(8) (typo) - lmc(4): Netgraph(4) -> netgraph(4) - security(7): rc.conf(8) -> rc.conf(5) - sfxge(4): cpuset(8) -> cpuset(1) - sbp(4): sysctl(1) -> sysctl(8) - portindex(5): build(1) -> build(7) - u3g(4): usbconfig(5) -> usbconfig(8) - usb_quirk(4): usbconfig(5) -> usbconfig(8) Found with: textproc/igor MFC after: 3 days
* Update the mps(4) man page for the changes in the new LSI-supported driver.ken2012-02-071-23/+66
| | | | | | | | | This should have been included in change 230592. The supported hardware section still needs some updating to reflect the current reality. MFC after: 3 days
* Add new socket options: TCP_KEEPINIT, TCP_KEEPIDLE, TCP_KEEPINTVL andglebius2012-02-051-4/+67
| | | | | | | TCP_KEEPCNT, that allow to control initial timeout, idle time, idle re-send interval and idle send count on a per-socket basis. Reviewed by: andre, bz, lstewart
* Rebase user/jimharris/isci branch from head.jimharris2012-01-3111-159/+205
|\
| * msdos was renamed to msdosfs in 2001 by r77577.scf2012-01-281-1/+1
| | | | | | | | MFC after: 5 days
| * Do not mention SIOCSIFADDR.glebius2012-01-271-4/+4
| |
| * - Rewrite paragraphs about preemption.glebius2012-01-261-22/+11
| | | | | | | | | | | | - Avoid word combination "carp interface". Prodded by: az
| * Remove the blank line between the license and .Ddken2012-01-261-1/+0
| | | | | | | | | | Prompted by: brueffer MFC after: 1 week
| * Start sentences on a new line, and fix a few other nits.ken2012-01-261-35/+42
| | | | | | | | | | Prompted by: gjb MFC after: 1 week
| * Update PCI IDs for ciss controllers that are supported by this driver.sbruno2012-01-261-1/+11
| | | | | | | | | | | | Submitted by: scott.benesh@hp.com Obtained from: Yahoo! Inc and HP MFC after: 1 week
| * Xen netback driver rewrite.ken2012-01-262-0/+136
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | share/man/man4/Makefile, share/man/man4/xnb.4, sys/dev/xen/netback/netback.c, sys/dev/xen/netback/netback_unit_tests.c: Rewrote the netback driver for xen to attach properly via newbus and work properly in both HVM and PVM mode (only HVM is tested). Works with the in-tree FreeBSD netfront driver or the Windows netfront driver from SuSE. Has not been extensively tested with a Linux netfront driver. Does not implement LRO, TSO, or polling. Includes unit tests that may be run through sysctl after compiling with XNB_DEBUG defined. sys/dev/xen/blkback/blkback.c, sys/xen/interface/io/netif.h: Comment elaboration. sys/kern/uipc_mbuf.c: Fix page fault in kernel mode when calling m_print() on a null mbuf. Since m_print() is only used for debugging, there are no performance concerns for extra error checking code. sys/kern/subr_scanf.c: Add the "hh" and "ll" width specifiers from C99 to scanf(). A few callers were already using "ll" even though scanf() was handling it as "l". Submitted by: Alan Somers <alans@spectralogic.com> Submitted by: John Suykerbuyk <johns@spectralogic.com> Sponsored by: Spectra Logic MFC after: 1 week Reviewed by: ken
| * Don't mention no longer supported ioctl commands.glebius2012-01-261-6/+2
| |
| * Remove a block that contatined some outdated misinformationglebius2012-01-261-12/+1
| | | | | | | | | | on how addresses are configured, as well as obviousness that Ethernet interface may run arp(4).
| * Remove a commented out old block inherited from inet.4. Theglebius2012-01-261-80/+0
| | | | | | | | | | | | text there was so much outdated that it required a complete rewrite even for inet.4, not mentioning inet6.4. There is no reason to keep it in the manual page.
| * - Remove no longer supported ioctl cmds.glebius2012-01-261-15/+2
| | | | | | | | - Fix name of SIOCSIFADDR.
| * Update information on setting and retreiving inet4 addresses.glebius2012-01-261-18/+31
| |
* | Rebase user/jimharris/isci branch from head.jimharris2012-01-2629-411/+1020
|\ \ | |/
| * Rewrite jack presence detection and implement automatic recording sourcemav2012-01-251-1/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | selection in snd_hda(4) driver. Now driver tracks jack presence detection status for every CODEC pin. For playback associations, when configured, that information, same as before, can be used to automatically redirect audio to headphones. Also same as before, these events are used to track digital display connection status and fetch ELD. Now in addition to that driver uses that information to automatically switch recording source of the mixer to the connected input. When there are devices with no jack detection and with one both connected, last ones will have the precedence. As result, on most laptops after boot internal microphone should be automatically selected. But if external one (for example, headset) connected, it will be selected automatically. When external mic disconnected, internal one will be selected again. Automatic recording source selection is enabled by default now to make recording work out of the box without touching mixer. But it can be disabled or limited only to attach time using hint.pcm.X.rec.autosrc loader tunables or dev.pcm.X.rec.autosrc sysctls. MFC after: 2 months Sponsored by: iXsystems, Inc.
| * Some minor additions to the list of supported devices...imp2012-01-251-2/+6
| |
| * Document the values for hw.snd.default_auto.stefanf2012-01-221-3/+12
| |
| * Connect VirtIO-related manpages to the build.brueffer2012-01-221-0/+10
| |
| * General cleanup.brueffer2012-01-224-23/+25
| | | | | | | | Prodded by: grehan
| * Reflect tunable name change made in r230337.yongari2012-01-191-4/+4
| |
| * Update .Dd date on this man page.sbruno2012-01-181-1/+1
| | | | | | | | | | | | | | MFC with r230313 and r230316 Caught by: bz Obtained from: Yahoo! Inc.
| * Update man page to show that ciss(4) now support the P420sbruno2012-01-181-0/+2
| | | | | | | | | | | | | | | | MFC with r230313 Caught by: brueffer Obtained from: Yahoo! Inc MFC after: 2 weeks
| * Specify the correct section (4 instead of 9) in the h_ertt man page's title andlstewart2012-01-181-2/+2
| | | | | | | | | | | | bump the document date. MFC after: 3 days
| * Document dev.bge.%d.msi_disable tunable.yongari2012-01-171-2/+5
| |
| * Major snd_hda driver rewrite:mav2012-01-151-207/+136
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Huge old hdac driver was split into three independent pieces: HDA controller driver (hdac), HDA CODEC driver (hdacc) and HDA sudio function driver (hdaa). - Support for multichannel recording was added. Now, as specification defines, driver checks input associations for pins with sequence numbers 14 and 15, and if found (usually) -- works as before, mixing signals together. If it doesn't, it configures input association as multichannel. - Signal tracer was improved to look for cases where several DACs/ADCs in CODEC can work with the same audio signal. If such case found, driver registers additional playback/record stream (channel) for the pcm device. - New controller streams reservation mechanism was implemented. That allows to have more pcm devices then streams supported by the controller (usually 4 in each direction). Now it limits only number of simultaneously transferred audio streams, that is rarely reachable and properly reported if happens. - Codec pins and GPIO signals configuration was exported via set of writable sysctls. Another sysctl dev.hdaa.X.reconfig allows to trigger driver reconfiguration in run-time. - Driver now decodes pins location and connector type names. In some cases it allows to hint user where on the system case connectors, related to the pcm device, are located. Number of channels supported by pcm device, reported now (if it is not 2), should also make search easier. - Added workaround for digital mic on some Asus laptops/netbooks. MFC after: 2 months Sponsored by: iXsystems, Inc.
| * Add setsockopt(2) example to ng_ksocket(4).melifaro2012-01-101-2/+8
| | | | | | | | | | | | | | While here, fix formatting a bit Approved by: kib(mentor) MFC after: 2 weeks
| * Apply Typo-B-Gone 2000 [TM]uqs2012-01-052-2/+2
| |
| * Fix typo.brueffer2012-01-051-1/+1
| | | | | | | | MFC after: 1 week
| * Revert r228986 until it can be reworked to avoid panicing the kernel when thelstewart2011-12-311-65/+36
| | | | | | | | | | | | | | same interface is attached multiple times with different DLTs, as is done in net80211 for example. Reported by: adrian
| * - Introduce the net.bpf.tscfg sysctl tree and associated code so as to make onelstewart2011-12-301-36/+65
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | aspect of time stamp configuration per interface rather than per BPF descriptor. Prior to this, the order in which BPF devices were opened and the per descriptor time stamp configuration settings could cause non-deterministic and unintended behaviour with respect to time stamping. With the new scheme, a BPF attached interface's tscfg sysctl entry can be set to "default", "none", "fast", "normal" or "external". Setting "default" means use the system default option (set with the net.bpf.tscfg.default sysctl), "none" means do not generate time stamps for tapped packets, "fast" means generate time stamps for tapped packets using a hz granularity system clock read, "normal" means generate time stamps for tapped packets using a full timecounter granularity system clock read and "external" (currently unimplemented) means use the time stamp provided with the packet from an underlying source. - Utilise the recently introduced sysclock_getsnapshot() and sysclock_snap2bintime() KPIs to ensure the system clock is only read once per packet, regardless of the number of BPF descriptors and time stamp formats requested. Use the per BPF attached interface time stamp configuration to control if sysclock_getsnapshot() is called and whether the system clock read is fast or normal. The per BPF descriptor time stamp configuration is then used to control how the system clock snapshot is converted to a bintime by sysclock_snap2bintime(). - Remove all FAST related BPF descriptor flag variants. Performing a "fast" read of the system clock is now controlled per BPF attached interface using the net.bpf.tscfg sysctl tree. - Update the bpf.4 man page. Committed on behalf of Julien Ridoux and Darryl Veitch from the University of Melbourne, Australia, as part of the FreeBSD Foundation funded "Feed-Forward Clock Synchronization Algorithms" project. For more information, see http://www.synclab.org/radclock/ In collaboration with: Julien Ridoux (jridoux at unimelb edu au)
| * Import the first release of HighPoint RocketRAID 27xx SAS 6Gb/s HBA carddelphij2011-12-282-0/+103
| | | | | | | | | | | | | | | | driver. This driver works for FreeBSD/i386 and FreeBSD/amd64 platforms. Many thanks to HighPoint for providing this driver. MFC after: 2 weeks
| * Add some more cross-references.mav2011-12-204-0/+4
| |
| * Fix copy-paste typo.mav2011-12-201-2/+2
| |
OpenPOWER on IntegriCloud