summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* style.Makefile(5).pjd2004-05-221-6/+6
|
* Fix typos in comments.le2004-05-221-9/+9
| | | | Submitted by: Gerhard Gonter <gonter@falbala.wu-wien.ac.at>
* Add a "-r" flag to ktrdump(1) to print relative timestamps when usedrwatson2004-05-222-6/+22
| | | | | | | | with "-t" rather than absolute timestamps. This allows the reader to get a better sense of latency between events, such as time to schedule an interrupt thread from time the interrupt occurred. Assert a copyright on ktrdump.c since I seem to be modifying it more than I thought.
* To date, unwiring a fictitious page has produced a panic. The reasonalc2004-05-224-18/+29
| | | | | | | | | | | | | | | being that PHYS_TO_VM_PAGE() returns the wrong vm_page for fictitious pages but unwiring uses PHYS_TO_VM_PAGE(). The resulting panic reported an unexpected wired count. Rather than attempting to fix PHYS_TO_VM_PAGE(), this fix takes advantage of the properties of fictitious pages. Specifically, fictitious pages will never be completely unwired. Therefore, we can keep a fictitious page's wired count forever set to one and thereby avoid the use of PHYS_TO_VM_PAGE() when we know that we're working with a fictitious page, just not which one. In collaboration with: green@, tegge@ PR: kern/29915
* Spelling and style fixes.marius2004-05-222-22/+22
| | | | Obtained from: NetBSD
* Use unsigned types for the arguments of the atomic(9) operations,marius2004-05-221-4/+4
| | | | | | like described in the man page and done on all other architectures. OK'ed by: tmm
* Switch from BSD-style u_intXX_t to ISO C99 uintXX_t.marius2004-05-222-5/+5
|
* Plug three lock leaks.mux2004-05-222-0/+6
|
* Remove gconcat(8) utility. It was replaced by geom(8).pjd2004-05-213-670/+0
|
* - More clear example description.pjd2004-05-211-4/+4
| | | | - Fix copy&paste bug.
* Force commit to note, that those manual pages were...pjd2004-05-210-0/+0
| | | | Reviewed by: simon
* Add manual pages for gconcat(8), gstripe(8) and gnop(8) utilities.pjd2004-05-216-3/+430
| | | | Supported by: Wheel - Open Technologies - http://www.wheel.pl
* Some wordsmithing and mdoc(7) cleanup.josef2004-05-211-14/+27
| | | | | | Submitted by: Michel Lavondès <fox@vader.aacc.cc.md.us> PR: docs/66823 Reviewed by: simon
* Add a quiet mode to ktrdump(1): if the "-q" flag is used, don't printrwatson2004-05-212-21/+30
| | | | | the pretty text header on top of the output. Simplifies feeding the results of tracing into a script for mechanical processing.
* When the 'f' flag is passed to ktrdump(1), use 40 characters for therwatson2004-05-211-1/+1
| | | | | | "file and line" field consistently; previously, a 32-character field length was used for the table header, which resulted in the header not lining up with the table.
* Cosmetic:yar2004-05-211-2/+6
| | | | | Set capability bits in a consistent way. Add a comment on why the VLAN_MTU stuff comes after ether_ifattach().
* Enter the 1990's and assume that the computer knows what time it is.imp2004-05-211-16/+23
| | | | | | Print the ETA of dump being finished, rather than a cryptic delta time. Also, if we have written more blocks than the tapesize, assume that we are 99.99% done and that we'll be finished 'soon'.
* Fix cutNpasto in last commit.imp2004-05-211-1/+1
|
* Add --dereference as a synonym for -Hkientzle2004-05-211-0/+1
| | | | Pointed out by: Kris Kennaway (unbreaks nspr port build)
* The driver fxp(4) has reception of large frames enabled hardcodedly,yar2004-05-211-0/+1
| | | | so let VLAN_MTU be marked in if_capenable from the beginning.
* Mark the capability of this driver to receive VLAN frames >1500 bytesyar2004-05-211-0/+1
| | | | | | as initially active in if_capenable since it is always on. Reviewed by: simokawa
* MFi386 (1.103 and 1.104: fixed some problems in high resolution profilingbde2004-05-211-31/+15
| | | | | | | | | and improved some comments). Also, made the documented {f,s}uword() functions the standard entry points and the undocumented {f,s}uword64() functions alternative entry points, like {f,s}uword32() for i386's. The bitrot in the comments was a little larger here -- there are new undocumented 32-bit sub-word functions, not just renaming of 16-bit functions from documented ones to undocumented ones.
* Updated and reorganized the comments for the fetch and store families ofbde2004-05-211-21/+10
| | | | functions.
* Fixed high resoultion profiling of fuword32() and suword32(). Use thebde2004-05-211-6/+2
| | | | | standard macro ALTENTRY() instead of a home made incomplete version of it.
* - Change command name from 'config' to 'configure'.pjd2004-05-213-7/+7
| | | | - Bump version number.
* Clear KSE thread flags after KSE thread mode is ended. The side effectdavidxu2004-05-214-2/+8
| | | | | | | | of not clearing the flags for execv() syscall will result that a new program runs in KSE thread mode without enabling it. Submitted by: tjr Modified by: davidxu
* ifdef writing to registers that the base pci standard says areimp2004-05-211-0/+13
| | | | | read-only on D3->D0 power state transition. Add a define to enable them, but include a comment to contact me if there's a problem.
* Upon further review it was decided this piece of the msync(2)kensmith2004-05-211-0/+2
| | | | | | | | | | fixes was applicable to HEAD, originally it was thought this should only be done in RELENG_4. Implement IO_INVAL in the vnode op for writing by marking the buffer as "no cache". This fix has already been applied to RELENG_4 as Rev. 1.65.2.15 of ufs/ufs/ufs_readwrite.c. Reviewed by: alc, tegge
* Add ru_RU.KOI8-R relnotes and build infrastructureden2004-05-2119-0/+1525
| | | | Obtained from: The FreeBSD Russian Documentation Project
* Fixed some style bugs in tdsigwakeup().bde2004-05-211-11/+10
|
* Fix spelling.dfr2004-05-213-13/+13
|
* Correct parsing of Solaris default ACLs.kientzle2004-05-211-4/+6
|
* Added dependency on the miibus module.ru2004-05-211-0/+1
|
* Compeletely rewrite the description of hw.pci.do_powerstate to soundimp2004-05-211-2/+2
| | | | better.
* Improve the English somewhat.imp2004-05-211-1/+1
| | | | Prodded by: ru@
* Ooops, forgot to commit the updated definition for hw.pci.do_powerstateimp2004-05-211-2/+1
| | | | when I committed code that changed its meaning.
* MFp4:imp2004-05-211-3/+7
| | | | | | | | | | Split the baby. For idepci devices, now both legacy mode bits need not be set. We can run an idepci in a split mode. However, it only works better than before, not works. It works better in that when one device is legacy and the other isn't and disabled, we now operate correctly. sos submitted a version of this patch.
* Move pci_do_powerstate up a level. Now it just means 'do not turn devicesimp2004-05-211-3/+6
| | | | | off into d3 state when there's no driver for the device'. This should help suspend/resume in the default case.
* MFp4: o save/restore subvendor, subdevice, vendor, device, baseclass,imp2004-05-211-0/+16
| | | | | | | subclass, progif and revid. While these are typically read only fields, they aren't always read-only. progif is writable for ata devices, for example. It does no harm when they are read only, and helps when they aren't.
* When attaching pccard and cardbus children, there's no need to set theimp2004-05-211-6/+2
| | | | | | | device == NULL on failure. A warning should suffice. # I wrote this back before I understood the unattached but loosely bound # newbus concept...
* Now that we have the resource allocation code in current, the kludgeimp2004-05-212-56/+10
| | | | | | | | to try to allocate things on my parent can be taken out. It duplicates code. Also, add comment about why the power state stuff is here (type 2 devices don't participate in the power state save/restore due to larger Bx issues).
* make the pci power state and resource code a lot less chatty. Theimp2004-05-211-17/+28
| | | | | | | | chattiness was left in for debugging, but now that nearly all of the problems relating to the changes have been fixed, it is only annoying. It is still available via bootverbose. Prodded by: jhb
* Sync to 1.178 of usbdevssanpei2004-05-212-2/+18
|
* add support Kyocera AH-K3001V (cellular phone in Japan)sanpei2004-05-212-6/+36
| | | | | | PR: kern/66779 Submitted by: Togawa Satoshi <toga@puyo.org> MFC after: 1 week
* Delete history.markm2004-05-200-0/+0
|
* Delete history.markm2004-05-200-0/+0
|
* Delete history.markm2004-05-200-0/+0
|
* Delete history.markm2004-05-200-0/+0
|
* Delete history.markm2004-05-200-0/+0
|
* Delete history.markm2004-05-200-0/+0
|
OpenPOWER on IntegriCloud