summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add lt_LT.ISO8859-13ache2002-10-2513-0/+431
| | | | | PR: 44268 Submitted by: Kestutis Paulikas <kestas@elen.ktu.lt>
* Add lt_LT.ISO8859-13ache2002-10-252-0/+6
|
* Hook up early-adopter article to RELNOTESng build.bmah2002-10-253-6/+11
|
* Gah. Ditch elements I inserted while thinking about LaTeX andbmah2002-10-251-20/+23
| | | | | | | substitute normal DocBook. Pure coincidence that this thing built. While here, pull in some more entities so that we can build in the RELNOTESng environment.
* MFP4: Add the "Early Adopter's Guide to FreeBSD 5.0-RELEASE"bmah2002-10-252-0/+432
| | | | | | | | | | from the releng Perforce repository. (Not hooked up to the RELNOTESng build yet.) Makefile#1 article.sgml#6 Reviewed by: re
* Cast si_drv2 to intptr_t instead of int to quiet warnings.jhb2002-10-251-1/+1
| | | | | Tested on: alpha Reported by: marcel (on an ia64)
* Comment describing the semantics of mac_late.rwatson2002-10-259-9/+54
| | | | | | | Trim trailing whitespace. Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories
* Use the newer "+" modifier on output contraints when a register orjhb2002-10-252-62/+62
| | | | | memory datum is used for both input and output instead of using matching constraints.
* Reduce the GEOM verbosity under bootverbose to something more sufferable.phk2002-10-255-11/+26
| | | | | | | This is not quite the set of information I would want, but the tree where I have the "correct" version is messed up with conflicts. Sponsored by: DARPA & NAI Labs.
* Don't copy td_md. Instead, let the MD code handle it just like itjhb2002-10-251-3/+2
| | | | | | | handles the MD fields of all the other MD portions of proc-related structures. Tested on: i386, alpha, sparc64
* Note that the sched_lock protects md_ldt of struct mdproc.jhb2002-10-252-2/+2
|
* - Rename the DDB specific %z printf format to %y.mux2002-10-253-6/+15
| | | | | | | | | | - Make DDB use %y instead of %z. - Teach GCC about %y. - Implement support for the C99 %z format modifier. Approved by: re@ Reviewed by: peter Tested on: i386, sparc64
* Provide a bit of anti-foot-shooting protection. Make sure that in thepeter2002-10-251-0/+7
| | | | | | | non-cross cases without DESTDIR, that the bin/sh that we're about to install works. Otherwise, a 'make installworld' without having already rebooted with a post-signal-fix kernel is a rather big disaster when important things like /bin/sh coredump.
* Finish fixing the 5.x FPU code for dealing with signal handlers.peter2002-10-253-0/+3
| | | | Obtained from: bde
* No need for this config file; games are gone.markm2002-10-251-20/+0
|
* Split 4.x and 5.x signal handling so that we can keep 4.x signalpeter2002-10-2543-221/+1182
| | | | | | | | | | | | | | | | handling clean and functional as 5.x evolves. This allows some of the nasty bandaids in the 5.x codepaths to be unwound. Encapsulate 4.x signal handling under COMPAT_FREEBSD4 (there is an anti-foot-shooting measure in place, 5.x folks need this for a while) and finish encapsulating the older stuff under COMPAT_43. Since the ancient stuff is required on alpha (longjmp(3) passes a 'struct osigcontext *' to the current sigreturn(2), instead of the 'ucontext_t *' that sigreturn is supposed to take), add a compile time check to prevent foot shooting there too. Add uniform COMPAT_43 stubs for ia64/sparc64/powerpc. Tested on: i386, alpha, ia64. Compiled on sparc64 (a few days ago). Approved by: re
* Change method to determine base memory size.iwasaki2002-10-252-86/+110
| | | | | | | | | | Try INT 15H/E820H first, then fall back to the old compatibility method (INT 12H). This is a workaround for newer machines which have broken INT 12H BIOS service implementation. Reviewed by: -current ML MFC after: 3 days
* #include <geom/geom.h> to get proper prototypes. Contrary to my fears wephk2002-10-251-10/+12
| | | | | | | | | | | seem to have all the prerequisites already. Call g_waitidle() as the first thing in vfs_mountroot() so that we have it out of the way before we even decide if we should call .._ask() or .._try(). Call the g_dev_print() function to provide better guidance for the root-mount prompt.
* Add a g_dev_print() function which prints all the /dev entries GEOMphk2002-10-252-0/+17
| | | | know about.
* Initialize tick_MHz and related variables much earlier. After the lasttmm2002-10-253-13/+17
| | | | | | | revision of tick.c, this was done at SI_SUB_CLOCKS, which is too late because tick_MHz is required for DELAY() to work. Reviewed by: jake
* Fix iommu_dvmamap_sync() to use the right address when flushing thetmm2002-10-251-1/+1
| | | | | | | | streaming cache. This bug could have the potential to cause data corruption on systems with Psycho U2P bridges (Sabre bridges have no streaming cache). However, due to the usual driver architecture, it is believed that corruption did occur only in rare cases (if at all).
* Don't check IFF_RUNNING in previous change.simokawa2002-10-251-2/+2
| | | | | The flag is sometimes unset if the interface has IPv6 link-local address only.
* - scopeid is u_int32_tume2002-10-251-14/+21
| | | | | | | - strtoul pedant. pointed out by deraadt Obtained from: KAME MFC after: 1 week
* Explicitly list architectures supporting sysinstallphk2002-10-251-1/+4
|
* Loose the g_dev_clone() noise.phk2002-10-251-1/+0
|
* - kill strcpyume2002-10-251-67/+56
| | | | | | | | | | | | | | - port range check need to be done before htons. from deraadt - %d/%u audit - correct bad practice in the code - it uses two changing variables to manage buffer (buf and buflen). we eliminate buflen and use fixed point (ep) as the ending pointer. - use snprintf, not sprintf - pass correct name into q.name. from lukem@netbsd - sync comment Obtained from: KAME MFC after: 1 week
* Greatly improve readability of trap() by using a table to convert betweenjake2002-10-253-239/+165
| | | | | | trap types and signals to send. Rearrange KASSERTs to better handle faults early before curthread is setup, or in the case that it gets corrupted or set to 0.
* Add newly-added sripts to FILES.thomas2002-10-251-1/+3
| | | | Reviewed by: roberto
* Add a new /etc/periodic/security script to check for packetsthomas2002-10-253-0/+63
| | | | | | | | rejected by ipfilter (510.ipfdenied), and a corresponding periodic.conf knob (daily_status_security_ipfdenied_enable). Reviewed by: roberto Approved by: re@
* Factor out code across various /etc/periodic/security scripts into athomas2002-10-256-99/+101
| | | | | | | separate file, /etc/periodic/security/security.functions. Reviewed by: roberto (mentor) Approved by: re@
* MFS: Update sysinstall text for the number and size or ports in the portsbmah2002-10-251-2/+2
| | | | | | collection. src/release/sysinstall/dist.c 1.175.2.29 -> 1.175.2.30
* add manpages for FireWire.simokawa2002-10-251-0/+3
|
* Make the example "assertion failure" message match reality.tjr2002-10-251-1/+1
|
* Use an internal buffer for the result when the first argument is NULL.tjr2002-10-251-0/+4
|
* suspend thread only when it can be interrupted.davidxu2002-10-252-2/+4
|
* let thread_schedule_upcall() handle idle kse.davidxu2002-10-252-4/+16
|
* Update the Standards section for the addition of the C99 va_copy macro.tjr2002-10-251-2/+4
|
* Goodbye and good riddance!phk2002-10-251-80/+0
|
* Confirmed kill: "Bogon #1" is dead, killed by DEVFS.phk2002-10-252-76/+0
|
* Comment out more MAKEDEV bogosity ("BOGON #1" as Jordan put it :-)phk2002-10-252-4/+4
|
* Preprocess with tbl(1) only where needed.ru2002-10-255-3/+6
|
* Don't preprocess with tbl(1).ru2002-10-251-2/+0
|
* Kill the remnants of BOG.ru2002-10-252-26/+0
|
* Preprocess with tbl(1).ru2002-10-252-0/+3
|
* Don't preprocess with tbl(1).ru2002-10-251-1/+0
|
* Don't preprocess with tbl(1).ru2002-10-251-1/+0
|
* Disable the kernacc() check in mtx_validate() until such time that kernaccphk2002-10-252-0/+10
| | | | | | | | | does not require Giant. This means that we may miss panics on a class of mutex programming bugs, but only if running with a Chernobyl setting of debug-flags. Spotted by: Pete Carah <pete@ns.altadena.net>
* Simplify.ru2002-10-251-6/+4
|
* Don't preprocess with tbl(1).ru2002-10-251-1/+0
|
* Preprocess with tbl(1).ru2002-10-251-0/+1
|
OpenPOWER on IntegriCloud