bjh21
34b7fde83e
Missing apostrophe. ("authors discretion" -> "author's discretion").
2003-12-31 14:02:08 +00:00
bjh21
b58d17ad68
Forcibly undefining debugging macros is rude, so don't do it.
2003-12-31 13:51:28 +00:00
martin
c54170031d
Include <dev/ata/atareg.h>, so that WDSD_IBM is defined.
2003-12-31 12:46:04 +00:00
martin
63095bc32c
s/NBPG/PAGE_SIZE/ in a comment.
...
From Jeff Ito in PR kern/23935.
2003-12-31 12:34:22 +00:00
martin
572d0edcf8
Descend into siginfo on cleandir always.
...
From David P. Reese Jr. in PR toolchain/23936.
2003-12-31 11:14:25 +00:00
oster
a5c20197a4
Add in a bunch of RF_SIGNAL_COND()'s that were missing. Tidy up
...
a few lines.
2003-12-31 04:13:52 +00:00
oster
abbecc25a2
Left-shift another else{} chunk. No functional changes.
2003-12-31 04:00:01 +00:00
oster
b7bb3e3c62
left-shift the "else" part of the if(!lp_SubmitReconBuffer) condition.
...
Cleanup. No real functional changes, just more readable.
2003-12-31 03:51:28 +00:00
oster
824f2ed930
Negate a condition, and flip if/else parts. Preparation for left-shifting
...
the (now) else part. No real functional change.
2003-12-31 03:29:11 +00:00
oster
00515ece62
Remove a couple of incorrect comments. (rf_recon_req needs to be
...
passed to rf_ReconThread(), and there's no way around that for now.)
2003-12-31 03:02:57 +00:00
manu
0dc13ccc05
Added the getattrlist system call. That was annoying.
2003-12-31 02:55:04 +00:00
thorpej
0beb075071
Simplify allocation of the channel queue.
2003-12-31 02:50:34 +00:00
oster
4283fdd054
init_dqd and clean_dqd don't do enough to be their own functions,
...
and just serve to cause confusion. Back-merge their contents to their
(only) calling spots and nuke them.
2003-12-31 02:47:58 +00:00
thorpej
4391735587
Simplify allocation of the channel queue.
2003-12-31 02:47:44 +00:00
thorpej
2dafabdb20
Simplfy allocation of the channel queue.
2003-12-31 02:45:04 +00:00
thorpej
b5b951b13e
Simplify allocation of the channel queue.
2003-12-31 02:41:22 +00:00
simonb
9c7cfca904
ANSIfy, KNF.
2003-12-31 02:40:26 +00:00
wiz
a96b21c57d
Simplify Oo/Oc to Op, since it has only one simple short argument.
2003-12-31 01:21:49 +00:00
oster
7c465d22a7
Increase the scope of RF_DEBUG_PSS to cover a bit more stuff.
2003-12-31 00:42:46 +00:00
oster
4635d077cf
nuke the 'bp' argument to rf_bxor and friends since it is no longer used.
...
In fact, bp was being set to "NULL" when passed rf_bxor() in
rf_parityscan.c:rf_VerifyParityBasic().
2003-12-31 00:00:06 +00:00
sekiya
d721fc82ce
Force ARCS console for IP20 until the console-on-zs crashing problem is
...
fixed. Store the board revision for future use, while we're at it.
2003-12-30 23:56:19 +00:00
sekiya
1cf4c96f39
Don't flush caches here. Fixes crash on IP20 (which apparently occurs only
...
with beta Blackjack boards that incorporate ARCS V1).
2003-12-30 23:50:25 +00:00
sekiya
a072684caa
Adapt if_sq to HPC abstraction layer. It took both Steve Rumble and myself
...
to untangle the unhappiness that arises from the design differences between
HPC1 and HPC3.
2003-12-30 23:48:07 +00:00
sekiya
52063657cc
Force little-endian mode on hpc1, and attach zs on IP20.
2003-12-30 23:45:25 +00:00
oster
6e2bbdfcc9
Very carefully remove REMAP_VA() macro. It's only doing a simple
...
assignement, and the 'bp' argument isn't used. (Guess what's going to
disappear next?) No functional changes.
2003-12-30 23:40:20 +00:00
oster
f5e96bf53e
Nuke a forgotten 'row' from struct RF_PerDiskReconCtrl_s.
2003-12-30 23:23:17 +00:00
martin
47923e6bf5
In case of underflow, return -0.0 or +0.0, depending on the sign of
...
the argument.
This makes sparc64 pass regress/lib/libc/ldexp.
2003-12-30 23:19:07 +00:00
oster
dd05ba5c10
sparediskids isn't used anywhere. turf.
2003-12-30 22:56:40 +00:00
oster
0b4f5c68b8
No point keeping 'pt' around. It's only ever assigned to.
2003-12-30 22:12:10 +00:00
oster
5a41c1d7ce
rf_FreePDAList() and rf_FreeASMList() wern't using their l_end or
...
count arguments. Nuke the unused args, and fix up callers and fn
prototypes. Rename l_start arguments.
2003-12-30 22:11:14 +00:00
martin
7fd2c31d41
Add support for scanf "hh" format modifiers - we use it in int_fmtio.h
...
for SCNd8 and friends - so we should support it properly (and not only
by pure luck on alignment blind little endian archs - it used the
"h" code path, storing a 16bit int via a byte pointer).
This makes sparc64 pass regress/lib/libc/int_fmtio.
2003-12-30 22:10:20 +00:00
oster
c43fc67d7d
Some days you wonder if some of the function declaration consistency
...
was just an accident in the first place. Cleanup function decls and
a few comments. [ok.. so I wasn't going to fix this many.. but once
you're on a roll....]
2003-12-30 21:59:03 +00:00
martin
9f96807631
When storing data size as 32bit int in an overflow page, copy the
...
length to a temporary u_int32_t variable and memmove from there to the
final destination - instead of copying the first four 0 bytes from a
64bit variable directly on big endian 64 bit platforms.
This makes sparc64 pass regress/lib/libc/db.
2003-12-30 21:20:16 +00:00
jmc
6e1ad41386
Add ID line
2003-12-30 21:08:26 +00:00
thorpej
eda41f2ebd
G/C cluster_read(), cluster_write(), cluster_callback() prototypes.
2003-12-30 20:44:16 +00:00
thorpej
4605c26b7a
De-__P
2003-12-30 20:43:46 +00:00
thorpej
7e958083b1
Consistently use ANSI-style function decls.
2003-12-30 20:40:39 +00:00
thorpej
abf619ebfb
Simplify setting up the channel queue a little.
2003-12-30 20:20:21 +00:00
thorpej
683cebe2c8
No longer need to include <dev/ic/wdcreg.h>
2003-12-30 19:30:39 +00:00
thorpej
3787a92812
Move the register definitions for ATA Task File registers to atareg.h;
...
they are also used by controllers that do not map the registers into the
system address space, and are thus distinct from the "controller" registers.
2003-12-30 19:30:13 +00:00
oster
01635d963b
Make function declarations consistent a) with each other and b) with
...
KNF. Clean up comments.
2003-12-30 19:28:26 +00:00
thorpej
a443960167
Don't need to include atavar.h
2003-12-30 19:12:35 +00:00
thorpej
3695c4271b
SMART info is logically part of the register set; move it from atavar.h
...
to atareg.h
2003-12-30 19:12:24 +00:00
thorpej
6a833751e0
Remove allocsys(); nothing uses it anymore.
2003-12-30 18:29:43 +00:00
augustss
044205cf85
Alphabetize IDE controllers
2003-12-30 18:09:50 +00:00
oster
34ad01b703
Fix slight bogon from row removal. 'r' would have been 0 here, not 1,
...
which means r*raidPtr->numCol would have always been 0, not raidPtr->numCol.
2003-12-30 17:46:59 +00:00
oster
ed1155b792
access_tracebuf is declared, allocated, and freed. No freeloading
...
datastructures allowed! Punt.
accessTraceBufCount, rf_accessTraceBufSize, and
rf_stopCollectingTraces are similarly declared, initialized, and then
never changed. Punt.
rf_ShutdownAccessTrace() now does nothing. Remove it, and the
callback setup stuff from rf_ConfigureAccessTrace().
2003-12-30 17:29:41 +00:00
thorpej
ed96a1cec2
Move the drive probing code out of atabusconfig() and into a new
...
wdc_drvprobe() function. wdc_drvprobe() is used if the controller
does not specify a custom one prior to calling wdcattach(). The
WDC_CAPABILITY_DRVPROBE bit is gone.
2003-12-30 17:18:11 +00:00
thorpej
68f89cabfe
Use ANSI function decls.
2003-12-30 16:40:12 +00:00
thorpej
0ad3db4759
Move most of the atabus layer into ata.c.
2003-12-30 16:28:37 +00:00