diff options
author | scottl <scottl@FreeBSD.org> | 2001-12-02 03:47:33 +0000 |
---|---|---|
committer | scottl <scottl@FreeBSD.org> | 2001-12-02 03:47:33 +0000 |
commit | 7bf566164162b76eaf304b44aae5645eab5f9779 (patch) | |
tree | 72bd5c3b28f04165ad0d790debfdcc97fb4357f5 /sys/dev/aac/aac_tables.h | |
parent | 686c6d137f35735b4d160e2c7dce11fdb60729c8 (diff) | |
download | FreeBSD-src-7bf566164162b76eaf304b44aae5645eab5f9779.zip FreeBSD-src-7bf566164162b76eaf304b44aae5645eab5f9779.tar.gz |
Add functionality and fix bugs so the driver will work with soon-to-be
released management apps.
1. Implement poll(). This will check for queued aif's so that a
subsequent ioctl call to retrieve the next aif will not block.
2. Don't catch signals when sleeping on a fib sent from userland. This
causes a race and panic due to the pthread context switcher waking
up the tsleep at inopportune times.
3. Fix some whitespace nits.
MFC after: 3 days
Diffstat (limited to 'sys/dev/aac/aac_tables.h')
-rw-r--r-- | sys/dev/aac/aac_tables.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/aac/aac_tables.h b/sys/dev/aac/aac_tables.h index b1343d4..f0c1e60 100644 --- a/sys/dev/aac/aac_tables.h +++ b/sys/dev/aac/aac_tables.h @@ -80,7 +80,7 @@ static struct aac_code_lookup aac_cpu_variant[] = { {"i960HX", CPUI960_HX}, {"i960RX", CPUI960_RX}, {"StrongARM SA110", CPUARM_SA110}, - {"PowerPC 603e", CPUPPC_603e}, + {"MPC824x", CPUMPC_824x}, {"Unknown StrongARM", CPUARM_xxx}, {"Unknown PowerPC", CPUPPC_xxx}, {NULL, 0}, @@ -111,6 +111,7 @@ static struct aac_code_lookup aac_container_types[] = { {"RAID 00", CT_RAID00}, {"Volume of Mirrors", CT_VOLUME_OF_MIRRORS}, {"Pseudo RAID 3", CT_PSEUDO_RAID3}, + {"RAID 50", CT_RAID50}, {NULL, 0}, {"unknown", 0} }; |