summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* Add more technical terms to reduce false positives when spellcheckingmurray2005-05-041-0/+4
| | | | FreeBSD documentation.
* Add convenience APIs pmc_width() and pmc_capabilities() to -lpmc.jkoshy2005-05-011-3/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Have pmcstat(8) and pmccontrol(8) use these APIs. Return PMC class-related constants (PMC widths and capabilities) with the OP GETCPUINFO call leaving OP PMCINFO to return only the dynamic information associated with a PMC (i.e., whether enabled, owner pid, reload count etc.). Allow pmc_read() (i.e., OPS PMCRW) on active self-attached PMCs to get upto-date values from hardware since we can guarantee that the hardware is running the correct PMC at the time of the call. Bug fixes: - (x86 class processors) Fix a bug that prevented an RDPMC instruction from being recognized as permitted till after the attached process had context switched out and back in again after a pmc_start() call. Tighten the rules for using RDPMC class instructions: a GETMSR OP is now allowed only after an OP ATTACH has been done by the PMC's owner to itself. OP GETMSR is not allowed for PMCs that track descendants, for PMCs attached to processes other than their owner processes. - (P4/HTT processors only) Fix a bug that caused the MI and MD layers to get out of sync. Add a new MD operation 'get_config()' as part of this fix. - Allow multiple system-mode PMCs at the same row-index but on different CPUs to be allocated. - Reject allocation of an administratively disabled PMC. Misc. code cleanups and refactoring. Improve a few comments.
* - document powerd_flags toonetchild2005-05-011-0/+10
| | | | | | - add a reference to powerd(8) Approved by: mentor (joerg)
* update for recent api changessam2005-05-011-11/+25
|
* Remove the Netgear WG311 from the list. The v1 card is supported, butbrooks2005-04-291-1/+0
| | | | | | | | | the v2 card is a TI. Since we're not attempting to keep this list complete, removing this is best. Reported by: Brian Candler <B dot Candler at pobox dot com> Evan Dower <evantd at hotmail dot com> MFC After: 1 day
* Toggle on warnings. This resolves the problem with building old releasesharti2005-04-291-0/+3
| | | | | | | (getting zillions of warnings). Building an old release uses that release's sys.mk which does not switch on these warnings, so make will be silent. They can be switch on on the command line with the -x option to make. This has been tested by building RELENG_5_4 on CURRENT.
* IPFIlter problems that prevented building should all now be resolved sodarrenr2005-04-281-5/+0
| | | | remove this temporary measure.
* Disable the IPFILTER bits until they compile again. This can be overridenscottl2005-04-271-0/+5
| | | | | | by adding WANT_IPFILTER to /etc/make.conf. Note that this is only a partial hack and only works when building the world and kernel the 'sanctioned' way. I hope that this hack is only temporary and can be reverted soon.
* Typeo.mlaier2005-04-251-1/+1
| | | | Submitted by: Emil Mikulic
* Document sysctl introduced with if_sk.c rev. 1.101.bz2005-04-241-1/+16
| | | | | | | Add D-Link DGE-530T to list of supported hardware. Reviewed by: ru (initial version), simon (updated version) Approved by: pjd (mentor)
* Add note to remove nis entries when compiling with NO_NIS.bz2005-04-241-1/+7
| | | | | Reviewed by: ru (initial version), simon (updated version) Approved by: pjd (mentor)
* Document the debug.acpi.max_threads tunable.njl2005-04-221-0/+5
|
* Add the short but important word 'software' to the title.brueffer2005-04-211-1/+1
|
* FAITH's base spec has already been an RFCsuz2005-04-211-3/+1
| | | | | Obtained from: KAME MFC after: 1 day
* Comments correctionache2005-04-211-2/+2
| | | | Submitted by: Yury Tarasievich <spytar@yahoo.com>
* Manpage for unit allocator functions.glebius2005-04-202-1/+104
| | | | Reviewed by: phk
* Fix typo.brueffer2005-04-201-1/+1
| | | | | PR: 80133 Submitted by: Zheyu Shen <free.bsd@gmx.net>
* Cross reference ehci(4).simon2005-04-203-3/+6
| | | | | Suggested by: Flemming Jacobsen MFC after: 3 days
* Add a driver for SMI-based SpeedStep. The hardware supports two frequencynjl2005-04-191-0/+2
| | | | | | | | | | settings and is an older version of the same design used for ICH SpeedStep. It is only known to be available on PIIX4 chipsets. Many thanks to Bruno Ducrot for writing the driver and Jon Noack for testing. Submitted by: Bruno Ducrot
* Bring API documentation for sleepqueue(9) in sync with the codejkoshy2005-04-191-21/+61
| | | | | | in -current. Reviewed by: ru
* Document taskqueue_run_fast(). Markup 'Giant' with ".Va".jkoshy2005-04-191-9/+39
| | | | Reviewed by: ru
* Bring a working snapshot of hwpmc(4), its associated libraries, userland ↵jkoshy2005-04-197-0/+636
| | | | | | | | | | utilities and documentation into -CURRENT. Bump FreeBSD_version. Reviewed by: alc, jhb (kernel changes)
* Initial import of ipw, iwi, ral and ural drivers:damien2005-04-185-0/+498
| | | | | | | | | ipw - Intel PRO/Wireless 2100 iwi - Intel PRO/Wireless 2200BG/2225BG/2915ABG ral - Ralink Technology RT2500 ural - Ralink Technology RT2500USB Approved by: silby (mentor)
* Document bsnmpd related options.glebius2005-04-181-1/+19
| | | | Reminded by: maxim
* Correct a comment about which parallel port pin is used to driveiedowse2005-04-171-1/+1
| | | | | | the RS signal. PR: misc/20139
* Catch up with new naming scheme for USB serial devices: s/ucom/cuaU/.simon2005-04-171-2/+2
| | | | | PR: docs/80027 Submitted by: Rong-En Fan <rafan@infor.org>
* Xref ataraid(4).brueffer2005-04-161-0/+1
|
* Manual page for the ataraid(4) software RAID driver.brueffer2005-04-162-0/+132
| | | | Reviewed by: sos
* Modify the alq(9) alq_open() API to accept a file creation mode, ratherrwatson2005-04-161-2/+15
| | | | | | | | | than defaulting the cmode argument to vn_open() to 0. Supply a default argument of ALQ_DEFAULT_CMODE (0600) in current callers. Discussed with/pointed out by: hmp Reveiwed by: jeff, hmp MFC after: 3 days
* Grr, fix another braino.ru2005-04-161-1/+1
|
* Fix braino in previous revision.ru2005-04-161-2/+2
|
* - Add Dell PERC 4ei to the list of supported devices. It's ansimon2005-04-151-3/+5
| | | | | | | | alias used by Dell sometimes for PERC 4e/Si. [1] - Delete some trailing whitespace. MFC after: 1 day Rapported by: Jon Kuster <kwsn@earthlink.net> [1]
* Add a 'SEE ALSO' section.jkoshy2005-04-151-0/+4
|
* Add missing links.pjd2005-04-151-1/+6
| | | | MFC after: 2 weeks
* Add NO_DICT handle. Saves almost 3.5 MB installed.phk2005-04-133-1/+9
|
* Provide a sysctl (net.link.tap.user_open) to allow unpriviligedmdodd2005-04-131-1/+5
| | | | | | | acces to tap(4) device nodes based on file system permission. Duplicate the 'debug.if_tap_debug' sysctl under the 'net.link.tap' hierarchy.
* Implement unix(4) socket options LOCAL_CREDS and LOCAL_CONNWAIT.mdodd2005-04-131-0/+50
| | | | | | | | - Add unp_addsockcred() (for LOCAL_CREDS). - Add an argument to unp_connect2() to differentiate between PRU_CONNECT and PRU_CONNECT2. (for LOCAL_CONNWAIT) Obtained from: NetBSD (with some changes)
* Indent structure members.mdodd2005-04-121-3/+3
|
* Document the SUN_LEN macro.mdodd2005-04-121-0/+18
| | | | Obtained from: NetBSD
* Regen:sheldonh2005-04-121-256/+868
| | | | | | | * Hart: rev 517 of pcidevs.txt (2005-03-21) * Boemler: vendors.txt (2005-04-04) Approved by: re (kensmith)
* Avoid using the word "interface" twice in a sentence.trhodes2005-04-111-1/+1
|
* Make sure the only thing that follows .endif or .else is a comment.harti2005-04-118-14/+14
|
* Update for verbose debugging support and add Bruno Ducrot author note.njl2005-04-101-6/+10
|
* o Add DragonFly 1.2.0.maxim2005-04-101-3/+4
| | | | o s/DFD/DFB/g as DragonFly people did.
* Create links to crypto.9 for every crypto(9) function.pjd2005-04-091-0/+14
| | | | | OK'ed by: sam MFC after: 2 weeks
* Document the debug.witness.watch sysctl/tuneable.alfred2005-04-091-0/+10
|
* Fix small spelling error.joel2005-04-091-1/+1
| | | | Approved by: brueffer (mentor)
* o Document net.inet.ip.maxfragpackets and maxfragsperpacket sysctls.maxim2005-04-091-1/+10
| | | | | Reviewed by: ru, silby MFC after: 1 week
* Document FTDI FT2232C support.brueffer2005-04-081-2/+2
|
* Expand contractions.joel2005-04-082-2/+2
| | | | Approved by: brueffer (mentor)
OpenPOWER on IntegriCloud