ache
571ff11b35
Describe mousechar_start hook
2001-04-19 14:55:32 +00:00
ache
bc687f48be
Add mousechar_start hook
...
Reviewed by: Nick Hibma <n_hibma@qubesoft.com>
2001-04-19 14:53:47 +00:00
asmodai
e1720f746e
Change SYNOPSIS to use mdoc keeps.
...
Obtained from: NetBSD
2001-04-19 14:48:36 +00:00
asmodai
e0f59af9db
Fix some mdoc usage.
...
Obtained from: NetBSD
2001-04-19 14:20:54 +00:00
asmodai
baa2a0efea
Fix english grammar: then does -> than.
...
Obtained from: NetBSD
2001-04-19 14:06:12 +00:00
asmodai
0bcdf5ba8e
Add a comma after e.g.. This syncs us more with NetBSD and looks more
...
aesthetically correct.
Obtained from: NetBSD
2001-04-19 14:02:36 +00:00
sobomax
10bf3e0199
o Install sysctl.conf with all other *.conf files;
...
o put a note into sysctl.conf describing vfs.vmiodirenable knob.
OK'ed by: alfred
2001-04-19 13:47:53 +00:00
orion
783e5f7b88
Add power on to start sequence for 4.x kernels.
...
PR: kern/26255
Submitted by: WATANABE Kiyoshi <aab10490@pop16.odn.ne.jp>
2001-04-19 13:23:50 +00:00
dfr
13de23fccf
Don't unwrap the function descriptor used as the callout argument to
...
fork_exit(). The MI version of fork_exit() needs a real function
descriptor, not a simple function pointer.
2001-04-19 12:35:47 +00:00
dfr
f248baeba9
Don't take the Giant mutex for clock interrupts.
2001-04-19 12:34:23 +00:00
alfred
fe30048943
Remove section from bugs that says we don't support client locks.
...
Pointed out by: Martin Blapp <mb@imp.ch>
2001-04-19 12:29:43 +00:00
asmodai
095629503c
Fix spelling of comparison (was: comparision).
...
Add $FreeBSD$.
Obtained from: NetBSD/OpenBSD
2001-04-19 11:10:51 +00:00
ache
b534ec273a
Add Russian message catalog
...
PR: 26663
Submitted by: Alex Kapranoff <alex@kapran.bitmcnit.bryansk.su>
2001-04-19 10:32:25 +00:00
ru
e95b868ce4
Work around the problem in multi-job make(1).
...
(Fixes ``make -jN buildworld'' breakage in bootstrap-tools.)
Reported by: Steve Kargl <sgk@troutmask.apl.washington.edu>
2001-04-19 09:10:53 +00:00
ume
e40c837b33
Add missing entry for ospf6d.
...
Submitted by: Akihiro Kosakada <pdp@cyber-fleet.com>
2001-04-19 09:10:15 +00:00
alfred
1e50a5f33e
vnode_pager_freepage() is really vm_page_free() in disguise,
...
nuke vnode_pager_freepage() and replace all calls to it with vm_page_free()
2001-04-19 06:18:23 +00:00
imp
f4adb6edec
Indirect off cinfo rather than calling pcic_ functions directly. This
...
means that the pcic98 functionality might now work (I've tested it on
my pcic machine, but not the pcic98). Since these functions are
rarely called, it is unlikely that this will have a measurable impact
on performance.
2001-04-19 05:45:51 +00:00
jkh
c0ad0e9671
Fix bogon with the nodump flag.
...
Submitted by: Dima Dorfman <dima@unixfreak.org>
2001-04-19 01:39:27 +00:00
imp
542c08e70c
First cut at bringing NEC PC98 original pccard bridge code back into
...
FreeBSD. This code doesn't work just yet, but does compile. We need
to start indirecting via the cinfo pointers, rather than directly
calling pcic_*. There may be other issues as well, but you gotta
start somewhere.
Obtained from: PAO3
2001-04-19 00:04:08 +00:00
bmilekic
b857e0ac23
Fix inconsistency in setup of kernel_map: we need to make sure that
...
we also reserve _adequate_ space for the mb_map submap; i.e. we need
space for nmbclusters, nmbufs, _and_ nmbcnt. Furthermore, we need to
rounddown, and not roundup, so that we are consistent.
Pointed out by: bde
2001-04-18 23:54:13 +00:00
bmah
f4abc7a864
Note support for 3ware Escalade 7000 series. Note MFC of new TCP ISS
...
randomization, tail(1) large file support.
2001-04-18 22:48:04 +00:00
alfred
3405c2ccfa
Check validity of signal callback requested via aio routines.
...
Also move the insertion of the request to after the request is validated,
there's still looks like there may be some problems if an invalid address
is passed to the aio routines, basically a possible leak or having a
not completely initialized structure on the queue may still be possible.
A new sig macro was made _SIG_VALID to check the validity of a signal,
it would be advisable to use it from now on (in kern/kern_sig.c) rather
than rolling your own.
PR: kern/17152
2001-04-18 22:18:39 +00:00
jhb
a222601bea
Convert the protection of hte i8254 from critical_enter/exit like it is
...
on the x86.
2001-04-18 21:47:48 +00:00
wilko
711c802cb1
DS20 embedded Adaptec SCSI chips are unfortunately not enabled when SRM
...
5.9 is installed.
2001-04-18 21:46:18 +00:00
alfred
9b2d5fc044
remove debug code left in by accident
2001-04-18 21:41:27 +00:00
imp
87e8621c52
Back out 1.103. It wasn't approved by the owner of the file and
...
introduced style bugs.
Submited by: bde
2001-04-18 20:57:43 +00:00
joerg
66840d0239
``An undocumented feature is a bug.''
...
Turn on my asbesto suit, and document the DD and Wizard mode menu
keys. It's a nuisance to always have to look them up in the source
code when needed.
2001-04-18 20:26:28 +00:00
alfred
e6ee97803e
Protect pager object creation with sx locks.
...
Protect pager object list manipulation with a mutex.
It doesn't look possible to combine them under a single sx lock because
creation may block and we can't have the object list manipulation block
on anything other than a mutex because of interrupt requests.
2001-04-18 20:24:16 +00:00
jhb
82131f7a66
Back out the previous revision as it causes random sig 11's to userland
...
processes until a better fix is found.
Submitted by: gallatin
2001-04-18 17:17:55 +00:00
ru
fe80a1fb97
mdoc(7) police: update referenced standard name.
2001-04-18 16:01:43 +00:00
ru
2d1b95a96f
mdoc(7) police: normalize .Nd.
2001-04-18 15:54:10 +00:00
ru
16a48734c9
mdoc(7) police: fix markup.
2001-04-18 15:43:06 +00:00
dfr
03a0655e15
Don't panic when we try to modify the kernel pmap.
2001-04-18 15:08:37 +00:00
dfr
ea79003dd8
Print an approximation of the function arguments in the stack trace.
2001-04-18 15:07:56 +00:00
dfr
5142414afb
Implement a simple stack trace for DDB. This will have to be redone
...
if/when we change to a more modern toolchain.
2001-04-18 14:15:45 +00:00
dfr
4ecfe212ec
Record the right value for tf_ndirty for kernel interruptions so that
...
we can examine the interrupted register stack frame in DDB.
2001-04-18 14:10:43 +00:00
ru
dca2cb11d9
mdoc(7) police: use .Fx.
2001-04-18 13:39:57 +00:00
ru
13593bc9b1
mdoc(7) police: use .Fx.
2001-04-18 13:24:18 +00:00
ru
7d4b08864a
mdoc(7) police: fix markup.
2001-04-18 13:16:47 +00:00
ru
8c5fa3b175
mdoc(7) police: use .Fx where appropriate.
2001-04-18 13:14:47 +00:00
ru
889eeac6e7
mdoc(7) police: fixed whatis(1) entry.
2001-04-18 12:56:15 +00:00
deischen
5e6e0f0b7b
Typo; fix open() so that it is not a cancellation point when called
...
from libc.
2001-04-18 12:42:11 +00:00
deischen
9b1e997b4c
Reinstall the alternate signal stack after a fork.
...
PR: 25110
Tested by: knu
2001-04-18 12:40:30 +00:00
ru
28cc9e1ba4
Add groff to bootstrap-tools.
2001-04-18 12:20:28 +00:00
ru
c76108416e
Add missing -mtty-char for MANBUILDCAT.
2001-04-18 12:13:08 +00:00
tanimura
546a3cb874
Reclaim directory vnodes held in namecache if few free vnodes are
...
available.
Only directory vnodes holding no child directory vnodes held in
v_cache_src are recycled, so that directory vnodes near the root of
the filesystem hierarchy remain in namecache and directory vnodes are
not reclaimed in cascade.
The period of vnode reclaiming attempt and the number of vnodes
attempted to reclaim can be tuned via sysctl(2).
Suggested by: tegge
Approved by: phk
2001-04-18 11:19:50 +00:00
ru
ad298e18d8
Synch with devascii/R.proto, RFC 1489, and groff_char(7).
2001-04-18 09:22:51 +00:00
alfred
6d135b3afa
NFS module now requires nfs_lock.c
2001-04-18 08:33:52 +00:00
ru
03fd77f5a8
mdoc(7) police: uppercase document title.
2001-04-18 08:25:26 +00:00
dd
39857d7a3f
List the explanations of the command line arguments in the same order
...
as they're listed in the synopsis (alphabetical).
2001-04-18 07:21:58 +00:00