summaryrefslogtreecommitdiffstats
path: root/share/man
Commit message (Collapse)AuthorAgeFilesLines
* Missing IFCAP_* macro descriptions in ifnet(9).simon2010-07-271-0/+25
| | | | | | PR: docs/148952 Submitted by: Lars Hartmann <lars@chaotika.org> MFC after: 2 weeks
* Remove the acpi_aiboost driver. It has been replaced by aibs(4).rpaulo2010-07-252-104/+0
|
* - Regenerate after adding WITH_GNU_GREPgabor2010-07-221-4/+4
|
* Fix taskqueue_drain(9) to not have false negatives. For threadedmdf2010-07-221-10/+0
| | | | | | | | | | | | | | taskqueues, more than one task can be running simultaneously. Also make taskqueue_run(9) static to the file, since there are no consumers in the base kernel and the function signature needs to change with this fix. Remove mention of taskqueue_run(9) and taskqueue_run_fast(9) from the taskqueue(9) man page. Reviewed by: jhb Approved by: zml (mentor)
* Update manpage to reflect changes regarding the 6050's firmware.bschmidt2010-07-202-2/+6
| | | | MFC after: 3 days
* Add reference to uhsoctl(1).trasz2010-07-201-1/+2
|
* - Support for Globetrotter iCON 452.thompsa2010-07-201-4/+17
| | | | | | | | | | | | | | - Fixed the interface probe routine to only attach to USB interfaces the driver actually supports. This allows other drivers to attach to things like MicroSD slots etc. - Fixed network interface enumeration to be globally sequential instead of relying on the USB interface numbers. This make sure the first network interface always is at uhso0 and the second at usho1 and so on. - Added a radio kill switch; exposed through sysctl. - Updated the manual page to be verbose about the number of serial ports and include iCON 452 in the set of tested hardware. Submitted by: Fredrik Lindberg
* Cross reference tree(3) and queue(3).simon2010-07-182-0/+4
| | | | MFC after: 1 week
* o Fix typo: "is is" -> "is".maxim2010-07-171-1/+1
| | | | | | PR: docs/148697 Submitted by: Warren Block MFC after: 1 week
* Provide initial man pages for Flattened Device Tree support and the commonraj2010-07-144-0/+356
| | | | | | drivers. Sponsored by: The FreeBSD Foundation
* Bump document for content change in r210002.simon2010-07-131-1/+1
|
* In the example for how to create a VLAN, also include an example ofsimon2010-07-131-1/+2
| | | | | | | | setting the IP address. While it is documented earlier in rc.conf(5) that the '.' in the VLAN name becomes a '_' in rc.conf, this may not be easy to find when just using rc.conf(5) as reference documentation. MFC after: 1 week
* o Correct path to include file.maxim2010-07-131-2/+2
| | | | | | PR: docs/148545 Submitted by: Anton Shterenlikht MFC after: 1 week
* Install arch-specific manpages by MACHINE_CPUARCH, not MACHINE_ARCH.nwhitehorn2010-07-131-2/+2
|
* Extend the kernel unit number allocator for allocating specific unitjh2010-07-052-1/+12
| | | | | | | | | | | numbers. This change adds a new function alloc_unr_specific() which returns the requested unit number if it is free. If the number is already allocated or out of the range, -1 is returned. Update alloc_unr(9) manual page accordingly and add a MLINK for alloc_unr_specific(9). Discussed on: freebsd-hackers
* Improve the comment and man page for vm_page_alloc(). Specifically,alc2010-07-031-21/+28
| | | | | | | | document one of the optional flags; clarify which of the flags are optional (and which are not), and remove mention of a restriction on the reclamation of cached pages that no longer holds since version 7. MFC after: 1 week
* Hook the siftr.4 man page up to the build and alphabetically sort siis into itslstewart2010-07-031-1/+2
| | | | | | | correct place whilst there. Sponsored by: FreeBSD Foundation Submitted by: pluknet <pluknet at gmail dot com>
* Add ata(4) ability to limit initial ATA mode for devices via device hints.mav2010-07-031-1/+5
| | | | | | | After boot this mode can be changed with atacontrol/camcontrol as usual. It works for both legacy and ATA_CAM wrapper mode. PR: kern/123980
* Import the Statistical Information For TCP Research (SIFTR) kernel module intolstewart2010-07-031-0/+752
| | | | | | | | | | | | | | | | | | FreeBSD. SIFTR logs a range of statistics on active TCP connections to a log file, providing the ability to make highly granular measurements of TCP connection state. The tool is aimed at system administrators, developers and researchers alike. Please take it for a spin and test it out - the man page should have all the information required to get you going. Many thanks go to the Cisco University Research Program Fund at Community Foundation Silicon Valley and the FreeBSD Foundation. Their support of our work at the Centre for Advanced Internet Architectures, Swinburne University of Technology is greatly appreciated. Sponsored by: Cisco URP, FreeBSD Foundation Reviewed by: dwmalone, gnn, rpaulo Tested by: Many on freebsd-current@ and elsewhere over the years MFC after: 1 month
* Adds `Dell Truemobile 1300' to the supported list.weongyo2010-07-011-1/+2
| | | | Submitted by: Warren Block <wblock at wonkity.com>
* - The ETIMEDOUT error applies to pthread_timedjoin_np(), not pthread_join().jhb2010-06-291-3/+3
| | | | | | - Tweak wording in history section for pthread_timedjoin_np(). MFC after: 3 days
* Note that internal_underscores should be used in identifier names rathercperciva2010-06-271-0/+3
| | | | | | | | than camelCase or TitleCase. According to grep and my checked-out source tree, we're currently at 3733379 internal_underscores, 93024 camelCases, and 80831 TitleCases; so this commit is merely documenting existing practice.
* Import the acpi_aibs(4) driver written by Constantine A. Murenin.rpaulo2010-06-252-0/+211
| | | | | | | | | It has more features than acpi_aiboost(4) and it will eventually replace acpi_aiboost(4). Submitted by: Constantine A. Murenin <cnst at FreeBSD.org> Reviewed by: freebsd-acpi, imp MFC after: 1 month
* - Fix typo, it should have been c78.7gabor2010-06-171-1/+1
| | | | Submitted by: pluknet <pluknet@gmail.com>
* - Add c99(7) manual pagegabor2010-06-172-0/+188
| | | | - Add MLINKS to c.7, c79.7, c89.7, c90.7
* Implement flexible BPF timestamping framework.jkim2010-06-151-8/+91
| | | | | | | | | | | | | | | | | | | | | | | | | | | - Allow setting format, resolution and accuracy of BPF time stamps per listener. Previously, we were only able to use microtime(9). Now we can set various resolutions and accuracies with ioctl(2) BIOCSTSTAMP command. Similarly, we can get the current resolution and accuracy with BIOCGTSTAMP command. Document all supported options in bpf(4) and their uses. - Introduce new time stamp 'struct bpf_ts' and header 'struct bpf_xhdr'. The new time stamp has both 64-bit second and fractional parts. bpf_xhdr has this time stamp instead of 'struct timeval' for bh_tstamp. The new structures let us use bh_tstamp of same size on both 32-bit and 64-bit platforms without adding additional shims for 32-bit binaries. On 64-bit platforms, size of BPF header does not change compared to bpf_hdr as its members are already all 64-bit long. On 32-bit platforms, the size may increase by 8 bytes. For backward compatibility, struct bpf_hdr with struct timeval is still the default header unless new time stamp format is explicitly requested. However, the behaviour may change in the future and all relevant code is wrapped around "#ifdef BURN_BRIDGES" for now. - Add experimental support for tagging mbufs with time stamps from a lower layer, e.g., device driver. Currently, mbuf_tags(9) is used to tag mbufs. The time stamps must be uptime in 'struct bintime' format as binuptime(9) and getbinuptime(9) do. Reviewed by: net@
* Add a periodic zfs scrub script.netchild2010-06-151-1/+20
| | | | | | | | | | | | | | | | | Features: - configurable amount of days between scrubs (default value or per pool) - do not scrub directly after pool creation (respects the configured number of days between scrubs) - do not scrub if a scrub is in progress - tells how to see the status of the scrub - tells how many days since the last scrub if it skips the scrubbing - warns if a non-existent pool is specified explicitely (default: no pools specified -> all currently imported pools are handled) - runs late in the periodic run to not slow down the other periodic daily scripts Discussed on: fs@
* Update vfs_busy(9) and vfs_unbusy(9) manual pages to better match thejh2010-06-142-18/+11
| | | | | | current behaviour of the functions. Discussed with: attilio
* More mdoc nitpicking to improve compatibility to mdocmluqs2010-06-112-2/+2
| | | | | | | | - .Nd in section NAME is not optional - .Ed was missing - "indent" is not a flag, but a literal argument for -offset - stop switching font sizes for acronyms - use .Brq instead of rolling our own
* Remove Xo/Xc in It, which is not yet supported by mdocml butuqs2010-06-111-3/+1
| | | | can be worked around trivially in this case.
* mdoc nitpicking: the title argument shall be uppercaseuqs2010-06-115-5/+5
|
* Make the char *n_name member of struct nlist 'const'.bz2010-06-102-9/+9
| | | | | | | | | | This avoids errors or __DECONST() from places with higher WARNS levels. Adjust a local cache variable in ipcs to const as well to compile in the new world order. Suggested by: jhb Reviewed by: jhb, kib, brueffer (man)
* Regenerate.ed2010-06-101-3/+3
|
* Regenerate.ed2010-06-091-1/+1
|
* Regen src.conf.5rdivacky2010-06-091-1/+10
| | | | Approved by: ed (mentor)
* New netgraph node ng_patch(4). It performs data modification of packetsae2010-06-092-0/+236
| | | | | | | | | | | | | | | | passing through. Modifications are restricted to a subset of C language operations on unsigned integers of 8, 16, 32 or 64 bit size. These are: set to new value (=), addition (+=), subtraction (-=), multiplication (*=), division (/=), negation (= -), bitwise AND (&=), bitwise OR (|=), bitwise eXclusive OR (^=), shift left (<<=), shift right (>>=). Several operations are all applied to a packet sequentially in order they were specified by user. Submitted by: Maxim Ignatenko <gelraen.ua at gmail.com> Vadim Goncharov <vadimnuclight at tpu.ru> Discussed with: net@ Approved by: mav (mentor) MFC after: 1 month
* [0] Improve wording.attilio2010-06-031-9/+13
| | | | | | | | | [1] Following style for manpages, just do carriage return after a sentence. Sponsored by: Sandvine Incorporated [0] Submitted by: emaste [1] Submitted by: rwatson
* mdoc cleanupuqs2010-06-022-4/+3
| | | | | | | Garbage collect unused sections, macros and arguments. Fix prologue and remove empty lines. Found by: mdocml
* Recommend disabling LAPIC timer instead whole APIC for fixing C3 state.mav2010-06-021-6/+4
| | | | | PR: docs/147180 Submitted by: Tobias Rehbein
* Adjust the manpage after r207329.attilio2010-06-011-12/+69
| | | | | | Sponsored by: Sandvine Incorporated Reviewed by: cpercival, emaste, marcel X-MFC: r207329
* devfs(5): Also mention when device nodes on ufs stopped working (6.0),jilles2010-05-301-4/+6
| | | | | | as requested by some people. MFC after: 2 weeks
* Clarify devfs manpages slightly.jilles2010-05-291-4/+6
| | | | | | | | | | mount(8): add xref to devfs(5) devfs(5): change example to something more likely to be useful (it is not necessary to mount a devfs on /dev manually, but for chroots/jails it is often needed), mention since when devfs is preferred to device nodes on ufs PR: 146600 MFC after: 2 weeks
* mdoc: remove duplicate width argumentuqs2010-05-271-1/+1
|
* mdoc: .Ud has attitude, it takes no argument!uqs2010-05-272-2/+2
|
* mdoc: Garbage collect unused/unneeded macrosuqs2010-05-271-1/+0
|
* Add uep(4), driver for USB onscreen touch panel from eGalax.glebius2010-05-252-0/+80
| | | | | | | | | | | | | | The driver is stub. It just creates device entry and feeds reassembled packets from hardware into it. If in future we would port wsmouse(4) from NetBSD, or make sysmouse(4) to support absolute motion events, then the driver can be extended to act as system mouse. Meanwhile, it just presents a /dev/uep0, that can be utilized by X driver, that I am going to commit to ports tree soon. The name for the driver is chosen to be the same as in NetBSD, however, due to different USB stacks this driver isn't a port.
* MFp4 @178364:bz2010-05-241-3/+7
| | | | | | | | | | | | | | | | | | Implement an optional delay to the ddb reset/reboot command. This allows textdumps to be run automatically with unattended reboots after a resonable timeout, while still permitting an administrator to break into debugger if attached to the console at the time of the event for further debugging. Cap the maximum delay at 1 week to avoid highly accidental results, and default to 15s in case of problems parsing the timeout value. Move hex2dec helper function from db_thread.c to db_command.c to make it generally available and prefix it with a "db_" to avoid namespace collisions. Reviewed by: rwatson MFC after: 4 weeks
* These features will first appear in 8.1, soon to be releaseduqs2010-05-242-2/+2
| | | | MFC after: 3 days
* mvs(4) will first appear in FreeBSD 8.1.mav2010-05-231-1/+1
|
* Document NANO_ARCH which is no longer hard coded as of r205980.wxs2010-05-201-1/+4
| | | | Approved by: imp@
OpenPOWER on IntegriCloud