summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add appropriate MLINKS for functions documented in libgeom.3phantom2003-02-131-0/+10
|
* Fix some mdoc issues: add .Nd to NAME section, use valid .Lb argument,phantom2003-02-131-15/+16
| | | | use .Fn there appropriate
* FreeBSD 5.x does not provide libskey anymore, remove referencephantom2003-02-131-1/+0
|
* Add 'libgeom' to list of valid .Lb argumentsphantom2003-02-131-0/+1
|
* Acutally document how to make a LINT kernel config, besides telling all itobrien2003-02-131-1/+2
| | | | is gone.
* Implement dlinfo() function.kan2003-02-135-37/+317
| | | | | | | | | | Introdice RTLD_SELF special handle and properly process it within dlsym() and dlinfo() functions. The intention is to improve our compatibility with Solaris and to make a Java port easier. Partially submitted by: phantom
* Add missing include files I forgot about in previous commit.kan2003-02-131-0/+2
|
* The tcp_wrappers function `fromhost()' can fail. In suchume2003-02-131-2/+16
| | | | | | | cases, the `struct sockaddr' will not be allocated. Reported by: nectar MFC after: 2 days
* Remove /usr/lib/elf from a default search path.kan2003-02-133-19/+17
| | | | | | Move xprintf to malloc.c, it is only used there. Make static. Submitted by: phantom
* GC the old tinderbox script.des2003-02-132-91/+0
|
* Remove unnecessary EXPORT_SYMS.simokawa2003-02-131-2/+0
|
* firewire/fwohcisimokawa2003-02-134-50/+75
| | | | | | | | | | | | | - Drain fwohci TX queue first then drain xfer queue which has not started. - Check validity of the received packet length. - Don't allocate too large buffer for xfer receive buf. sbp - Fix panic for some CROM which doesn't have a text leaf. This could fix the PR kern/48129 but no feedback has been gotten from the originator yet. - Put back some M_NOWAIT flags into malloc which could be called in interrupt context for 4-stable.
* Sync to 1.114 of usbdevssanpei2003-02-132-2/+9
|
* Add support SUNTAC Ir-Trinity IS96Usanpei2003-02-132-0/+3
| | | | | PR: 48212 Submitted by: Masaharu FUJITA <m@fjts.org>
* Various spelling and grammar fixesbrueffer2003-02-131-8/+8
| | | | | | PR: 44312 Submitted by: Chris Pepper <pepper@rockefeller.edu> MFC after: 3 days
* Place the logs in the tinderbox directory rather than cwd.des2003-02-131-1/+2
|
* Move away the old log file before starting the tinderbox so we don'tdes2003-02-131-0/+1
| | | | | accidentally post the old log if the tinderbox script failed to start altogether.
* It seems the extra precautions are no longer needed.des2003-02-131-2/+0
|
* - run the tinderbox script in verbose modedes2003-02-131-2/+2
| | | | - use /\bStop\b/ instead of /^\*\*\* Error/ to identify errors
* Add an XXX comment noting that getrusage() accesses p_stats->p_rutjr2003-02-131-0/+1
| | | | and p_stats->p_cru without holding the appropriate locks.
* Missed odd address test when transcribing the Alpha version.grehan2003-02-131-1/+1
| | | | This fixes the checksum problems seen with telnet.
* Add Intel 85x/86x AGP support.anholt2003-02-132-32/+176
| | | | Submitted by: David Dawes <dawes@xfree86.org>
* MFi386alc2003-02-132-18/+6
| | | | Remove kptobj. Instead, use VM_ALLOC_NOOBJ.
* Don't bother to build ficl if NOFORTH is defined.benno2003-02-131-0/+2
|
* Add description about device detaching.simokawa2003-02-131-0/+9
|
* Oops. I mis-remembered about the P4 problems. It was 5.0-DP2 thatpeter2003-02-132-6/+6
| | | | | was shipped with DISABLE_PG_G and DISABLE_PSE, not 5.0-REL. *blush* Disable the code - but still leave it there in case its still lurking.
* Turn of PG_PS and PG_G for Pentium-4 cpus at boot time. This is sopeter2003-02-132-4/+60
| | | | that we can stop turning off PG_G and PG_PS globally for releases.
* Add a 'debug.witness_trace' sysctl (and tunable) when DDB is present.peter2003-02-131-2/+16
| | | | This causes LOR and could-sleep messages to come with a stack trace.
* Print "Stack backtrace:" right before dumping the backtrace. We cannotpeter2003-02-131-1/+2
| | | | expect end users to automatically recognize a stack trace for what it is.
* Show the paritition types that we recognize in human readable format. eg:peter2003-02-131-4/+28
| | | | | | | | | | | | | pluto2# gpt show da0 start end size contents 0 0 1 PMBR 1 1 1 Pri GPT header 2 33 32 Pri GPT table 34 401595 401562 GPT part - EFI System partition 401596 925883 524288 GPT part - FreeBSD ufs partition 925884 9314491 8388608 GPT part - FreeBSD swap partition ... It'll print a plain uuid string for unrecognized types.
* Allow multiple hosts or programs to be named in programthomas2003-02-132-6/+39
| | | | | | | | | | | | | or host specifications, eg: !foo,bar *.* /var/log/only_foo_or_bar.log !-foo,bar *.* /var/log/all_except_foo_or_bar.log Reviewed by: roberto Not objected to by: arch@
* in_pcbnotifyall() requires an exclusive protocol lock for notify functionshsu2003-02-121-7/+7
| | | | which modify the connection list, namely, tcp_notify().
* Simplify the log accumulation code. It turns out that the trick ofdes2003-02-121-5/+6
| | | | | | | | | looking for ^===> can give quite annoying false positives, especially when building kernels, so drop it; the context can be inferred from make's "Stop in /foo/bar/baz" messages anyway. Also add a case that I'd missed the first time around (which happens to be the common case, not the exception...)
* NO_KERNELCLEAN was a booboo.des2003-02-121-1/+0
|
* Welcome tbmaster, TinderboxNG's better half.des2003-02-122-1/+148
|
* Slight cleanup; adjust verbosity; unlink the logfile before opening itdes2003-02-121-7/+8
| | | | to tickle 'tail -F'.
* o Implement C99 classification macros isfinite(), isinf(), isnan(),mike2003-02-1213-102/+220
| | | | | | | | | isnormal(). The current isinf() and isnan() are perserved for binary compatibility with 5.0, but new programs will use the macros. o Implement C99 comparison macros isgreater(), isgreaterequal(), isless(), islessequal(), islessgreater(), isunordered(). Submitted by: David Schultz <dschultz@uclink.Berkeley.EDU>
* Do not do an assignment in a truth test (previous commit) or gcc gives apeter2003-02-121-1/+1
| | | | | | | | | warning which breaks builds. cc1: warnings being treated as errors src/sys/net/bridge.c: In function `bdg_forward': sys/net/bridge.c:931: warning: suggest parentheses around assignment used as truth value *** Error code 1
* Add __unused to the declaration of yyrcsid in a more portable way.davidc2003-02-121-1/+4
| | | | Discussed with: alfred, bde, jmallett, obrien
* Correctly set bio_data in cloned children when cutting up large requests.tegge2003-02-121-1/+1
|
* Sync to 1.113 of usbdevssanpei2003-02-122-2/+30
|
* Add support YAMAHA NetVolante Routerssanpei2003-02-122-0/+13
| | | | | | | | | | NetVolante RTA54i Broadband&ISDN Router NetVolante RTA55i Broadband VoIP Router NetVolante RTW65b Broadband Wireless Router NetVolante RTW65i Broadband&ISDN Wireless Router PR: bin/42574 Submitted by: Yoshihiko Sarumaru <mistral@imasy.or.jp>
* Teach whereintheworld to preserve TinderboxNG log messages.des2003-02-121-1/+5
|
* Implement a handle for efficient implementation of perforations inphk2003-02-122-7/+13
| | | | | | | | | | | | | lower extremities. Setting bit 4 in debugflags (sysctl kern.geom.debugflags=16) will allow any open to succeed on rank#1 providers. This will generally correspond to the physical disk devices: ad0, da0, md0 etc. This fundamentally violates the mechanics of GEOMs autoconfiguration, and is only provided as a debugging facility, so obviously error reports on GEOM where this bit is or has been set will not be accepted.
* Make "CURRENT" the default branch, and special-case it in the updatedes2003-02-121-2/+2
| | | | code so it results in -A rather than -rCURRENT.
* Note that graphics performance on Miata generally is better with thewilko2003-02-121-1/+2
| | | | graphics card in a 64bit PCI slot.
* Minor correction to comment: PNIC and XIRCOM have eeprom, its justimp2003-02-122-2/+2
| | | | non-standard.
* Implement rman_get_deviceimp2003-02-122-0/+7
| | | | | | # I though this was alredy implemented Pointy hat on my head shown by: peter
* Add description about kldload and security note.simokawa2003-02-124-0/+34
|
* MF-p4:imp2003-02-121-80/+154
| | | | | | | | | | | | | Kill the slightly bogus #define for DECODE_PROTOTYPE Be less verbose. Hide most (all I hope) of the CIS parsing behind cardbus_debug_cis (which is set with hw.cardbus.debug_cis=1). This doesn't fix problems with parsing, but should make cardbus less chatty. There appears to be some issues still with the parsing of the CIS, but this won't fix them. Prompted by: scottl
OpenPOWER on IntegriCloud