diff options
author | phk <phk@FreeBSD.org> | 2002-03-31 22:29:52 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2002-03-31 22:29:52 +0000 |
commit | b19c49c220775864538a4c0608a821586b85eda2 (patch) | |
tree | d9ea3b6d7ae54940fddb42831049c81f802e1147 | |
parent | 8c12e60532ab29eb4c273c7b66d774b4afa78852 (diff) | |
download | FreeBSD-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".
-rw-r--r-- | sys/dev/aac/aac_disk.c | 7 |
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 } /* |