summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Note how cp(1) handles directories ending in "/."trhodes2005-02-241-1/+5
| | | | | PR: 75774 Submitted by: Mike Meyer <mwm@mired.org> (original version)
* Drop bzero and shove the responsibility of zeroing the kse upcallcsjp2005-02-241-2/+1
| | | | | | | | | | | object on to the zone allocator. It should be noted that uma_zalloc(9) uses bzero to zero out the object so there probably wont be any real performance benefit. If UMA grows the ability to supply zeroed zones more efficiently in the future, we will not have to modify all the existing consumers. Discussed with: rwatson,julian MFC after: 1 week
* -document the fact that extattr_get_* can fail if the requestedcsjp2005-02-241-1/+3
| | | | | | | | attribute does not exist on the file. -bump document date Reviewed by: rwatson,trhodes MFC after: 1 week
* - move information about supported hardware into a HARDWARE sectionbrueffer2005-02-231-10/+17
| | | | | | - bump .Dd MFC after: 3 days
* Xref chflags(2).trhodes2005-02-231-1/+7
| | | | | | Note that unlink.2 can return EPERM if the immutable or append-only flags are set. PR: 77043
* Tweak description and add Belkin F5D5020imp2005-02-231-2/+6
|
* Add information on utilities which may or may not be aware of file flags.trhodes2005-02-231-1/+18
| | | | | PR: 55653 Submitted by: Tony Maher <tonymaher@optushome.com.au> (original version)
* eliminate dead codesam2005-02-231-6/+6
| | | | Noticed by: Coverity Prevent analysis tool
* Sort the list of devices in the HARDWARE section. Also move the sectionbrueffer2005-02-231-17/+17
| | | | | | below the DESCRIPTION section for consistency with the other manpages. MFC after: 3 days
* eliminate dead code and collapse the remaindersam2005-02-231-3/+1
| | | | | Noticed by: Coverity Prevent analysis tool Reviewed by: rwatson
* avoid potential null ptr derefssam2005-02-231-2/+11
| | | | Noticed by: Coverity Prevent analysis tool
* Add better mdoc(7) mark up, clean up wording, better describe the effectstrhodes2005-02-231-6/+23
| | | | | | | | of some arguments. PR: 47705 Based on a patch submitted by: Gary W. Swearingen <swear@attbi.com> Glanced at by: simon
* Update list of utilitys which are implemented externally, Xref info.1,trhodes2005-02-231-16/+25
| | | | | | | clean up some text, bump doc date. PR: 47690 Submitted by: Gary W. Swearingen <swear@attbi.com> (original version)
* Make it more obvious that cap_mkdb(1) is required to rebuild the database.trhodes2005-02-231-0/+7
| | | | | PR: 76981 Submitted by: Lowell Gilbert <freebsd-bugs-local@be-well.ilk.org>
* If what we have is a struct sockaddr_storage * and what we want is ades2005-02-231-8/+8
| | | | | struct sockaddr_storage *, there's no point in casting it prematurely to a struct sockaddr *. This unbreaks WARNS=6 on sparc64.
* Fixed warnings and bump WARNS to 6.ru2005-02-232-25/+14
|
* Bump WARNS to 6.ru2005-02-231-1/+1
|
* Simplify steps necessary to cross-install -CURRENT onto aru2005-02-231-4/+2
| | | | | separate partition. (Take advantage of "make distribute" installing /boot/device.hints.)
* remove dead codesam2005-02-231-4/+0
| | | | | Noticed by: Coverity Prevent analysis tool Reviewed by: silby
* eliminate potential null derefsam2005-02-231-1/+0
| | | | | Noticed by: Coverity Prevent analysis tool Reviewed by: jhb
* Reword the HARDWARE section, so it can be used in the autogeneratedbrueffer2005-02-231-1/+3
| | | | hardware notes.
* - make the hardware list look like that of other manpagesbrueffer2005-02-231-2/+2
| | | | | | - fix typo MFC after: 3 days
* Update release notes:hrs2005-02-232-4/+4
| | | | debug.mpsafevm enabled by default on alpha, amd64, and i386.
* - remove OpenBSDisms, add FreeBSDismsglebius2005-02-231-54/+46
| | | | | | | | | | | | - comment out feature, we do not have yet: tcpdumping on pfsync, add a BUGS section - reference carp.4 - dereference bpf(4), tcpdump(7), hostname.if(5) - sort references - tell when pfsync appeared in FreeBSD Reviewed by: mlaier MFC after: 1 week
* Make WARNS=6-clean.des2005-02-232-12/+13
|
* New release notes:hrs2005-02-232-0/+20
| | | | IPFIREWALL_FORWARD_EXTENDED kernel option.
* Note removal of "options CPU_ENABLE_TCC"njl2005-02-231-0/+5
|
* Also remove CPU_ENABLE_TCC from the NOTES build.njl2005-02-231-1/+0
|
* Remove the old p4tcc.njl2005-02-231-270/+0
|
* Implement IoCancelIrp(), IoAcquireCancelSpinLock(), IoReleaseCancelSpinLock()wpaul2005-02-232-5/+260
| | | | | | | | | | | | | | and a machine-independent though inefficient InterlockedExchange(). In Windows, InterlockedExchange() appears to be implemented in header files via inline assembly. I would prefer using an atomic.h macro for this, but there doesn't seem to be one that just does a plain old atomic exchange (as opposed to compare and exchange). Also implement IoSetCancelRoutine(), which is just a macro that uses InterlockedExchange(). Fill in IoBuildSynchronousFsdRequest(), IoBuildAsynchronousFsdRequest() and IoBuildDeviceIoControlRequest() so that they do something useful, and add a bunch of #defines to ntoskrnl_var.h to help make these work. These may require some tweaks later.
* Hook p4tcc up to the module build.njl2005-02-231-1/+1
|
* Remove CPU_ENABLE_TCC and hook the cpufreq p4tcc up to the build.njl2005-02-233-8/+1
|
* Import a rewrite of p4tcc for the cpufreq(4) framework. This includesnjl2005-02-231-189/+197
| | | | | | a bugfix of clearing the On-Demand flag when going back to 100%. It has been tested and works on an IBM R32. Note original work done by Ted Unangst and sobomax@.
* Update release notes:hrs2005-02-232-8/+10
| | | | SMP VFS enabled by default.
* Forced commit to note a repocopy of this file from sys/i386/i386/p4tcc.cnjl2005-02-230-0/+0
| | | | Thanks to: markm
* Update release notes:hrs2005-02-232-2/+4
| | | | add reference to carp(4) manual page.
* Replace "ipfw l", which is now deprecated, with "ipfw list".ssouhlal2005-02-232-2/+2
| | | | Approved by: grehan (mentor)
* Correctly calculate what to do and how to retry a request to a plex whenle2005-02-232-12/+47
| | | | | | | the previous one failed and there are more than one plex in the volume. This could have led to a flood of error messages on the console and probably a deadlock in certain situations.
* Use the LST_FOREACH macro instead of the Lst_ForEach functionharti2005-02-231-40/+25
| | | | | and so get rid of the ForExec helper function by inlining it into For_Run.
* Style: fix indent, use tabs instead of space+tab for aligning things.harti2005-02-231-147/+159
| | | | Add a couple of comments.
* Fix the indendation of some multi-line comments.harti2005-02-231-22/+22
| | | | Noted by: Max Okumoto <okumoto@ucsd.edu>
* - Enable SMP VFS by default on current. More users are needed to turn upjeff2005-02-231-1/+5
| | | | | | | any remaining bugs. Anyone inconvenienced by this can still disable it in the loader. Sponsored by: Isilon Systems, Inc.
* Manpage for CARP from .Ox, with minor modifications.glebius2005-02-232-0/+215
| | | | Obtained from: OpenBSD
* Note that debug.acpi.disabled can also disable the video.trhodes2005-02-231-0/+3
| | | | | | PR: 77693 Tested/submitted by: John Prather <jprather@axon.cdc.uci.edu> MFC: 1 day
* Fix a misplaced .Elkientzle2005-02-231-1/+1
|
* Don't return NULL if there's no error message;kientzle2005-02-231-1/+1
| | | | | | | | return a generic text message instead. (Someday, I'll track down all the places that are generating errors but not recording messages. ;-/ Thanks to: Jaakko Heinonen
* mark timestamp for pending fragmentssam2005-02-231-0/+2
| | | | Noticed by: Jeffrey D. Chung
* They key combinations for Left window and Right window seem reversed, fix.trhodes2005-02-231-2/+2
| | | | PR: 48767
* According to kern_poll.c, you cannot use DEVICE_POLLING with SMP. Add atrhodes2005-02-233-0/+3
| | | | | | | commen about this in every NOTES file which lists DEVICE_POLLING. PR: 46793 MFC: 1 day
* Fix up previous commit by adding prescott and itanium2 CPUs.trhodes2005-02-231-2/+2
| | | | Submitted by: marcel
OpenPOWER on IntegriCloud