summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* Add note abotu bwn and newer chipsetsimp2010-09-151-0/+14
|
* Don't suggest using bwn for the bcm4306 cards in the list. Theimp2010-09-151-4/+0
| | | | | | bcm4306 cards are ambiguous. BCM4306 rev 2 requires bwi. BCM4306 rev 3 will work with either. Since we can't easily determine which is which, just remove them.
* MFp4 (//depot/projects/mps/...)ken2010-09-151-1/+1
| | | | | | Fix a typo. Submitted by: pluknet at gmail dot com
* Change licenses of my manual pages to the recommended 2-clause form.mav2010-09-154-49/+45
| | | | Suggested by: joel
* Add eventtimers(7) man page, briefly describing event timers subsystemmav2010-09-154-1/+134
| | | | functionality and configuration options.
* Add hpet(4) man page.mav2010-09-152-0/+107
|
* Fixes spellings and uses the better sentence. While I'm here bumpsweongyo2010-09-141-6/+5
| | | | | | date. Pointed by: imp, Ruslan Mahmatkhanov <cvs-src at yandex dot ru>
* MFp4 (//depot/projects/mps/...)ken2010-09-143-0/+161
| | | | | | | Add a man page for the mps(4) driver, and reference it in the mpt(4) driver man page. Sponsored by: Spectra Logic Corporation
* Split $ipv6_prefer into $ip6addrctl_policy and $ipv6_activate_all_interfaces.hrs2010-09-131-24/+64
| | | | | | | | | | | | | | | | | | | The $ip6addrctl_policy is a variable to choose a pre-defined address selection policy set by ip6addrctl(8). The keyword "ipv4_prefer" sets IPv4-preferred one described in Section 10.3, the keyword "ipv6_prefer" sets IPv6-preferred one in Section 2.1 in RFC 3484, respectively. When "AUTO" is specified, it attempts to read /etc/ip6addrctl.conf first. If it is found, it reads and installs it as a policy table. If not, either of the two pre-defined policy tables is chosen automatically according to $ipv6_activate_all_interfaces. When $ipv6_activate_all_interfaces=NO, interfaces which have no corresponding $ifconfig_IF_ipv6 is marked as IFDISABLED for security reason. The default values are ip6addrctl_policy=AUTO and ipv6_activate_all_interfaces=NO. Discussed with: ume and bz
* Add $ipv6_privacy to support net.inet6.ip6.use_tempaddr. Note that thishrs2010-09-131-0/+6
| | | | | | will be replaced with a per-IF version later. Based on: changes in r206408 by dougb
* Revert changes in r206408.hrs2010-09-131-81/+55
| | | | Discussed with: dougb, core.5, and core.6
* Prefer MACHINE_CPUARCH to MACHINE_ARCH unless there's a good reason...imp2010-09-131-18/+18
|
* I believe the majority of Gregorian calendars would agree the currentgjb2010-09-121-1/+1
| | | | | | | | year is 2010, not 2005. Approved by: keramida (mentor) Pointy hat to: gjb MFC after: 1 week
* Bump date from r212440.gjb2010-09-121-1/+1
| | | | | Approved by: keramida (mentor) MFC after: 1 week
* Mentions cases when bwi(4) driver should be used that it only wroteweongyo2010-09-111-1/+8
| | | | | | | about chipset type instead of card names because it's not easy to sort names what cards use these chipsets. Pointed by: imp
* Revert changes of 'assure' to 'ensure' made in r211936.brucec2010-09-112-2/+2
| | | | Approved by: rrs (mentor)
* Add a comment describing where to include bsd.dtrace.mk.rpaulo2010-09-111-0/+1
| | | | Sponsored by: The FreeBSD Foundation
* Make a link for pthread_timedjoin_np.davidxu2010-09-111-0/+1
|
* kill() does queue signal now.davidxu2010-09-111-4/+0
|
* Add RETURN VALUES section to devclass_get_maxunit(9).gjb2010-09-101-0/+13
| | | | | | | | PR: 149979 Submitted by: gcooper Patch by: gcooper Approved by: keramida (mentor) MFC after: 1 week
* Fix bugs introduced in the previous rev:rpaulo2010-09-101-5/+9
| | | | | | | * add a phatom target for the DTRACEOBJS * when invoking DTrace, don't add DTRACEOBJS to the command line. Sponsored by: The FreeBSD Foundation
* Fix typo in previous commit.rpaulo2010-09-101-1/+1
|
* Replace sbuf_overflowed() with sbuf_error(), which returns any errormdf2010-09-102-8/+13
| | | | | | code associated with overflow or with the drain function. While this function is not expected to be used often, it produces more information in the form of an errno that sbuf_overflowed() did.
* Add bsd.dtrace.mk. This allows userland programs and libraries torpaulo2010-09-102-1/+57
| | | | | | | | | define USDT probes on a provider.d file and then use this new make infrastructure to build the corresponding header file and object file. This will only take effect when the user defines WITH_DTRACE when building. Sponsored by: The FreeBSD Foundation
* Check the existence of a 'beforelinking' target and make the resultingrpaulo2010-09-102-1/+13
| | | | | | | program or library depend on that before doing the final linking. This will be needed by DTrace. Sponsored by: The FreeBSD Foundation
* Add the DTRACE variable that points to the executable.rpaulo2010-09-101-0/+1
| | | | Sponsored by: The FreeBSD Foundation
* Add Planex UE-200TX-G to list of supported devices.sanpei2010-09-101-0/+2
| | | | | | | (http://lists.freebsd.org/pipermail/freebsd-current/2008-December/001756.html) Submitted by: nork MFC after: 3 days
* Xref aesni(4).brueffer2010-09-091-1/+2
|
* Some more grammar, wording and mdoc fixes.brueffer2010-09-091-4/+8
|
* Add drain functionality to sbufs. The drain is a function that ismdf2010-09-092-7/+100
| | | | | | | | | | | | | | | | | called when the sbuf internal buffer is filled. For kernel sbufs with a drain, the internal buffer will never be expanded. For userland sbufs with a drain, the internal buffer may still be expanded by sbuf_[v]printf(3). Sbufs now have three basic uses: 1) static string manipulation. Overflow is marked. 2) dynamic string manipulation. Overflow triggers string growth. 3) drained string manipulation. Overflow triggers draining. In all cases the manipulation is 'safe' in that overflow is detected and managed. Reviewed by: phk (the previous version)
* Fix small errors in the sbuf(9) man page.mdf2010-09-091-4/+9
|
* Add Buffalo (Melco Inc.) LUA3-U2-ATX to list of supported devices.sanpei2010-09-081-0/+2
| | | | | Submitted by: nork at FreeBSD.org MFC after: 3 days
* Adds LOADER TUNABLES section to mention knobs which could be controlledweongyo2010-09-061-0/+14
| | | | by loader(8) interface.
* Adds a CAVEATS section to mention DMA issues that currently onlyweongyo2010-09-061-0/+3
| | | | | | | | a solution is using PIO mode. As fas as I know all open source based broadcom drivers for specially LP PHY has this issue because it's a reverse engineered driver from wl(4). Pointed by: Warren Block <wblock at wonkity.com>
* Adds bwi(4) at SEE ALSO section because some old devices aren'tweongyo2010-09-061-1/+2
| | | | | supported by the bwn(4) firmware that as fas as I know the vendor dropped its support. Bumps date also.
* Grammar fixes.kib2010-09-061-8/+7
| | | | Submitted by: Ben Kaduk <minimarmot gmail com>, Valentin Nechaev
* Add aesni(4) manpage.kib2010-09-062-0/+93
|
* Point out who is my mentor.andreast2010-09-061-0/+2
| | | | Approved by: nwhitehorn (mentor)
* Add myself to calendar.freebsd and committers-src.dot.andreast2010-09-061-0/+1
| | | | Approved by: nwhitehorn (mentor)
* Note in rc.conf(5) that jail_list should contain only alphanumericgjb2010-09-051-2/+3
| | | | | | | | | characters. PR: 150098 Submitted by: cc (cpt_complain at yahoo dot com) Approved by: keramida (mentor) MFC after: 1 week
* Add support for the Sharp/Micron flash chips to powermac_mvram(4).mav2010-09-051-6/+1
| | | | | | Tested on PowerMac G4 AGP. Reviewed by: nwhitehorn
* Document "show cdev" command.kib2010-09-051-1/+7
| | | | MFC after: 3 days
* Document MAKEDEV_ETERNAL.kib2010-09-051-1/+14
| | | | MFC after: 3 days
* Add myself to commiters-ports.dotswills2010-09-051-0/+4
| | | | Approved By: pgollucci (co-mentor)
* Better wording.yongari2010-09-021-3/+3
| | | | Submitted by: jkim
* Document tunable dev.sis.%unit.manual_padyongari2010-09-021-1/+18
| | | | | While I'm here Xref vlan(4) as sis(4) supports VLAN oversized frames.
* o csup(1) does not have -g flag. Remove it from the example.maxim2010-09-021-1/+1
| | | | | | PR: conf/150214 Submitted by: Li MFC after: 1 week
* rmlock(9) two additions and one change/fix:mlaier2010-09-013-3/+37
| | | | | | | | | | | | - add rm_try_rlock(). - add RM_SLEEPABLE to use sx(9) as the back-end lock in order to sleep while holding the write lock. - change rm_noreadtoken to a cpu bitmask to indicate which CPUs need to go through the lock/unlock in order to synchronize. As a side effect, this also avoids IPI to CPUs without any readers during rm_wlock. Discussed with: ups@, rwatson@ on arch@ Sponsored by: Isilon Systems, Inc.
* o Sync the man page with the reality: nfs/ includesmaxim2010-09-011-1/+3
| | | | | | | | are under include/ and include/fs/. PR: docs/139153 Submitted by: gjb MFC after: 1 week
* Remove reference to device minor numbers in psm(4) man page.ed2010-09-011-18/+1
| | | | | | | The number returned by stat(2) is generated automatically, so it is not possible to deduce whether the device is blocking or not. MFC after: 1 week
OpenPOWER on IntegriCloud