diff options
author | jesseb <none@none> | 2005-11-04 09:14:56 -0800 |
---|---|---|
committer | jesseb <none@none> | 2005-11-04 09:14:56 -0800 |
commit | 6fec3791b5a9a5621db93bfef3a6514bc0511b5d (patch) | |
tree | 9eb6fa4a1352efbd34682319eea374988913438c /usr/src/uts/common/sys/raidioctl.h | |
parent | 84ad75de88d379e9c62b994a68b6ce85faa90431 (diff) | |
download | illumos-joyent-6fec3791b5a9a5621db93bfef3a6514bc0511b5d.tar.gz |
PSARC 2005/097 Solaris support for LSISAS1064 on Ontario
PSARC 2005/534 Change to RAID_GETCONFIG ioctl for LSISAS1064 support
PSARC 2005/639 Interactive volume creation and deletion for raidctl
6228874 Raidctl should enable RAID0
6322267 picld crashes in disk_leds_thread on V440
6338401 Incorrect retry logic on Blue LED service channel fd
6339177 raidctl should use an interactive mode for some volume operations on LSI1064
6340900 need LSI1068e changes to mpt driver for Boston
Diffstat (limited to 'usr/src/uts/common/sys/raidioctl.h')
-rw-r--r-- | usr/src/uts/common/sys/raidioctl.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr/src/uts/common/sys/raidioctl.h b/usr/src/uts/common/sys/raidioctl.h index e3604777df..f08daa440c 100644 --- a/usr/src/uts/common/sys/raidioctl.h +++ b/usr/src/uts/common/sys/raidioctl.h @@ -20,7 +20,7 @@ * CDDL HEADER END */ /* - * Copyright 2002-2003 Sun Microsystems, Inc. All rights reserved. + * Copyright 2005 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ @@ -41,6 +41,8 @@ extern "C" { #define RAID_CREATE (RAID_IOC|2) /* Create raid mirror */ #define RAID_DELETE (RAID_IOC|3) /* Delete raid mirror */ #define RAID_UPDATEFW (RAID_IOC|4) /* Update IOC firmware */ +#define RAID_GETDEVID (RAID_IOC|5) /* Retrieve devid of chip */ +#define RAID_NUMVOLUMES (RAID_IOC|6) /* Retrieve max RAID volumes */ /* * define raid status flags @@ -73,6 +75,7 @@ typedef struct raid_config { int disk[RAID_MAXDISKS]; int diskstatus[RAID_MAXDISKS]; diskaddr_t raid_capacity; + int unitid; } raid_config_t; /* |