summaryrefslogtreecommitdiffstats
path: root/share/man
Commit message (Collapse)AuthorAgeFilesLines
* Correct the documentation to reflect the fact that BUS_DMA_NOCACHE is arnoland2009-03-221-9/+9
| | | | | | | flag to bus_dmamem_alloc() rather than bus_dmamap_load(); Discussed with: kib MFC after: 3 days
* Remove the uscanner(4) driver, this follows the removal of the kernel scannerthompsa2009-03-194-168/+2
| | | | | | | driver in Linux 2.6. uscanner was just a simple wrapper around a fifo and contained no logic, the default interface is now libusb (supported by sane). Reviewed by: HPS
* Reference exca.imp2009-03-181-1/+3
|
* (finally) document -nsam2009-03-161-2/+8
|
* Teach the loopback interface about checksum generation and validationrwatson2009-03-151-11/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | avoidance: - Enable setting the RXCSUM and TXCSUM flags for loopback interfaces; set both by default. - When RXCSUM is set, flag packets sent over the loopback interface as having checked and valid IP, UDP, TCP checksums so that higher protocol layers won't check them. - Always clear CSUM_{IP,UDP_TCP} checksum required flags on transmit, as they will have gotten there as a result of TXCSUM being set. This is done only for packets explicitly sent over the loopback, not simulated loopback via if_simloop() due to !SIMPLEX interfaces, etc. Note that enabling TXCSUM but not RXCSUM will lead to unhappiness, as checksums won't be generated but will be validated. Kris reports that this leads to significant performance improvements in loopback benchmarking with TCP and UDP for throughput: RXCSUM RXCSUM+TXCSUM TCP 15% 37% UDP 10% 74% Update man page. Reviewed by: sam Tested by: kris MFC after: 1 week
* Don't suggest mounting procfs in diskless configurations.rwatson2009-03-131-1/+0
| | | | MFC after: 3 days
* Rename the k8temp(4) man page to amdtemp(4) and update its contents forrpaulo2009-03-132-11/+20
| | | | | | the new families. MFC after: 2 weeks
* Add support for setting the debug flags on wlan interfaces after the arebrooks2009-03-131-0/+10
| | | | created using wlandebug_<ifn> variables.
* Xref altq.4 and bump .Ddyongari2009-03-121-1/+2
|
* Add txp(4) to the list of drivers supporting ALTQ.yongari2009-03-121-1/+2
|
* Remove these files, they refer to module bundles that do not exist anymore.thompsa2009-03-1012-783/+0
|
* Merge IGMPv3 and Source-Specific Multicast (SSM) to the FreeBSDbms2009-03-093-2/+18
| | | | | | | | | | | IPv4 stack. Diffs are minimized against p4. PCS has been used for some protocol verification, more widespread testing of recorded sources in Group-and-Source queries is needed. sizeof(struct igmpstat) has changed. __FreeBSD_version is bumped to 800070.
* Add igmp(4) man page, do not connect to build yet.bms2009-03-091-0/+139
|
* A system with plenty of memory would not require so much swap for genericdelphij2009-03-091-1/+3
| | | | | | usage. Discussed with: dillon
* Document the new default implementation of VOP_VPTOCNP(9).marcus2009-03-081-1/+7
| | | | Approved by: kib
* Add Mobile Action MA-620 Infrared Adapter.thompsa2009-03-041-0/+2
| | | | | | PR: usb/125072 Submitted by: Alexander Logvinov MFC after: 1 week
* Add cross-reference to sourcefilter(3).bms2009-03-041-1/+2
|
* Add source-specific multicast (SSM) option documentation.bms2009-03-041-20/+150
|
* Xref glxsb(4).brueffer2009-03-031-1/+2
| | | | MFC after: 3 days
* Extend the "vfsopt" mount options for more general use. Make structjamie2009-03-022-7/+57
| | | | | | | | | | | | | | | | vfsopt and the vfs_buildopts function public, and add some new fields to struct vfsopt (pos and seen), and new functions vfs_getopt_pos and vfs_opterror. Further extend the interface to allow reading options from the kernel in addition to sending them to the kernel, with vfs_setopt and related functions. While this allows the "name=value" option interface to be used for more than just FS mounts (planned use is for jails), it retains the current "vfsopt" name and <sys/mount.h> requirement. Approved by: bz (mentor)
* MFp4 //depot/projects/usb@157855thompsa2009-02-241-1/+6
| | | | | | Document short_frames_ok. Submitted by: Hans Petter Selasky
* Build fixups for the new USB stack.thompsa2009-02-231-2/+0
|
* Mention disk_gone() in disk(9).trasz2009-02-222-1/+10
| | | | Approved by: rwatson (mentor)
* Fix a typo and add manpage links to geom(4).trasz2009-02-221-1/+13
| | | | Approved by: rwatson (mentor)
* Fix typo.rpaulo2009-02-221-1/+1
|
* o grammar fixmtm2009-02-191-7/+4
| | | | o remove mention of libkse
* Rename the rc.conf(5) knob if_up_delay to defaultroute_delay to bettermtm2009-02-171-1/+1
| | | | reflect its purpose.
* Elaborate some on the workings of the stub.n_hibma2009-02-131-21/+22
| | | | Collapse up the list of supported devices.
* Fix spelling a bit.mav2009-02-121-3/+3
|
* Document loader tunable hw.re.msi_disable.yongari2009-02-091-1/+11
| | | | Bump .Dd
* Note that the slave address passed to smb(4) commands must be left-justifiedjhb2009-02-061-1/+4
| | | | | (LSB is 0). The iic(4) manpage probably needs similar language to describe the format it expects.
* Add the Buffalo WLI-U2-SG54HGkevlo2009-02-061-0/+1
|
* Remove the assertive KA_HELD and KA_UNHELD as long as they are dangerous,attilio2009-02-051-18/+1
| | | | and not really helpful.
* Sometimes, depending on the bpf filter rules used in $PATTERN,keramida2009-01-301-15/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the example script of the manpage feeds awk(1) with values larger than UINT32_MAX. Then awk prints a negative value, and this messes up $BPFPROG. Trying to load the resulting bpf byte codes with ngctl then fails. For example, the output for PATTERN="udp and dst net 255.255.0.0/16" should be (all in one line): bpf_prog_len=10 bpf_prog=[ { code=40 jt=0 jf=0 k=12 } { code=21 jt=7 jf=0 k=34525 } { code=21 jt=0 jf=6 k=2048 } { code=48 jt=0 jf=0 k=23 } { code=21 jt=0 jf=4 k=17 } { code=32 jt=0 jf=0 k=30 } { code=84 jt=0 jf=0 k=4294901760 } { code=21 jt=0 jf=1 k=4294901760 } { code=6 jt=0 jf=0 k=8192 } { code=6 jt=0 jf=0 k=0 } ] The two k=4294901760 values are displayed as k=-2147483648 by awk. Replace the awk script of the manpage example with a slower but safer version, that doesn't really attempt to convert the byte code printed by tcpdump from string to number and back. PR: docs/123255 Submitted by: Eugenio Maffione, eugenio.maffione at telecomitalia.it MFC after: 3 days
* - Rename adding_user(8) to adding_user(7). There's no adding_user utility,gabor2009-01-303-11/+4
| | | | | | | | | | but the man page describes conceptual information about the process of adding a user, thus it should belong to section 7. - Remove HISTORY and BUGS sections because of the aforementioned reason. PR: docs/130151 Submitted by: Marian Cerny <jojo@matfyz.cz> MFC after: 3 days
* Backout change 187782. It inhibits ntpd from starting at allkeramida2009-01-291-6/+2
| | | | | | when ntpd_sync_on_start is set. Noticed by: rafan
* - Re-order SEE ALSO entriestabthorpe2009-01-281-1/+1
| | | | | Noticed by: brueffer Approved by: trhodes
* - Add initial version of portindex(5) manual pagetabthorpe2009-01-282-0/+102
| | | | | | | | PR: docs/70652 Submitted by: Paul Armstrong <psa otoh.org> Reviewed by: pav keramida trhodes Approved by: keramida MFC after: 3 days
* Bump .Dd for r187782.keramida2009-01-271-1/+1
|
* When synchronizing the clock at system startup time, use bothkeramida2009-01-271-2/+6
| | | | | | | | | the -g and -q options. They do a slightly different thing and both are necessary when the time difference is large. Noticed by: danger, in the forums Approved by: roberto MFC after: 1 week
* s/use/using/ in previous commit.trhodes2009-01-271-1/+1
| | | | Suggested by: jhb
* Add ENOMEM to the return values.trhodes2009-01-271-24/+16
| | | | | | | | | | | Remove invalid return values. Remove reference to non-existent manual pages. Remove reference to rfork (it does not discuss RFSTOPPED). Add sys/unistd.h to the list of includes (required for RFSTOPPED). PR: 126227 Submitted by: Mateusz Guzik <mjguzik@gmail.com> (based on, original version) Reviewed by: jhb, Christoph Mallon <christoph.mallon@gmx.de>
* Teach iic(4) the 'repeated start' I2C condition. This will be used by theraj2009-01-261-1/+7
| | | | | | | upcoming i2c(8) diag utility. Reviewed by: bms, stas Obtained from: Semihalf
* Update jail startup script for multi-IPv4/v6/no-IP jails.bz2009-01-261-9/+33
| | | | | | | | | | | | | | | | | | | | | | | Note: this is only really necessary because of the ifconfig logic to add/remove the jail IPs upon start/stop. Consensus among simon and I is that the logic should really be factored out from the startup script and put into a proper management solution. - We now support starting of no-IP jails. - Remove the global jail_<jname>_netmask option as it is only helpful to set netmasks/prefixes for the right address family and per address. - Implement jail_<jname>_ip options to support both address familes with regard to ifconfig logic. - Implement _multi<n> support suffix to the jail_<jname>_ip option to configure additional addresses to avoid overlong, unreadbale jail_<jname>_ip lines with lots of addresses. Submitted by: initial work from Ruben van Staveren Discussed on: freebsd-jail in Nov 2008. Reviewed by: simon, ru (partial, older version) MFC after: 1 week
* Better description of kern.ipc.maxpipekva.trhodes2009-01-261-6/+9
| | | | Discussed with: kib
* Somehow deleted the .4 at the end of the snd_davbus man page right beforenwhitehorn2009-01-261-1/+1
| | | | | | commit. Add it back. Pointy hat to: me
* Add support for the I2S and davbus audio controllers found in Apple PowerPCnwhitehorn2009-01-253-1/+176
| | | | | | hardware. Submitted by: Marco Trillo
* Change IP addresses/prefixes to be from "Test-Net" (IPv4 documentationbz2009-01-241-7/+7
| | | | | | prefix 192.0.2.0/24) rather than from private-use networks. MFC after: 1 week
* Update the supported device list a little bit.trhodes2009-01-242-4/+6
| | | | | PR: 84538 Submitted by: asmodai
* Add a comment on kern.ipc.maxpipekva.trhodes2009-01-241-1/+11
| | | | | PR: 105997 Reviewed by: keramida
OpenPOWER on IntegriCloud