summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* 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
|
* In tdsigwakeup(), use TD_ON_SLEEPQ() rather than TD_IS_SLEEPING() to see ifjhb2004-05-201-1/+1
| | | | | | a thread is on a sleep queue and should have it's sleep aborted. Reported by: Thierry Herbelot thierry at herbelot dot com
* Various style.Makefile(5) improvements.pjd2004-05-206-21/+19
| | | | Inspired by: ru
* Various style.Makefile(5) improvements.pjd2004-05-203-11/+15
| | | | Provoked by: ru
* Update the date.pjd2004-05-201-1/+1
| | | | Requested by: ru
* Remove unneeded lseek(2) hack to position past the 2GB point,hmp2004-05-201-18/+9
| | | | | | | | | use fseeko(3) instead. This commit fixes breakage when `lastcomm matchstring` is run. PR: bin/66765, bin/64568 Submitted by: Dan Nelson <dnelson at allantgroup.com>
* Update the document date.alc2004-05-201-1/+1
| | | | Reminded by: ru@
* In cpu_sched_exit(), we must check vm_refcnt against 0, not 1, sincetmm2004-05-201-1/+1
| | | | exit1() decrements the reference count before calling this function.
* Added "rescue".ru2004-05-201-2/+2
| | | | Submitted by: Kent Hauser <kent.hauser@verizon.net>
* Fixed printf format errors which helped break GUPROF for arches withbde2004-05-201-2/+2
| | | | 64-bit function pointers.
* Initialize the history counter type field in struct gmonparam asbde2004-05-201-0/+4
| | | | | | | threatened in rev.1.10 of usr.sbin/kgmon/kgmon.c more than 2 years ago. kgmon has been recovering from the missing initialization for too long, but the fixup there is ifdefed for i386's and shouldn't be needed for other arches.
* Clean up language.ru2004-05-201-261/+293
| | | | Reviewed by: rik
* MFi386 (1.37: GUPROF calibration macros; only routine adjustments needed).bde2004-05-201-0/+19
|
OpenPOWER on IntegriCloud