summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Resurrect documentation of chflags(2)'s SF_ARCHIVED.rse2000-09-221-2/+2
| | | | | PR: 21428 Reviewed by: ben
* Remove a forgotten linebrian2000-09-221-1/+0
| | | | Submitted by: Philipp Mergenthaler <un1i@rz.uni-karlsruhe.de>
* "zope language" --> "zope platform".sobomax2000-09-222-2/+2
| | | | Requested by: asami
* Add french and zope.asami2000-09-222-0/+4
|
* Add ports-french.asami2000-09-223-0/+3
|
* Fixing a sorting error in teh subsystem list. 7 < 8, not 8 < 7.jhb2000-09-221-1/+1
|
* Teach MTX_EXIT_RECURSE that the recursion count is a 32-bit integer,jhb2000-09-222-6/+6
| | | | not a 16-bit one.
* Typo in comment (decent performances -> decent performance).wpaul2000-09-221-1/+1
|
* Make pcn_miibus_readreg() latch onto the first PHY that it finds (aswpaul2000-09-222-1/+5
| | | | | | | | | a result of mii_phy_probe()) and use that rather than hardcoding a constant. The hardcoded way was too specific to the particular card I had and caused PHY probing to fail on at least one laptop with a built-in AMD chip. Reported by: rjk@grauel.com (Richard J Kuhns)
* Create an event (idle_event) which is invoked every time around themsmith2000-09-221-0/+7
| | | | | idle loop. Machine-dependant code can elect to eg. take power-saving actions when this event is invoked.
* Implement halt-on-idle in the !SMP case, which should significantlymsmith2000-09-225-30/+74
| | | | reduce power consumption on most systems.
* Make the EVENTHANDLER mechanism MP-safe. Events can now be invokedmsmith2000-09-222-30/+67
| | | | without holding the Giant lock.
* o Merge in changes to the NetBSD sources:imp2000-09-222-8/+93
| | | | | | | | | | | | | | | | | | | | | | pcmciavar.h 1.9->1.12 1.12, enami, minor coding nits 1.11, augustss, (pcmcia_devinfo NRFB) 1.10, cgd, add generic lookup routines pcmcia.c 1.14->1.23 1.23, drochner, (probe code printing, NRFB) 1.22, augustss, KNF 1.21, uch, (hpcmips tweaks NRFB) 1.20, chopps, remove bogus debug 1.19, enami, minor coding nits 1.18, augustss, (pcmcia_devinfo NRFB) 1.17, nathanw, LP64 printf fixes 1.16, cgd, add generic lookup routines 1.15, aymeric, printf fixes NRFB == not relevant to freebsd o Expand the pccard matching routines to include the ability to match against the CIS strings since our current driver database is based on that. o Add lots more ivars to get the information necessary to snag these values.
* Implement IPv6 support. Also restructure the way multi-homed hostswollman2000-09-221-57/+91
| | | | are treated, regardless of protocol.
* Delete a bogus reference to T/TCP -- the problem still exists on Standardwollman2000-09-221-3/+1
| | | | TCP.
* Make some small line-break tweaks.wpaul2000-09-211-4/+4
| | | | Submitted by: Sheldon Hearn
* Fix a race in ASR_ccbAdd and ASR_ccbRemove, which were both manipulatingmsmith2000-09-211-0/+11
| | | | | | the ccb queue without masking interrupts. Submitted by: Petr Lampa <lampa@fee.vutbr.cz>
* some copyright cleanupsmjacob2000-09-2112-58/+25
|
* Add the PCI device ID for the on-board ethernet controllers on thewpaul2000-09-214-0/+8
| | | | | Intel 815E motherboard, which I believe is an i82562. Seems to work just fine with the fxp driver.
* o Permit UFS Extended Attributes to be associated with special devicesrwatson2000-09-211-0/+8
| | | | | | and FIFOs. Obtained from: TrustedBSD Project
* o Add two constants mapping ACLs into extended attribute namesrwatson2000-09-211-8/+9
| | | | | | | o Add '.'s in comments to style(9)-ify them. o Clean up whitespace a little. Obtained from: TrustedBSD Project
* o Bring VOP_GETACL(9) and VOP_GETEXTATTR(9) man page "LOCKS" sections inrwatson2000-09-212-4/+2
| | | | | | | sync with the implementation. Vnode locks *are* required for these operations, as some underlying implementations will require them. Obtained from: TrustedBSD Project
* o Change locking rules for VOP_GETACL() to indicate that vnode locksrwatson2000-09-214-4/+13
| | | | | | | | | | must be held when retrieving ACLs from vnodes. This is required for EA-based UFS ACL implementations. o Update vacl_get_acl() so that it does appropriate vnode locking. o Remove static from M_ACL malloc define so that it is accessible for consumers of ACLs other than in kern_acl.c Obtained from: TrustedBSD Project
* Allocate all memory (including within node constructors) with M_NOWAITarchie2000-09-2115-22/+22
| | | | instead of M_WAITOK, to allow for maximum flexibility.
* Allocate memory with M_NOWAIT instead of M_WAITOK because we couldarchie2000-09-211-1/+1
| | | | be called in an interrupt context.
* Add a couple of debug register helper functions to assist in settingbsd2000-09-219-4/+269
| | | | | | and clearing watchpoints. Reviewed by: jwd@FreeBSD.org, -hackers@
* Inintialize the queue index stuff from what the f/w sends back- justmjacob2000-09-211-3/+4
| | | | | | in case it's insane enough to not do what you tell it to. Print out (LOGINFO level) initiator ID.
* Remove unneeded includemjacob2000-09-211-2/+0
| | | | (from phk@freebsd.org)
* Fixed the `mysterious blank lines' problem. This was due to unconditionalru2000-09-213-5/+5
| | | | | | | | | | | | | | | | | use of the .ne requests. groff(1) apparently inserts some virtual trap at the end of each page, and this was causing the .ne request to output extra lines. Solution is to only use them in troff mode. Also fixed a related bug in .It macros, where it would insert a page break in the middle of a sentence. Removed the end of page trap in nroff mode, as this causes .sp requests to sometimes eat the space due to the nearby trap. Removed blank line that appeared as the first line on each nroff-formatted manual page. Obtained from: NetBSD
* remove unneeded includesmjacob2000-09-211-4/+0
| | | | (obtained from phk@freebsd.org)
* comment vfs_export functions, requested by: eivindalfred2000-09-212-2/+24
|
* add ``check free resource rage code''sanpei2000-09-213-10/+32
| | | | for PC-Card which has no address in cis.
* Fix LINT breakage by options ACPI_NO_OSDFUNC_INLINE.iwasaki2000-09-214-8/+14
| | | | | | | Also space/tab-fix in NOTE. Grrr, my bad. Pointed-out by: eivind
* Remove unneeded #include that was a remnant of an earlier version oftruckman2000-09-211-1/+0
| | | | | | my uidinfo patch. Found by: phk
* The final entry should be `required', not `sufficient'.ru2000-09-211-1/+1
|
* Add in and document two new debugging options used in the mutex code:jhb2000-09-212-0/+16
| | | | SMP_DEBUG and WITNESS.
* Fixed the calculations with UDP header length field.ru2000-09-212-4/+4
| | | | | | | The field is in network byte order and contains the size of the header. Reviewed by: brian
* Add in documentation and examples of the KTR kernel config options.jhb2000-09-212-0/+38
| | | | Prompted by: phk's kernel include script
* Remove unneeded includes.markm2000-09-218-18/+0
| | | | Submitted by: phk
* Fix PR #21245: handle wep keys correctly and pretty print hex keyswpaul2000-09-212-36/+42
| | | | | as appropriate. Nick: this sort of does what your changes did, except the hex/text printing is done automatically using isprint().
* Fix buffer overflow when DISPLAY is longer than 43 characters. Thisimp2000-09-201-4/+7
| | | | | | | | | | is not exploitable because telnet doesn't run with elevated privs. Didn't fix all the other potential buffer overflows. Would be a good task for someone who has lots of time to carefully study each case because cut and paste solutions are dangerous for this code base. Added $FreeBSD$ in the same way that command.c did it.
* Add new function in AML interpreter; aml_invoke_method().iwasaki2000-09-208-12/+32
| | | | | | | | Also remove unneeded includes in aml_obj.c and aml_parse.c. This new function takes 'struct aml_name *' as a argument rather than 'char *' where aml_invoke_method_by_name() does. It's worth to have these two interfaces in many cases.
* o Remove 9 unnecessary includes.imp2000-09-203-12/+8
| | | | | | | | o Add Vpp power at 5.0V rather than 0. Setting it to zero violates the pccard spec. Most pcic devices in use today don't let us violate the spec, but some older ones do. Bill Paul sent this to me a long time ago and I thought I'd commit it before now. o Add some debug stuff hidden behind bootverbose.
* Fix a typobrian2000-09-201-1/+1
| | | | Spotted by: Manfred Antar <null@pozo.com>
* No need to generate opt_compat_oldisa.himp2000-09-201-5/+1
|
* remove 5 unnecessary includes, per phk's scriptimp2000-09-204-5/+0
|
* Remove 7 unnecessary includes frmo phk's scriptimp2000-09-204-8/+0
|
* Remove 8 unnecessary includes from phk's scriptimp2000-09-202-8/+0
|
* IN_CLASS*() macros assume host order and s_addr is network byteps2000-09-201-2/+2
| | | | order, so we must convert them to host order.
* Add support for the "nullconsole" console type, for systems witharchie2000-09-207-1/+109
| | | | | | | | neither a video console nor a serial port. Use it if the RB_MUTE flag is set. Submitted by: Doug Ambrisko <ambrisko@whistle.com> Reviewed by: jhb
OpenPOWER on IntegriCloud