summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* Add a man page for stack(9).rwatson2007-11-272-0/+119
| | | | MFC after: 1 week
* The nfe driver will first appear in 7.0 and not in 6.xremko2007-11-271-2/+2
| | | | | | PR: i386/118264 Submitted by: "Julian H. Stacey" <jhs at berklix dot org> Nod from: yongari
* Although the entire src tree builds cleanly now without -fno-strict-aliasingjb2007-11-261-2/+2
| | | | | | | in the default CFLAGS, we're in the middle of a ports freeze, so we can't really go making the corresponding change to the ports mk files. I'll take -fno-strict-aliasing out again when the ports freeze ends.
* Bump .Dd for previous revision.brueffer2007-11-261-1/+1
|
* Clean up after previous revision.brueffer2007-11-251-4/+5
|
* - Document an EAGAIN error return from a PMC_OP_CONFIGURELOG request.jkoshy2007-11-251-11/+45
| | | | | | | | - Document some EINVAL error returns from PMC_OP_CONFIGURELOG, PMC_OP_WRITELOG and PMC_OP_FLUSHLOG that were missed earlier. - Correct a typo: s/PMC_OP_ALLOCATE/PMC_OP_PMCALLOCATE/. - Describe how log file writing errors are returned by a PMC_OP_FLUSHLOG request.
* Update sx(9) lock manpage in order to add missing prototypes for functionattilio2007-11-251-2/+17
| | | | sx_slock_sig() and sx_xlock_sig() and their respective explanation.
* Update rwlock(9) manpage adding missing bits about the rw_init_flags()attilio2007-11-251-2/+33
| | | | | | | function, its options and explaining that recursion for writers can be selectively enabled. Reported by: rwatson, Skip Ford <skip at menantico dot com>
* - Improve clarity: use 'scope' to distinguish between process and systemjkoshy2007-11-241-19/+39
| | | | | | | PMCs and 'mode' to distinguish between counting and sampling. - Document PMC row dispositions. - Document the requirement for PRIV_PMC_MANAGE privilege when issuing PMC_OP_PMCADMIN requests.
* Re-enable -Werror again.jb2007-11-222-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This time, change the default CFLAGS to match the simple defaults that the tinderboxes use. That is, don't use -fno-strict-aliasing by default. My last attempt to re-anable -Werror gave me a lesson in what strict aliasing is all about. There was code in libthr that wasn't 64-bit clean. The default use of -fno-strict-aliasing hid that. By using -fno-strict-aliasing by default we were choosing to ignore problems in code which had the potential to shoot ourselves in the foot. Sometimes it would be the 64-bit foot. I have both feet. The left ones are 32 bits and the right ones are 64 bits. Don't ask about my endian orientation. :-) The -fno-strict-aliasing compiler arg can still be used if NO_STRING_ALIASING is define in make. We are early in the FreeBSD 8 development, so we have the opportunity to wait and see if this works for us. I am sure that people will complain. We can easily revert this. All I ask is that we take sides: clean code or not. YMMV. Note that by using -fno-strict-aliasing the build won't actually break. Only where WARNS is set (and -Werror is used) will a compiler warning break the build. The use of WARNS levels implies (to me at least) that the developer has taken some care to make the code pass basic checks. This commit makes those checks just a little bit more strict.
* - Correct a documentation bug: handles returned from a PMC_OP_PMCALLOCATEjkoshy2007-11-221-4/+11
| | | | | | | request are 32 bit values, and are not necessarily small. - Note that the PMC_F_KGMON flag is currently unimplemented. - Tweak description of an EINVAL error return. - Add an "AUTHORS" section.
* - Add callout_init_rw.9 to MLINKS of timeout.9gabor2007-11-201-0/+1
| | | | | Forgotten by: gabor Reminded by: ru
* - Document newly added callout_init_rw functiongabor2007-11-201-1/+26
| | | | | Requested by: attilio Reviewed by: attilio
* Add 88E8058 to the list of supported hardware.yongari2007-11-201-1/+3
|
* Unfortunately the tinderbox setup uses custom CFLAGS which are a bigjb2007-11-191-0/+2
| | | | | | | | obstacle to enabling -Werror. I'll continue to work on cleaning up the code so that we can keep this enabled. If the tinderboxes would just use the default CFLAGS set in this file, all would be fine and we'd be able to make use of -Werror.
* Since SAOL 13:th edition "v" and "w" are officially separated (in 2006)ache2007-11-192-4/+4
|
* Re-enable -Werror ins WARNS as it was roughly 6 months ago beforejb2007-11-191-3/+0
| | | | | | being disabled while gcc 4.2 was bedded in. Tested with 'make release' (amd64 arm i386 ia64 pc98 powerpc sparc64 sun4v)
* Weed out a warning argument that isn't applicable to C++ code.jb2007-11-191-1/+1
|
* Add wlan_amrr to the required devices/modulesbenjsc2007-11-141-0/+2
| | | | Submitted By: glebius
* Sort.ru2007-11-131-8/+8
|
* Xref wpi(4).brueffer2007-11-133-0/+4
|
* Cleanup, mostly typo fixes.brueffer2007-11-131-6/+8
|
* Assorted tiny mdoc(7) fixes:ru2007-11-131-10/+10
| | | | | | - Sort sections. - Fix xrefs. - Fix some misusages of some macros.
* Sort.ru2007-11-131-1/+1
|
* Some cleanup.brueffer2007-11-121-11/+13
|
* Manual page for the asmc driver.rpaulo2007-11-122-0/+156
| | | | Approved by: njl (mentor)
* Add support for "freebsd-update -r newrelease upgrade" -- binarycperciva2007-11-121-1/+27
| | | | | | | | | | | | | | | | | | | upgrading to new releases. Important parts of this code include * automatically determining which optional components (e.g., src, info, proflibs) are installed. * merging changes in files which are modified locally and have changed between the currently running and new release. * prompting the user to rebuild all 3rd party software before deleting old shared libraries. Yes, this is compatible with "freebsd-update rollback" -- you can test a new -BETA and roll back to the old release if you don't like it. Subject to re@ approval, this will be MFCed before 7.0-BETA3 and 6.3-RC1. MFC after: 2 days
* More cleanup.brueffer2007-11-111-12/+14
|
* Update pf examples from OpenBSD to catch up with new stateful defaults andmlaier2007-11-1110-89/+121
| | | | other syntax changes. Move pf.conf from /etc to examples, too.
* Hook up rmlock(9) and its links to the build.rwatson2007-11-101-0/+9
|
* Add rm_wowned(9) function to test whether the current thread owns anrwatson2007-11-101-2/+8
| | | | | | exclusive lock on the passed rmlock. Reviewed by: ups
* Clean up the rmlock(9) manual page:hmp2007-11-101-24/+43
| | | | | | | | | | * Correct spelling and grammar * Re-structure sentences in BUGS section for legibility * Break long lines appropriately * Break lines at full stops * Add mdoc(9) commands where applicable * Remove superfluous .Ft in the SYNOPSIS section * Various other mdoc(9) fixes
* Clean up after last commit.ru2007-11-091-2/+2
|
* Remove traces of vinum and replace with gvinum.trhodes2007-11-091-3/+8
| | | | Mention gstripe and gjournal.
* Link wpi(4) into the build.benjsc2007-11-082-1/+6
| | | | | | | | | | This includes: o mtree (for legal/intel_wpi) o manpage for i386/amd64 archs o module for i386/amd64 archs o NOTES for i386/amd64 archs Approved by: mlaier (comentor)
* Provide a man page for wpi:benjsc2007-11-081-0/+147
| | | | | | Intel 3945abg wireless driver Approved by: mlaier (comentor)
* Initial checkin for rmlock (read mostly lock) a multi reader single writerups2007-11-082-8/+208
| | | | | | | | lock optimized for almost exclusive reader access. (see also rmlock.9) TODO: Convert to per cpu variables linkerset as soon as it is available. Optimize UP (single processor) case.
* Switch arm to -O until the -O2 issues are resolved.cognet2007-11-051-0/+4
| | | | MFC After: 3 days
* Initial Import of wpi driver based on p4 changeset 128641.benjsc2007-11-051-0/+8
| | | | | | | | | This import includes: o wpi Wireless driver for the Intel 3945 Wireless Lan Controller (802.11abg) (sys/dev/wpi) o Intel firmware revision 2.14.4 & associated LICENSE (sys/dev/contrib/wpi, sys/contrib/dev/wpi/LICENSE) o wpifw Firmware driver (sys/modules/wpifw) Approved by: mlaier, sam (co-mentors)
* MFV of tzdata2007iedwin2007-11-043-5/+71
| | | | Changes in Cuba and Syria.
* o OpenBSD 4.2 added.maxim2007-11-021-0/+2
|
* Don't imply O(n) removal for the doubly linked data structures.obrien2007-11-021-2/+8
|
* Add myself and note that erwin is my mentorbrix2007-11-011-0/+2
| | | | Approved by: erwin (mentor)
* Add a small note about how "mkfs.xfs -p" can be used to createrodrigc2007-10-311-1/+11
| | | | an XFS file system populated with files.
* Fix one more typo.mav2007-10-311-2/+2
|
* Fix some mistakes.mav2007-10-311-5/+5
| | | | Update my email.
* Insert zero-width break points to fix warnigns in nroff output,keramida2007-10-312-3/+3
| | | | | | and reduce whitespace stretching in groff PS output. groff-foo by: ru
* mdoc fix: Add missing .El requestkeramida2007-10-301-1/+2
| | | | MFC after: 3 days
* mdoc warning fixes: Use the correct syntax for .Bl -offset indentkeramida2007-10-302-4/+4
| | | | MFC after: 3 days
* mdoc warning fix: Remove a spurious .El request.keramida2007-10-301-2/+1
| | | | MFC after: 3 days
OpenPOWER on IntegriCloud