itojun
ce5d37eae2
use bounded string op
2003-08-13 07:34:09 +00:00
itojun
4d754cb259
in6_pcbrtentry() now returns IPv4 rtentry if in6pcb is connected to IPv4 mapped
...
address. PR kern/22431 from Andreas Gustafsson
2003-08-13 04:59:34 +00:00
atatat
4e34961a55
Jobs specified for @reboot are only popped into the job queue at cron
...
startup time ("reboot" of cron, not the system), so okay_to_go() must
always say they are good to go. Otherwise they never will. All other
meta-timetags pertain to regular times, so they are (or were)
unaffected.
Problem noted by tron and successfully assigned to me by perry.
2003-08-13 03:51:15 +00:00
itojun
e1e0321817
use bounded string op
2003-08-13 02:51:20 +00:00
itojun
c61230d99d
fix bad example of select() - first arg shouldn't be FD_SETSIZE. from openbsd
2003-08-13 02:07:06 +00:00
itojun
eb24db53ab
style; total size of buf is (num + 3)
2003-08-13 01:29:41 +00:00
christos
3a06209abb
make this compile again.
2003-08-13 01:13:41 +00:00
lukem
253d3ec330
make "extra files" a fatal error again, based on various feedback.
...
i'll consider adding an optional switch and associated build infrastructure
to enable the "non fatal extra files" functionality instead.
2003-08-13 00:03:00 +00:00
scw
031f751a7d
Lmapped_start is used in db_trace, so mark as a 'function'.
2003-08-12 21:48:07 +00:00
martin
c52fa54bfe
Make it compile on alpha.
2003-08-12 19:49:27 +00:00
dogcow
9217e5df47
add the smoot
2003-08-12 19:03:32 +00:00
matt
1d1029332d
Remove this. The architecture specific ones are now used.
2003-08-12 18:35:51 +00:00
matt
47483092bd
Cleanup/rework cpu_switch*, switch_exit, Idle routine. Remove pcb_psl
...
since it was write-only. When setting up a process, make sure the fake
callframes are properly linked together.
Only lower SPL when in Idle loop. Raise spl to previous level (which would
be IPL_SCHED) when exiting Idle loop. Never lower SPL anyplace else.
2003-08-12 18:34:47 +00:00
dsl
55a20c5130
Correct boundary conditions for drive table for 'systat io num'.
...
Correct fix for bin/18823 (which was incomplete and wrong!)
2003-08-12 17:16:53 +00:00
skrll
640826818b
s/DL_LAZY/RTLD_LAZY/
2003-08-12 16:15:33 +00:00
matt
b986a8c215
D'oh! The PCB can't be accessed with the MMU off. So get the pmap pointer
...
*before* disabling the MMU.
2003-08-12 15:40:02 +00:00
pk
87d5e88b94
sun4/sun4 mem_fault(): on kernel faults we now need to try to page in a
...
a `pmeg' too. See also sparc/pmap.c, rev 1.265.
2003-08-12 15:34:32 +00:00
pk
98d3a23993
Extensive rewrite of the sun4/sun4c pmap code to allow non-wired kernel
...
mappings to use the pre-emptable pool of `PMEG' MMU resources.
2003-08-12 15:31:56 +00:00
pk
fe30a2e6c1
Use pmap_remove_all() to flush the cache by context and set a flag to
...
avoid subsequent user space cache flushes by page or segment in pmap_remove().
2003-08-12 15:13:11 +00:00
scw
46fc66f7d8
Adapt to Nathan's recent pt_trapuc/pt_sleepuc change.
2003-08-12 14:01:08 +00:00
scw
10e88b305a
copy{in,out} and kcopy should return success if 'len' is zero.
2003-08-12 13:51:52 +00:00
scw
8d5dbf5382
An FPUEXC leaves the PC pointing to the FP instruction
...
which caused the exception. To avoid an endless loop if
the user is ignoring or catching SIGFPE, adjust the saved
PC to skip over the offending instruction.
XXX: It's not clear that this is the correct behaviour,
XXX: but it's the only way to make sh5 pass the IEEEFP
XXX: regression tests in regress/lib/libc/ieeefp/except.
2003-08-12 13:50:23 +00:00
scw
ac6cbd4ac3
Pop the caller's PIC prologue and push our own, as we can be called
...
by other shared libraries with different GOTs (e.g. libposix).
2003-08-12 13:28:55 +00:00
dsl
66673ac6a2
Fix display of fslevel (was almost always 0)
2003-08-12 13:15:35 +00:00
wiz
c2e074ca4b
Bump date for last.
2003-08-12 12:25:15 +00:00
skrll
cf1a159cd2
Note addition of (working) RTLD_SELF, RTLD_NEXT, RTLD_DEFAULT.
2003-08-12 11:04:49 +00:00
dsl
04dec52c29
Mention and cross reference newfs_lfs and makefs.
2003-08-12 10:29:07 +00:00
dsl
744ee27288
Try looking RF_PROTECTED_SECTORS further down the partition if /boot
...
cannot be found.
Lets the system boot directly from a rad set.
2003-08-12 10:03:03 +00:00
dsl
85b06a40e5
Let boot code include raidframe.h to get RF_PROTECTED_SECTORS.
2003-08-12 10:01:08 +00:00
tls
062dab3c81
Remove RND_FLAG_NO_ESTIMATE and comment claiming we can't estimate (which
...
means "count", in this context) the entropy we're adding because we poll the
device periodically. Sure, we poll it periodically, but it's a hardware
RNG -- the data returned should be random no matter when we read the
register!
2003-08-12 09:46:46 +00:00
wiz
c3404e58ed
latest gcc is 3.3.1.
2003-08-12 09:26:09 +00:00
skrll
d900731978
Resolve dlsym(3) and friends directly so that dlsym(RTLD_NEXT,...) works.
...
Previously dlsym resolved to the version in crt0.o or libc which would
mean that the caller's shared object couldn't be determined correctly
using __builtin_return_address(0).
Mainly from FreeBSD, but adapted by me. Benefits of this solutions are:
- backward comptibility maintained
- existing broken binaries are fixed with a new ld.elf_so
- __mainprog_obj can be removed from crt0.o
- we do the same thing as FreeBSD
Fixes PR 22067.
OKed by Jason and Christos.
2003-08-12 09:18:38 +00:00
dsl
b4c1c6117c
Stop superblock being written to sector 0 for small filesystems.
...
Honour the '-s size' command option.
Allow an LFS filesystem to be created in a file.
2003-08-12 08:41:36 +00:00
bsh
e1cdd07843
use CLZ insn to find a pending interrupt.
2003-08-12 08:24:04 +00:00
matt
a3a18840be
Remove SPILLSTK leftovers.
2003-08-12 05:15:41 +00:00
matt
c0d6cb285d
Nuke ci_curpm and curpm. Nuke pcb_pmreal. Those were use for spill stacks
...
and those no longer exist. for few uses that need CURPM, use CURPCB/PCB_PM
2003-08-12 05:06:53 +00:00
lukem
a66b0c9e9a
Rework to use comm(1) instead of diff(1),
...
and separate "missing files in DESTDIR" (which is fatal)
from "extra files in DESTDIR" (which is now non-fatal).
2003-08-12 04:20:08 +00:00
simonb
658a8c458e
Fix bad use of "sizeof(pointer)" where the length of a buffer was the
...
intention. Fixes problems with least ssh's known_hosts file and factor.
Patch from Berndt Josef Wulf's PR lib/22347.
2003-08-12 03:25:24 +00:00
simonb
0f5220a9e0
Descend into games.
2003-08-12 03:05:20 +00:00
simonb
103942fe21
Add a regression test for factor(6). Just has the Jenny prime for now.
2003-08-12 03:03:20 +00:00
fvdl
8655b27bf5
SA fixes from Stephan Uphoff. Quoting him:
...
The patch below (hopefully) improves some signaling problems
found by Nathan.
It also contains some cleanup of the sa_upcall_userret() function
removing any sleep calls using PCATCH.
Unblocked threads now only use an upcall stack after they
acquire the virtual CPU.
This prevents unblocked threads from stealing all available
upcall stacks.
Tested by Nick Hudson.
2003-08-11 21:18:18 +00:00
fvdl
8c1a2eef97
Fix deadlock issue. Slight variation on patch by Stephan Uphoff.
2003-08-11 21:15:50 +00:00
christos
8229ffad82
Re-add dead files.
2003-08-11 20:58:34 +00:00
christos
b36d5146cd
Import gdb-5.3
2003-08-11 20:31:36 +00:00
christos
4084bd69eb
Import gdb-5.3
2003-08-11 20:21:35 +00:00
jmc
d9556f9ecc
Fix 2 remaining places items are depending on execute permissions coming out
...
from a cvs checkout on scripts.
2003-08-11 19:26:04 +00:00
drochner
657c8bd72c
fix a memory deallocation botch in the realloc-ldt case,
...
plus some cosmetics
from Stephen Ma per PR port-i386/19724
2003-08-11 17:26:24 +00:00
drochner
21fd723e0c
choose ldt positions invidious enough to exercise the
...
kernel's ldt reallocate strategy,
now we can reproduce the problem described in
PR port-i386/19724 by Stephen Ma
2003-08-11 17:19:51 +00:00
drochner
6fb41457ab
arrgh - KERNBASE_LOCORE!
2003-08-11 16:56:46 +00:00
pk
d022b5caad
uao_pagein_page() & anon_pagein():
...
* return failure if the page cannot be retrieved.
* wakeup any waiters when releasing a page after successful page in.
2003-08-11 16:54:10 +00:00