summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2002-03-31 22:29:52 +0000
committerphk <phk@FreeBSD.org>2002-03-31 22:29:52 +0000
commitb19c49c220775864538a4c0608a821586b85eda2 (patch)
treed9ea3b6d7ae54940fddb42831049c81f802e1147 /sys
parent8c12e60532ab29eb4c273c7b66d774b4afa78852 (diff)
downloadFreeBSD-src-b19c49c220775864538a4c0608a821586b85eda2.zip
FreeBSD-src-b19c49c220775864538a4c0608a821586b85eda2.tar.gz
The AAC, TWE and IDA diskdrivers cannot dump until I and msmith
have ripped all the i386 specific formatting code from their dump routines. Due to the potential for trashing disks, I did not want to do this "blind".
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/aac/aac_disk.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/dev/aac/aac_disk.c b/sys/dev/aac/aac_disk.c
index 3dd2586..d76006d 100644
--- a/sys/dev/aac/aac_disk.c
+++ b/sys/dev/aac/aac_disk.c
@@ -219,8 +219,12 @@ aac_disk_strategy(struct bio *bp)
* for the controller to complete the requests.
*/
static int
-aac_disk_dump(dev_t dev)
+aac_disk_dump(dev_t dev, void *virtual, vm_offset_t physical, off_t offset, size_t length)
{
+
+ /* XXX: This needs modified for the new dump API */
+ return (ENXIO);
+#if 0
struct aac_disk *ad;
struct aac_softc *sc;
vm_offset_t addr;
@@ -290,6 +294,7 @@ retry:
}
return (0);
+#endif
}
/*
OpenPOWER on IntegriCloud