mycroft
516d857707
Do fd probing after interrupts are enabled, and use tsleep() for delays.
...
Also try to accept a recalibrate interrupt to terminate the delay -- but that
doesn't seem to work reliably, so do a 2s timeout as well.
2003-09-25 01:05:06 +00:00
mycroft
3114965161
Fix glaring errors in recent changes.
2003-09-25 00:59:31 +00:00
mycroft
3e08e45a55
Fix GCC 3 barfage.
2003-09-24 11:57:44 +00:00
shige
95fa35eb8e
Delete this file because filename includes uppercase letters.
2003-09-24 11:51:19 +00:00
shige
e0a74e8b1e
Rename ibm4xxGPx_autoconf.c to all lowercase filename.
2003-09-24 11:48:18 +00:00
shige
0a36d23137
Copy IBM4xxGPx specific autoconf code from evbppc/walnut/autoconf.c.
2003-09-24 11:47:02 +00:00
yamt
4e746c95f7
in getblk(), don't call allocbuf() for B_LOCKED buffers.
...
LFS misses total size of B_LOCKED buffer (locked_queue_bytes) when
getblk() re-size them.
XXX maybe needs a better fix.
2003-09-24 10:44:44 +00:00
yamt
61d5d4362b
fix a bug of lfs.
...
genfs_getpages() can read in more blocks than it should due to faked filesize
of lfs_gop_size(). it's a security problem and it makes gcc3 "internal error"
to fix this,
- in genfs_getpages(), always calculate diskeof and memeof separately
so that filesystems (in this case, lfs) can use different strategies
for them.
- introduce GOP_SIZE_MEM flag and use it to request in-core filesize.
(it was an intention of GOP_SIZE_READ,
but after the above change _READ is not a straightforward name)
after this, no one uses GOP_SIZE_{READ,WRITE} anymore but leave them for now.
2003-09-24 10:22:53 +00:00
mycroft
ba50df223e
Take a stab at making this compile, at least.
2003-09-24 07:15:52 +00:00
itojun
8d9a724638
on arplookup() failure, nuke cloned route - otherwise outsider could use massive
...
number of bogus ARPs for DoS attack. FreeBSD-SA-03:14.arp
2003-09-24 06:52:47 +00:00
matt
9c8a5009b3
Define va_list as __builtin_va_list for GCC 3.x. Change stdarg macros
...
appropriately. (this is committed from a system run a kernel and userland
built with these changes).
2003-09-24 02:39:56 +00:00
thorpej
544359b9a2
- Make CCB allocation slightly more efficient by changing how the
...
CCB is returned to the caller.
- Make code paths that can use twe_ccb_alloc_wait() use it, and assert
that a CCB is always returned from that function.
- Assert that a CCB is always returned when allocating the reserved CCB
for an AEN fetch.
2003-09-23 23:50:04 +00:00
thorpej
765ddabe83
Add a comment clarifying why we clear TWEF_AEN in twe_reset() now.
2003-09-23 23:10:53 +00:00
thorpej
1cad401c12
Separate the AEN fetching path into its own special path that uses the
...
reserved CCB. This means that all remaining callers of twe_param_get*()
are called from a valid thread context, and thus have no need to use a
reserved CCB. This will allow for further cleanup in a future commit.
2003-09-23 23:08:54 +00:00
mycroft
ab223e99bc
Allow a device to reject CLEAR_FEATURE ENDPOINT_STALL (with a STALL) -- the
...
assumption being that the device will never use a STALL of a non-control pipe,
I guess.
2003-09-23 21:44:42 +00:00
mycroft
df8e298ddb
Small changes -- if your controller clears DRV_BUSY when recalibrate completes,
...
you get lucky and the probe is faster. A more complete fix will require making
the probe use interrupts, since there is no reliable way to poll.
2003-09-23 21:36:07 +00:00
martin
1f68fd5144
Same treatment as libc/hash/sha1.c: ifdef the sparc64 compiler bug
...
workaround for old gcc only.
2003-09-23 20:00:43 +00:00
martin
d505bdda83
Fix rx buffer size bitmask, do not explicitly set burst length and use 1536
...
bytes buffers, so this driver can finally cope with full size ethernet
packets. From Peter Bex.
2003-09-23 19:37:39 +00:00
cl
cf9f62a8e7
catch up with sys___sigaction14 compat_16 rename
2003-09-23 18:54:24 +00:00
cl
0dd1fb3d17
regen
2003-09-23 18:32:12 +00:00
cl
7e40a36c7f
catch up with sys___sigaction14 compat_16 rename
2003-09-23 18:31:03 +00:00
nathanw
b1a13994b7
When the syscall was made a compat syscall and the function name
...
changed to compat_16_sys___sigaction14, the name of the _args
structure chaged as well.
2003-09-23 17:59:48 +00:00
thorpej
f0d728e698
Avoid a type punning warning in the MALLOC_DEBUG case.
2003-09-23 16:36:59 +00:00
bouyer
5a2aac1c7c
Fix a typo that prevented pre-ata drives from working since 1999.
2003-09-23 16:27:10 +00:00
dyoung
847c5ca1c6
More changes following this pattern:
...
#ifdef __FreeBSD__
/* FreeBSD-ism */
#else
/* NetBSD-ism */
#endif
2003-09-23 16:03:46 +00:00
dyoung
20a915d375
Put FreeBSDisms in #ifdef __FreeBSD__, and add the equivalent
...
NetBSDisms.
2003-09-23 16:01:21 +00:00
dyoung
608fc21500
Make ieee80211_unref_node compile.
...
#ifdef __FreeBSD__ a lot of lines, and put the NetBSDisms into the #else
half.
Add ieee80211_node_{dec,inc}ref to ieee80211_node.h.
2003-09-23 15:59:09 +00:00
dyoung
1c4de65baa
Make if_printf more nearly match FreeBSD's, and make it compile.
...
Remove ieee80211_node_{dec,inc}ref (they go to ieee80211_node.h).
2003-09-23 15:57:25 +00:00
shige
dc98452dce
Copy PCI codes for IBM405GPx from evbppc/walnut/pci/{pchb.c,pci_machdep.c}.
2003-09-23 15:30:22 +00:00
shige
03467d74b5
Add devices info for IBM405GPR.
2003-09-23 15:26:46 +00:00
shige
91be153592
Add global cpu_model variable.
2003-09-23 15:25:26 +00:00
shige
e20e959b37
Copy IBM4xxGPx specific autoconf code from evbppc/walnut/autoconf.c.
2003-09-23 15:24:15 +00:00
shige
a8dd07e005
Copy IBM4XX OpenBIOS locore.S from evbppc/walnut.
2003-09-23 15:21:58 +00:00
shige
fc29eb23bf
Add some PCI definitions listed in evbppc/include/walnut.h.
2003-09-23 15:19:05 +00:00
shige
2977d5a89a
Add IBM40x specific machdep functions.
2003-09-23 15:14:02 +00:00
shige
87f629a7b8
Add IBM405GPr PVR.
2003-09-23 15:10:05 +00:00
shige
94959351e8
Add IBM405GPx specific kernel configuration file.
2003-09-23 15:06:40 +00:00
shige
ee990c494d
Move todclock driver from evbppc/walnut/dev.
2003-09-23 15:01:50 +00:00
shige
ff6df75f63
Add on-chip IIC driver.
...
Add some definitions for IIC driver.
2003-09-23 14:56:08 +00:00
shige
9c7b98f8ce
Add new evbppc port.
...
This port is for OpenBlockS266.
OpenBlockS266: IBM405GPr OpenBIOS.
X1226 is a rtc chip connected with IIC bus.
2003-09-23 14:45:12 +00:00
christos
643e2f262c
Regen
2003-09-23 14:34:38 +00:00
christos
b601ca6ba8
__sigaction14 should have been COMPAT_16 a while ago. GC it now.
2003-09-23 14:34:07 +00:00
christos
24915aa1a2
Regen.
2003-09-23 14:33:34 +00:00
christos
cf3a45c8c1
Make this compile and link properly.
2003-09-23 14:33:24 +00:00
pooka
4915f83148
Make isdntel hangup via /dev/isdnteld work by digging out the correct
...
soft context and using it instead of the incorrect one.
Also, don't bother to crash the kernel if we try to hangup a non-connected
dialer, simply return an error.
2003-09-23 14:15:59 +00:00
cl
3337c2e727
move #defines back to frame.h
2003-09-23 11:33:50 +00:00
scw
6b19830ebb
Tweak register usage to shave a couple of instructions off
...
the Xscale code.
2003-09-23 10:01:36 +00:00
mycroft
f9d629fb93
Fix more probe delay and/or failure problems:
...
1) Don't wait for DRQ on an IDENTIFY command -- if it's not set when we see
BSY clear, abort the command and ignore the drive. (Do this by testing
for DRQ in the read/write cases in __wdccommand_intr().)
2) Don't wait for DRQ to deassert when we finish an IDENTIFY (or any other
non-block command that reads data) -- we don't do this for block I/O, and
empirically it doesn't clear on my CF cards at all, causing a pointless 1s
delay.
3) Add comments to some of the delay()s, and add missing ones in wdcreset()
and the WDCC_RECAL in the so-called "pre-ATA" probe.
4) Slightly simplify the reset sequence -- we were doing an extra I/O.
5) Modify the register writability test to make sure that registers are not
overlapped -- this can happen in some weird cases with a missing device 1.
6) Check the error register value after the reset -- if it's not 01h or 81h,
as appropriate (see ATA spec), punt.
Tested with a number of ATA-only, ATAPI-only, mixed ATA-ATAPI, CF, and IDE
disk configurations.
Also remove the SINGLE_DRIVE nonsense again.
2003-09-23 09:19:22 +00:00
simonb
5a696d0850
Fix uninitialised variable introduced with previous change.
...
Patch from mlelstv.
2003-09-23 09:16:07 +00:00
mycroft
07da406c30
GC a structure element.
2003-09-23 09:11:43 +00:00
yamt
67a5559821
cleanup IN_ADIROP/VDIROP handling a little.
2003-09-23 05:26:49 +00:00
yamt
e2fbe9d54d
remove unnecessary externs of lfs_do_flush.
2003-09-23 05:26:12 +00:00
skd
f3de6832d9
Additional definitions as per SATA specifications.
...
Approved by Manuel Bouyer.
2003-09-23 03:55:59 +00:00
itojun
ec5e739b46
extra blank line
2003-09-23 00:03:05 +00:00
cl
c49d4a7e55
pass signo to fownsignal #ifdef ALTQ
2003-09-22 20:49:39 +00:00
thorpej
ddfcdc4f1f
Add support for dynamically attaching and detaching RAID array units.
2003-09-22 18:31:10 +00:00
jandberg
bc88a03488
regen after wsmouse addition
2003-09-22 18:29:05 +00:00
jandberg
05be5081d9
added wsmouse
2003-09-22 18:23:01 +00:00
jandberg
448afe509a
add wscons support to amiga mouse
2003-09-22 18:17:30 +00:00
tsutsui
75ae5bc4d8
Count clock interrupts.
...
clock_intr() functions on sun3 are called directly without dispatchers.
XXX should use evcnt(9)?
2003-09-22 17:53:46 +00:00
matt
8012bf2926
Make COMPAT_xx imply all later COMPAT_yy. (COMPAT_09 implies all whereas
...
COMPAT_14 just implies COMPAT_1[56]). This means COMPAT_xy implies NetBSD
compatibility for NetBSD x.y OR LATER.
2003-09-22 17:26:14 +00:00
tsutsui
e1e026b917
KNF a bit.
2003-09-22 17:21:51 +00:00
tsutsui
da943b106a
Remove #ifdef _KERNEL inside #ifdef _KERNEL.
2003-09-22 17:11:46 +00:00
tsutsui
4c224a510b
- replace a magic number with macro
...
- some KNF
2003-09-22 16:54:14 +00:00
cl
95bf6d89d8
SA_SIGINFO support for m68k (compat svr4)
2003-09-22 14:47:35 +00:00
cl
11af0a3c8d
SA_SIGINFO support for m68k (emul linux)
2003-09-22 14:36:42 +00:00
cl
6821f967f5
SA_SIGINFO support for m68k (compat hpux)
2003-09-22 14:35:58 +00:00
cl
bf9728e0db
SA_SIGINFO support for m68k (compat sunos)
2003-09-22 14:34:57 +00:00
cl
9b18b6fa61
regen
2003-09-22 14:32:15 +00:00
cl
a580f34fa7
SA_SIGINFO support for m68k (compat aoutm68k)
2003-09-22 14:31:27 +00:00
cl
4169237230
SA_SIGINFO support for m68k (port specific changes)
2003-09-22 14:26:57 +00:00
cl
9289d63920
SA_SIGINFO support for m68k
2003-09-22 14:18:33 +00:00
cl
20dfd3bdde
regen
2003-09-22 14:12:29 +00:00
cl
a4186d3dd8
add COMPAT_15/COMPAT_16
2003-09-22 14:11:15 +00:00
christos
6edc0e184e
- pass signo to fownsignal [ok by jd]
...
- make urg signal handling use fownsignal
- remove out of band detection in sowakeup
2003-09-22 12:59:55 +00:00
itojun
cd71ebe2f7
mark security policy that should persist in the system "persistent".
...
this should prevent recently-reported kernel panic when "spdflush" is issued.
2003-09-22 04:47:43 +00:00
jdolecek
1fda9a87e7
kill unused variable in #ifdef ALTQ part, to make this compile
...
with ALTQ configured in
2003-09-22 03:29:34 +00:00
thorpej
2f8976d430
Add TWEIO_{ADD,DEL}_UNIT ioctls (used by 3ware management tools). From
...
FreeBSD.
2003-09-22 01:44:57 +00:00
thorpej
b2b05806b3
Add a few additional control bits and opcodes. From FreeBSD.
2003-09-22 01:28:25 +00:00
thorpej
0448a55234
Improve AEN handling:
...
- Make AENs use the generic code table stuff.
- Add a few more AEN codes (from FreeBSD).
- Correct the context of a few AEN codes (some were listed as
"unit context" when they're really "port context").
- Add a queue of AENs that management tools in userspace can poll
(from FreeBSD).
2003-09-22 01:13:02 +00:00
lha
5b649f6771
Implement nanouptime as a function to avoid 'dereferencing type-punned pointer'.
...
No token after #endif
2003-09-21 20:56:01 +00:00
thorpej
4431e5d2ea
Fetch info about the drives during attach, and inject that info
...
into the msgbuf using aprint_verbose().
2003-09-21 19:46:44 +00:00
matt
1df05a73fe
Fix GCC 3.3.1 nits.
2003-09-21 19:33:13 +00:00
thorpej
a721d80bc9
Report the status of the logical drive (normal, degraded, etc.) at
...
attach time.
2003-09-21 19:33:10 +00:00
matt
6bf111a80e
Fix GCC 3.3.1 nits.
2003-09-21 19:32:37 +00:00
jdolecek
bc83b2f421
make compile after last change (!)
2003-09-21 19:29:10 +00:00
thorpej
21809f0c30
Expose the "param get" functions.
2003-09-21 19:27:27 +00:00
thorpej
291d256789
- Record more information about the array unit, including array
...
type and stripe depth.
- Report array type and stripe depth when attaching the logical drive.
2003-09-21 19:20:18 +00:00
jdolecek
7cea8a1389
cleanup & uniform descriptor owner handling:
...
* introduce fsetown(), fgetown(), fownsignal() - this sets/retrieves/signals
the owner of descriptor, according to appropriate sematics
of TIOCSPGRP/FIOSETOWN/SIOCSPGRP/TIOCGPGRP/FIOGETOWN/SIOCGPGRP ioctl; use
these routines instead of custom code where appropriate
* make every place handling TIOCSPGRP/TIOCGPGRP handle also FIOSETOWN/FIOGETOWN
properly, and remove the translation of FIO[SG]OWN to TIOC[SG]PGRP
in sys_ioctl() & sys_fcntl()
* also remove the socket-specific hack in sys_ioctl()/sys_fcntl() and
pass the ioctls down to soo_ioctl() as any other ioctl
change discussed on tech-kern@
2003-09-21 19:16:48 +00:00
thorpej
4cf2e784e2
Add some helper routines to fetch 1, 2, and 4 byte parameter values.
...
Modeled after code in FreeBSD.
2003-09-21 19:01:05 +00:00
manu
9a42b7a993
Do much more sanity checks when handling entries in the sc_scr array
...
of struct wsdisplay_softc. Unused entries are NULL, and there were
a lot of places where we did not checked that the caller did not
requested an operation on a NULL entry.
While we are there, one bit of KNFification, and make return code more
consistent by always returning the same code (EINVAL) when a screen
number higer than the maximum is requested.
2003-09-21 18:47:59 +00:00
manu
b01f5cf127
Extra sanity checks: all char devices won't have an associated tty.
2003-09-21 18:40:38 +00:00
thorpej
6c5904f215
Add some additional code -> description tables, and add a generic
...
routine to translate code -> description. AENs will be converted
to this mechanism in a future commit.
Partially from FreeBSD.
2003-09-21 18:35:31 +00:00
christos
9b18cdecf8
Now that we have siginfo, use it, instead of pretending to have one.
2003-09-21 17:42:23 +00:00
matt
a57c218722
Need to remove .comment too.
2003-09-21 15:21:03 +00:00
skd
e7e68c0c6d
Backed out single step emulation.
...
Approved by thorpej@netbsd.org .
2003-09-21 15:14:51 +00:00
matt
b9d20d131e
Fix GCC 3.3.1 nits
2003-09-21 15:12:16 +00:00
matt
c280e763ef
Adapt to new wdcattach calling conventions.
2003-09-21 15:11:04 +00:00
matt
749adf24a9
Fix GCC 3.3.1 nits.
2003-09-21 15:10:05 +00:00
cl
cebad0b338
make compile
2003-09-21 14:41:33 +00:00
nisimura
1e9ce6571c
Regen.
2003-09-21 14:27:40 +00:00
nisimura
cfb11c4317
Redo, again.
2003-09-21 14:23:21 +00:00
matt
f9188e9265
Fix some GCC3.3.1 nits (-ffreestanding, #include <lib/libkern/libkern.h>)
2003-09-21 14:17:13 +00:00
nisimura
7fef26674d
Redo the previous fix.
2003-09-21 14:12:09 +00:00
enami
a7c2135a0c
Correctly resurrect the style in previous. While I'm here, also removed
...
whitespace at the end of line in comment.
2003-09-21 11:56:40 +00:00
bouyer
0ca58f3790
Ops, remove a line that escaped out of my local tree.
2003-09-21 11:30:43 +00:00
bouyer
9f91a8476e
The return value from pciide_mapregs_* are ignored; make them return void.
...
Re-add support for HPT366 in compat mode.
2003-09-21 11:20:37 +00:00
bouyer
c6beeca692
Since we can't detect ghost drives in the wdc back-end, resurect
...
WDC_CAPABILITY_SINGLE_DRIVE.
2003-09-21 11:14:00 +00:00
nisimura
e17ee1fa3b
Regen to fix the company name.
2003-09-21 07:59:04 +00:00
nisimura
54daa064f1
Fix the company name. It seems these days the company calls itself
...
"STMicroelectronics" anyway.
2003-09-21 07:45:13 +00:00
matt
533ad6c08b
Fix more GCC 3.3.1 nits.
2003-09-21 06:52:42 +00:00
matt
cd3cb3dc0f
GCC 3.3.1 fixes (-ffreestanding, #include <lib/libkern/libkern.h>)
2003-09-21 06:28:37 +00:00
matt
2d54fd3a9c
Change some type-punning detected by gcc 3.3.1 to (void *).
2003-09-21 00:26:09 +00:00
matt
99c08a490f
For GCC 3.3.1, need to remove .comment too.
2003-09-21 00:19:31 +00:00
cl
65a1bc95c2
add MD part of SA/pthread pagefault handling on pc532
2003-09-20 23:44:07 +00:00
cl
6725716f10
add MD part of SA/pthread pagefault handling on mips
2003-09-20 22:50:52 +00:00
enami
893414b366
Make sure the message from pciide_chipen() starts at the beginning of line.
2003-09-20 22:46:02 +00:00
matt
200ff49b87
Use #ifdef _KERNEL_OPT around #include "opt_XXX.h"
2003-09-20 22:28:19 +00:00
matt
70060b7c61
Add multiple inclusion protection.
2003-09-20 22:26:16 +00:00
matt
e104d5f8a7
Install <hppa/mcontext.h>
2003-09-20 22:25:40 +00:00
matt
467632cd2a
Install <machine/mcontext.h>
2003-09-20 22:25:07 +00:00
bouyer
d9ce986b70
Remove the "Register ghost test". It won't work, because on ATA register
...
of both devices are written, and device 0 will respond for device 1 if
device 1 isn't present. Pointed out by Quentin Garnier.
So the only way to know if device 1 is there or not is to send a command, which
is done later.
Detecting the second device here isn't important and won't speed up the probe.
We just need to know if there is at last one device on the bus.
Fix PR kern/22869 from Julio M. Merino Vidal.
2003-09-20 21:42:47 +00:00
jdolecek
d07d321142
if mounted ASYNC, use delayed writes for metadata, which improves performance
...
of these operations significantly
based on FreeBSD ufs_lookup.c rev. 1.8, by John Dyson
2003-09-20 21:05:53 +00:00
yamt
17f9466183
some comments
2003-09-20 17:51:55 +00:00
cl
b15cfcd9be
correctly define _W_INT ifdef _KERNEL
...
- kernels where sizeof(u_short) != sizeof(int) were broken otherwise
2003-09-20 14:59:56 +00:00
igy
74003aa23a
reading MAC address from EEPROM
2003-09-20 10:11:27 +00:00
jdolecek
ea7271519d
regen - addition of KYE G-07 joystick entry
...
contributed in kern/22837 by Sergey Svishchev
2003-09-20 09:17:36 +00:00
jdolecek
63eb0e1ad8
add entry for KYE G-07 joystick
...
contributed in PR kern/22837 by Sergey Svishchev
2003-09-20 09:16:44 +00:00
christos
5508d7c9b8
print the name of the driver that found the ghost
2003-09-20 07:07:39 +00:00
lukem
9c437ec754
Change LNFILES' to
BUILDSYMLINKS', to more accurately describe its purpose.
...
Per discussion with Simon Gerraty.
2003-09-20 06:20:41 +00:00
itojun
7fda10aea9
separate netkey/key* and netipsec/key*
2003-09-20 05:14:41 +00:00
itojun
17dc15d92a
unifdef -UFAST_IPSEC
2003-09-20 05:12:45 +00:00
thorpej
c7a178e4a9
Add a "show sched_qs" command to dump the run queues. Format is:
...
1 pid.lid (p_comm)
pid.lid (p_comm)
...
If a queue has procs, but no sched_whichqs bit, it shows:
!1 pid.lid (p_comm)
2003-09-20 03:02:03 +00:00
enami
3144acc341
Now wdcattach() is called interrupts enabled, config_interrupts() tries to
...
call ata_raid_check_component() immediately, and panics since DMA setup
isn't done yet. So, defer the call until attach stage is almost done.
Tested with Promise TX2000.
2003-09-20 02:19:36 +00:00
dyoung
28fe486c9f
Allow channels 1-14 in MMK2, for real. Fixes PR 22530 from
...
FUKAUMI Naoki.
2003-09-20 01:03:30 +00:00
christos
8cf3af3092
- support for siginfo_t in ktrace
...
- make sure allocation for ksiginfo_t worked
2003-09-19 22:51:31 +00:00
christos
070899d51e
support for siginfo_t in ktrace
2003-09-19 22:50:02 +00:00
mycroft
d40837608f
1) Use config_interrupts() to attach IDE and ATAPI drives. This eliminates
...
most polling.
2) Clean up some goofiness in pciide -- get rid of the whole "candisable" path
(it's gratuitous) and simplify the code by calling pciide_map_compat_intr(),
*_set_modes() and wdc_print_modes() from central locations.
3) Add a register writability and register ghost test to eliminate phantom
drives more quickly.
2003-09-19 21:35:56 +00:00
martin
1390611ace
Remove workarounds for bugs in the old compiler.
2003-09-19 16:35:31 +00:00
martin
29469edb22
Use -Os (now that it works) for install media.
2003-09-19 16:34:24 +00:00
fvdl
8f8298758f
LONG_BIT should be 64. From Nicolas Joly.
2003-09-19 12:09:51 +00:00
agc
81976735fd
If we're going to reference SA variables in this file, might as well
...
include the header file to define them. From Steve Woodford.
2003-09-19 11:42:20 +00:00
jonathan
5923dedaeb
Fast-ipsec can call ip_output() with a null 'struct socket *so'
...
argument. So check so is non-NULL before doing the pointer-chasing
dance to find the PCB. (Unless and until we rework fast-ipsec and
KAME, to pass a struct in_pcbhdr * instead of the struct socket *).
2003-09-19 00:27:56 +00:00
cl
b826d7b216
add MD part of SA/pthread pagefault handling on powerpc
2003-09-19 00:16:34 +00:00
cl
4fb604b287
add MD part of SA/pthread pagefault handling on sh5
2003-09-18 22:40:04 +00:00
cl
0882aaed34
add MD part of SA/pthread pagefault handling on vax
2003-09-18 22:38:36 +00:00
cl
2c1366cfee
add MD part of SA/pthread pagefault handling on arm
2003-09-18 22:37:38 +00:00
cl
c32b8e7a57
add MD part of SA/pthread pagefault handling on alpha
2003-09-18 22:36:32 +00:00
skd
3736d609a5
Fix for ioapic irq routing. This fixes kern/22728.
...
Approved by fvdl.
2003-09-18 19:31:19 +00:00
ragge
3fc53f17c5
Remove ; after setrunqueue/remrunqueue macro.
2003-09-18 18:38:48 +00:00