summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* mdoc(7) police: use the new features of the Nm macro.ru2000-11-20140-480/+486
|
* mdoc(7) police: use the new features of the Nm macro.ru2000-11-20123-326/+334
|
* mdoc(7) police: use the new features of the Nm macro.ru2000-11-206-13/+13
|
* mdoc(7) police: use the new features of the Nm macro.ru2000-11-2094-320/+328
|
* Fix hard sentence break introduced in rev 1.7.sheldonh2000-11-201-1/+2
|
* Add a period missing from rev 1.13.sheldonh2000-11-201-1/+1
|
* Remove blank line introduced in rev 1.13.sheldonh2000-11-201-1/+0
|
* Document the libcompat entry for the .Lb macro.sheldonh2000-11-201-0/+2
| | | | Submitted by: phantom
* Fix broken (sectionless) cross-reference in ref 1.10.sheldonh2000-11-201-1/+1
|
* Fix bug in rev 1.7:sheldonh2000-11-201-1/+1
| | | | Use a paragraph marker (Pp) instead of a blank line.
* Fix a bug that's survived since rev 1.1:sheldonh2000-11-201-1/+2
| | | | | | Don't mark the word "file" up as a pathname in "/etc/group file". For the sake of consistency with rev 1.18, use Nm instead of "Pa /etc/group" and break "file" onto the next line.
* Fix problems introduced in rev 1.16:sheldonh2000-11-201-4/+4
| | | | | | | * Hard sentence break. * Using Nm for the file in the first paragraph made the use of Pa in the second paragraph look silly.
* Fix problems introduced in rev 1.18:sheldonh2000-11-202-4/+4
| | | | | * Broken (sectionless) cross-reference to nsswitch.conf. * Trailing whitespace.
* Add libcompat record for .Lb macro.sheldonh2000-11-201-0/+1
|
* mdoc(7) police: use the new features of the Nm macro.ru2000-11-2018-35/+35
|
* mdoc(7) police: fixed warnings.ru2000-11-201-4/+2
|
* mdoc(7) police: fixed warning.ru2000-11-201-1/+1
|
* mdoc(7) police: Nm -> Fn where appropriate.ru2000-11-2017-69/+66
|
* mdoc(7) police: use the new features of the Nm macro.ru2000-11-206-25/+25
|
* Duh. These have been sitting in my tree since I committed this stuff.julian2000-11-204-0/+116
| | | | | Thes are identical to what I committed except that they had the correct copyright headers. This is what I was SUPPOSED to have checked in..
* Connect the new man4.alpha to the build.sheldonh2000-11-203-0/+12
|
* Change a "while {}" loop to a "do {} while" to allow it to bedeischen2000-11-206-9/+21
| | | | | | | | | | | | | executed at least once, fixing pthread_mutex_lock() for recursive mutex lock attempts. Correctly set a threads signal mask while it is executing a signal handler. The mask should be the union of its current mask, the signal being handled, and the mask from the signal action. Reported by: Dan Nelson <dnelson@emsphone.com> MFC Candidate
* Document the osf1 module.sheldonh2000-11-201-0/+96
| | | | Submitted by: gallatin
* Fix broken cross-reference to linprocfs(5).sheldonh2000-11-201-1/+1
|
* mdoc(7) police: use the new features of the Nm macro.ru2000-11-205-24/+24
|
* mdoc(7) police: use the new features of the Nm macro.ru2000-11-2014-35/+37
|
* Merged from sys/i386/i386/machdep.c revision 1.421.kato2000-11-202-0/+4
|
* mdoc(7) police: use the new features of the Nm macro.ru2000-11-2025-51/+51
|
* Fix typo; s/demon/daemon/ben2000-11-202-2/+2
| | | | | PR: 22955, 22956 Submitted by: Jimmy Olgeni <olgeni@uli.it>
* More aggressively rate limit the growth of soft dependency structuresmckusick2000-11-201-33/+21
| | | | | | | | | | | in the face of multiple processes doing massive numbers of filesystem operations. While this patch will work in nearly all situations, there are still some perverse workloads that can overwhelm the system. Detecting and handling these perverse workloads will be the subject of another patch. Reviewed by: Paul Saab <ps@yahoo-inc.com> Obtained from: Ethan Solomita <ethan@geocast.com>
* Add -lcrypt. This fixes cross-building.marcel2000-11-201-1/+1
|
* Fix cross-building.marcel2000-11-208-24/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | o Move building libperl and miniperl from build-tools to cross-tools. libperl uses MACHINE_ARCH to determine the right configuration, which doesn't match the build machine when cross-building if they are built as build- tools. o Since miniperl needs to be built as a cross-tool, it needs to be installed under /usr/obj so that it can be used (cross-tools have a special object directory to avoid build conflicts. As a downside, you can't easily run cross-tools from their object directory). Remove the install and distribute override targets. To avoid having miniperl installed by installworld, remove it from SUBDIR. o We can't pickup miniperl from the object directory but since it's installed, depend on PATH. This is save, because the makefiles are run with a known path. o Build libperl again as part of the library target. A _libperl variable existed, but it was never defined. o Add chmod to the list of saved tools, because perl conditionally uses it during install. The bootstrap-tools and cross-tools targets are modified to avoid building profiled and shared libraries. While here, have these targets build static binaries instead of shared binaries. Approved by: markm
* Fix MD macros to work for alpha. Without this fix, threads under alphadeischen2000-11-203-12/+12
| | | | | | | | seem to be totally broke. MFC Candidate Submitted by: gallatin
* Accept filters broke kernels compiled without options INET.alfred2000-11-202-7/+20
| | | | | | | Make accept filters conditional on INET support to fix. Pointed out by: bde Tested and assisted by: Stephen J. Kiernan <sab@vegamuse.org>
* o Export cp_time ("CPU time statistics") using SYSCTL_OPAQUE.rwatson2000-11-201-0/+3
| | | | | This removes a reason that systat requires setgid kmem. More to come.
* o Export nchstats ("VFS cache effectiveness statistics") usingrwatson2000-11-201-0/+4
| | | | | SYSCTL_OPAQUE. This removes a reason that systat requires setgid kmem. More to come.
* o Export dmmax ("Maximum size of a swap block") using SYSCTL_INT.rwatson2000-11-201-0/+3
| | | | | This removes a reason that systat requires setgid kmem. More to come.
* Disable calling timeout() when doing bio. It was causing more prolems thanscottl2000-11-191-2/+8
| | | | solving. This will be fixed for real soon.
* Make sbcompress use the new M_WRITABLE macro. Previously sbcompressdwmalone2000-11-192-4/+8
| | | | | | | | | | | | | | could not compress into clusters. This could result in lots of wasted clusters while recieving small packets from an interface that uses clusters for all it's packets. Patch is partially from BSDi (limiting the size of the copy) and based on a patch for 4.1 by Ian Dowse <iedowse@maths.tcd.ie> and myself. Reviewed by: bmilekic Obtained From: BSDi Submitted by: iedowse
* Standardize spelling of "optimization" in commentsdougb2000-11-192-6/+6
| | | | | PR: conf/22622 Submitted by: knu
* When to run the periodic/daily event has had several rounds of discussiondougb2000-11-191-1/+1
| | | | | | | | | | | | over the past couple years. The most recent came to the general consensus that this was the best time, but no one actually made the change, so I'll don my asbestos undies and dive in. Please note that this time was chosen with input from people in various countries with various methods and schedules for switching to and from DST. There is no perfect time to schedule this job that works for everyone, but this time both A) Works for more people, and B) Causes problems for fewer people. And, ultimately, you can always change it if you need to.
* Some gratuitous whitespace changes.brian2000-11-192-16/+22
|
* Describe how to tunnel properly.brian2000-11-192-8/+152
| | | | Requested by: Greg Quinlan <greg@macquarrie.com.au>
* Accept MSCHAPv2 by default.brian2000-11-193-2/+6
| | | | Enable and accept MPPE by default.
* Format string paranoiakris2000-11-193-5/+5
|
* Format string error in warn()kris2000-11-191-2/+2
|
* Use mktemp -t to respect TMPDIRkris2000-11-191-7/+7
| | | | Clean up temporary file at runtime
* Correct typokris2000-11-191-1/+1
|
* Format string paranoiakris2000-11-191-2/+2
|
* Convert various calls to splhigh() to disable_intr() since splhigh() isdfr2000-11-198-28/+34
| | | | now a no-op.
OpenPOWER on IntegriCloud