matt
0d6bda4d21
When returning back to user mode, if the lwp has lost the FPU, not only
...
clear PSL_FP bit (to force a FPU Unavailable exception) but clear
PSL_FE0 and PSL_FE1 so that the FP execption mode is changes to ignore.
This will prevent spurious FP exceptions being made when the running lwp
doesn't own the FPU.
2004-04-04 16:47:02 +00:00
kochi
ee2683e797
Support for PIRQ[E-H], found in recent intel south bridges
...
(ICH2 and later), which fixes PR/23700.
The changes are from Hiroyuki Bessho and Masanori Kanaoka in PR/23700
with a little modification of interrupt router lookup from mine.
2004-04-04 16:06:09 +00:00
mrg
625248bde9
install ippool(5) manual as well. from peter postma in PR#25053.
2004-04-04 15:59:44 +00:00
kochi
41ea3c2a77
add one more PCI ID (ICH4-M).
2004-04-04 15:16:38 +00:00
lha
6f880d33f3
bump minor version on libkrb5
2004-04-04 14:01:05 +00:00
mrg
f79db8d04e
move ipmon's "-D" argument from "command_args" to "ipmon_flags" so that
...
passing an (optional) filename argument (that must come last) works fine
from $ipmon_flags. from PR#25006.
2004-04-04 13:59:36 +00:00
mrg
a2dc58e139
add 587 tcp/udp for submission "Message Submission" protocol; from PR#25028
2004-04-04 12:53:03 +00:00
nakayama
cf7c3ba713
s/__sparc_v9__/__sparc64__/
...
"gcc -m32 -mcpu=ultrasparc" defines __sparc_v9__, so __sparc64__ is
more appropriate to indicate a 64-bit environment.
2004-04-04 11:59:51 +00:00
nakayama
1de145799e
Revert a part of rev. 1.44.
...
OF_getprop can get only the first "reg" property with a statically
allocated buffer, but prom_getprop cannot.
This should fix a "kernel trap 30: data access exception" when you
invoke a pcictl(8).
2004-04-04 11:53:40 +00:00
wiz
522d70a8d4
Remove apostrophe that should not be there.
2004-04-04 10:31:33 +00:00
wiz
2be3546ee6
Use setprogname(); sort options in usage.
2004-04-04 10:29:20 +00:00
mrg
32a2d102bd
redo previous slightly; move the "int unode;" decl inside the
...
if (CPU_ISSUN4D) code block, reducing #ifdef/#endif count by one.
2004-04-04 10:09:41 +00:00
mrg
b32cb935ed
evbsh3 builds Xvfb.
2004-04-04 10:06:24 +00:00
gson
f92c1b091a
Unused variable "unode" caused compiler warning when !defined(SUN4D).
2004-04-04 08:54:29 +00:00
jdc
8510001c69
Add termcap entry for Olivetti M10 and compatibles. From Christian Biere
...
in PR misc/17739.
2004-04-04 07:49:53 +00:00
simonb
374ed5ae2b
Fix bogus gcc -Wuninitialised warning when SYSCALL_DEBUG is enabled.
2004-04-04 05:32:20 +00:00
uwe
81b1f93220
Verbs has to agree in number with their subjects.
2004-04-04 03:46:13 +00:00
uwe
f292fa7af0
Describe GUI elements.
2004-04-04 03:41:03 +00:00
mrg
8808c7e901
create the dhclient.leases file mode 600 for now as it may contain
...
"media" lines that contain wireless network keys, that eg, ifconfig(8)
carefully hides.
this is not a complete solution, but it's OK until one arrives.
approved by mellon@. fixes the problem described in PR#22271.
2004-04-04 02:35:21 +00:00
tsutsui
0e9036c16a
Add ALTENTRY(kernel_text) for pmap(1).
2004-04-04 02:09:34 +00:00
christos
ea764b2823
- add debugging flag
...
- use getprogname everywhere
- fix bug where if no .vacation.db existed, and the first message was not
suitable for reply, vacation would create a 0 length db file, and from
then on it would fail to process.
- handle e-mail address parsing better.
2004-04-04 01:19:35 +00:00
christos
4dae1e8533
document debugging flag.
2004-04-04 01:17:29 +00:00
jonathan
e05bba34d6
Fix mistaken arguments to bge_set_thresh(); the prior revision would
...
pass the bge_softc * to a function expecting the struct ifnet*,
triggering a panic every time the Rx-mitigation value is changed via sysctl.
(Testing via kernel debugger before Andrew's recent sysctl(9) changes
was done with the exact same mistaken argument.)
2004-04-04 00:43:25 +00:00
lukem
9e2ca4378e
Add -I${X11SRCDIR.xc}/extras/expat/lib to CPPFLAGS.
...
Should fix problem Hubert Feyrer was experiencing.
2004-04-04 00:20:45 +00:00
christos
911c325c50
reverse logic in from test; from wiz
2004-04-03 23:57:32 +00:00
christos
103578edc3
fix date and wording; suggested by wiz
2004-04-03 23:56:49 +00:00
pk
af0db768b1
Maintain pmap resident count as pages are mapped and unmapped instead
...
of traversing the page tables each time it's needed.
2004-04-03 23:11:14 +00:00
he
bf8f08004d
Move kvm library spec to Makefile.inc, so that it gets specified
...
after the ipf library, since the ipf library depends on some functions
from the kvm library.
Fixes a build problem observed when building for sun2 (though I
won't claim understanding why this doesn't show up elsewhere).
2004-04-03 22:16:27 +00:00
christos
58fa7a1588
- Fix bug in the determination of apparently-to and delivered-to.
...
- Add -f flag to look in Sender:, From:, and Return-Path: for the sender.
2004-04-03 20:55:13 +00:00
perry
def0fefbb4
I don't do bootblocks any more
2004-04-03 19:51:14 +00:00
matt
4dfb2be423
When a process is being traced (debugged) and a catchable signal arrives,
...
make sure to save its ksiginfo_t for eventual delivery. This makes debugging
SA_SIGINFO signal handlers work.
2004-04-03 19:46:10 +00:00
matt
dfe066e777
Add the notion of an "empty" ksiginfo_t (one where on signo is filled in).
...
Add an initializer for them: KSI_INIT_EMPTY
Add a predicate for them: KSI_EMPTY_P
Don't bother storing empty ksiginfo_t's since they have no information.
Change uses of KSI_INIT to KSI_INIT_EMPTY where no other information other
than the signo is being filled in.
2004-04-03 19:43:08 +00:00
matt
11d24b6c29
Replace memset's of ksiginfo_t with KSI_INIT (which is the proper way to
...
initialize ksiginfo_t structures).
2004-04-03 19:38:04 +00:00
groo
f2d334068a
Let's try that again... one comes from .CURDIR, another set of files
...
comes from .OBJDIR.
2004-04-03 18:18:21 +00:00
groo
291203c667
Don't cd ${.CURDIR}, it's not where the uudecoded objects are.
2004-04-03 17:45:19 +00:00
chs
ec48121fb7
add some SUN4D stuff.
...
zs and zstty no longer need "needs-count" or "needs-flag",
so get rid of those and wild-card the extra zs devices on SUN4D.
2004-04-03 17:43:50 +00:00
chs
89e7b5360f
don't complain about mid == 0 on SUN4D, it's normal there.
2004-04-03 17:42:27 +00:00
chs
8e5882e190
add a bootbus (SUN4D) attachment. from Stephen Sukovich in PR 24199.
2004-04-03 17:42:07 +00:00
chs
81f3e5aec7
fix find_cpus() for SUN4D. from Stephen Sukovich in PR 24198.
2004-04-03 17:41:54 +00:00
christos
46937c5008
Avoid infinite recursion on:
...
echo "foo foo bar bar bar baz" | sed 's/\([^ ]*\)\( *\1\)*/\1/g'
From OpenBSD.
2004-04-03 17:00:00 +00:00
sato
bcd3f3fcab
enable speaker port 12 for NEC MCCS series.
...
reported by http://www.jp.netbsd.org/ja/JP/ml/port-hpcmips-ja/200207/msg00078.html .
2004-04-03 16:29:06 +00:00
wiz
f857cb68ec
Add a useful description for COMPAT_AOUT.
2004-04-03 16:08:54 +00:00
darcy
009fef1bb9
Flesh out description of COMPAT_AOUT as requested by mrg.
2004-04-03 15:47:16 +00:00
wiz
8782dceb13
Comment out /amd and /dump, since they are not there in the
...
default install.
2004-04-03 15:45:36 +00:00
wiz
0adee5f2d3
Grammar fixes; remove a trailing space.
...
XXX: license missing!
2004-04-03 15:24:42 +00:00
wiz
7df565a342
Article improvements.
2004-04-03 15:19:49 +00:00
pk
70e1de69c4
Max data size -> 512MB; default stack size -> 8MB.
2004-04-03 12:39:51 +00:00
pk
5957cb9b16
On sun4c, clip max data & stack size to avoid the MMU hole.
2004-04-03 12:38:14 +00:00
sekiya
49ecfdf2e4
Hook the IMC bus error handler into the ISR, otherwise bus error conditions
...
won't be properly dealt with.
2004-04-03 11:33:29 +00:00
martti
6f941c9322
Added another SB Live! 5.1 soundcard and joystick version
2004-04-03 10:49:13 +00:00