raidframevar.h revision 1.5 1 1.5 oster /* $NetBSD: raidframevar.h,v 1.5 2003/12/29 02:38:17 oster Exp $ */
2 1.1 oster /*-
3 1.1 oster * Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
4 1.1 oster * All rights reserved.
5 1.1 oster *
6 1.1 oster * This code is derived from software contributed to The NetBSD Foundation
7 1.1 oster * by Greg Oster
8 1.1 oster *
9 1.1 oster * Redistribution and use in source and binary forms, with or without
10 1.1 oster * modification, are permitted provided that the following conditions
11 1.1 oster * are met:
12 1.1 oster * 1. Redistributions of source code must retain the above copyright
13 1.1 oster * notice, this list of conditions and the following disclaimer.
14 1.1 oster * 2. Redistributions in binary form must reproduce the above copyright
15 1.1 oster * notice, this list of conditions and the following disclaimer in the
16 1.1 oster * documentation and/or other materials provided with the distribution.
17 1.1 oster * 3. All advertising materials mentioning features or use of this software
18 1.1 oster * must display the following acknowledgement:
19 1.1 oster * This product includes software developed by the NetBSD
20 1.1 oster * Foundation, Inc. and its contributors.
21 1.1 oster * 4. Neither the name of The NetBSD Foundation nor the names of its
22 1.1 oster * contributors may be used to endorse or promote products derived
23 1.1 oster * from this software without specific prior written permission.
24 1.1 oster *
25 1.1 oster * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
26 1.1 oster * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
27 1.1 oster * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28 1.1 oster * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
29 1.1 oster * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 1.1 oster * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 1.1 oster * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 1.1 oster * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 1.1 oster * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 1.1 oster * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 1.1 oster * POSSIBILITY OF SUCH DAMAGE.
36 1.1 oster */
37 1.1 oster /*
38 1.1 oster * Copyright (c) 1995 Carnegie-Mellon University.
39 1.1 oster * All rights reserved.
40 1.1 oster *
41 1.1 oster * Author: Mark Holland
42 1.1 oster *
43 1.1 oster * Permission to use, copy, modify and distribute this software and
44 1.1 oster * its documentation is hereby granted, provided that both the copyright
45 1.1 oster * notice and this permission notice appear in all copies of the
46 1.1 oster * software, derivative works or modified versions, and any portions
47 1.1 oster * thereof, and that both notices appear in supporting documentation.
48 1.1 oster *
49 1.1 oster * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
50 1.1 oster * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
51 1.1 oster * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
52 1.1 oster *
53 1.1 oster * Carnegie Mellon requests users of this software to return to
54 1.1 oster *
55 1.1 oster * Software Distribution Coordinator or Software.Distribution (at) CS.CMU.EDU
56 1.1 oster * School of Computer Science
57 1.1 oster * Carnegie Mellon University
58 1.1 oster * Pittsburgh PA 15213-3890
59 1.1 oster *
60 1.1 oster * any improvements or extensions that they make and grant Carnegie the
61 1.1 oster * rights to redistribute these changes.
62 1.1 oster */
63 1.1 oster
64 1.1 oster /*
65 1.1 oster * Copyright (c) 1995 Carnegie-Mellon University.
66 1.1 oster * All rights reserved.
67 1.1 oster *
68 1.1 oster * Author: Jim Zelenka
69 1.1 oster *
70 1.1 oster * Permission to use, copy, modify and distribute this software and
71 1.1 oster * its documentation is hereby granted, provided that both the copyright
72 1.1 oster * notice and this permission notice appear in all copies of the
73 1.1 oster * software, derivative works or modified versions, and any portions
74 1.1 oster * thereof, and that both notices appear in supporting documentation.
75 1.1 oster *
76 1.1 oster * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
77 1.1 oster * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
78 1.1 oster * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
79 1.1 oster *
80 1.1 oster * Carnegie Mellon requests users of this software to return to
81 1.1 oster *
82 1.1 oster * Software Distribution Coordinator or Software.Distribution (at) CS.CMU.EDU
83 1.1 oster * School of Computer Science
84 1.1 oster * Carnegie Mellon University
85 1.1 oster * Pittsburgh PA 15213-3890
86 1.1 oster *
87 1.1 oster * any improvements or extensions that they make and grant Carnegie the
88 1.1 oster * rights to redistribute these changes.
89 1.1 oster */
90 1.1 oster
91 1.1 oster /*****************************************************
92 1.1 oster *
93 1.1 oster * raidframevar.h
94 1.1 oster *
95 1.1 oster * main header file for using raidframe in the kernel.
96 1.1 oster *
97 1.1 oster *****************************************************/
98 1.1 oster
99 1.1 oster
100 1.1 oster #ifndef _RF_RAIDFRAMEVAR_H_
101 1.1 oster #define _RF_RAIDFRAMEVAR_H_
102 1.1 oster
103 1.4 dsl #ifndef _STANDALONE
104 1.1 oster #include <sys/ioctl.h>
105 1.1 oster
106 1.1 oster #include <sys/errno.h>
107 1.1 oster #include <sys/types.h>
108 1.1 oster
109 1.1 oster #include <sys/uio.h>
110 1.1 oster #include <sys/param.h>
111 1.1 oster #include <sys/proc.h>
112 1.1 oster #include <sys/lock.h>
113 1.1 oster
114 1.2 thorpej #include <sys/mallocvar.h>
115 1.4 dsl #endif
116 1.2 thorpej
117 1.1 oster /*
118 1.1 oster * First, define system-dependent types and constants.
119 1.1 oster *
120 1.1 oster * If the machine is big-endian, RF_BIG_ENDIAN should be 1.
121 1.1 oster * Otherwise, it should be 0.
122 1.1 oster *
123 1.1 oster * The various integer types should be self-explanatory; we
124 1.1 oster * use these elsewhere to avoid size confusion.
125 1.1 oster *
126 1.1 oster * LONGSHIFT is lg(sizeof(long)) (that is, log base two of sizeof(long)
127 1.1 oster *
128 1.1 oster */
129 1.1 oster
130 1.1 oster #include <sys/types.h>
131 1.1 oster #include <machine/endian.h>
132 1.1 oster #include <machine/limits.h>
133 1.1 oster
134 1.1 oster #if BYTE_ORDER == BIG_ENDIAN
135 1.1 oster #define RF_IS_BIG_ENDIAN 1
136 1.1 oster #elif BYTE_ORDER == LITTLE_ENDIAN
137 1.1 oster #define RF_IS_BIG_ENDIAN 0
138 1.1 oster #else
139 1.1 oster #error byte order not defined
140 1.1 oster #endif
141 1.1 oster typedef int8_t RF_int8;
142 1.1 oster typedef u_int8_t RF_uint8;
143 1.1 oster typedef int16_t RF_int16;
144 1.1 oster typedef u_int16_t RF_uint16;
145 1.1 oster typedef int32_t RF_int32;
146 1.1 oster typedef u_int32_t RF_uint32;
147 1.1 oster typedef int64_t RF_int64;
148 1.1 oster typedef u_int64_t RF_uint64;
149 1.1 oster #if LONG_BIT == 32
150 1.1 oster #define RF_LONGSHIFT 2
151 1.1 oster #elif LONG_BIT == 64
152 1.1 oster #define RF_LONGSHIFT 3
153 1.1 oster #else
154 1.1 oster #error word size not defined
155 1.1 oster #endif
156 1.1 oster
157 1.1 oster /*
158 1.1 oster * These are just zero and non-zero. We don't use "TRUE"
159 1.1 oster * and "FALSE" because there's too much nonsense trying
160 1.1 oster * to get them defined exactly once on every platform, given
161 1.1 oster * the different places they may be defined in system header
162 1.1 oster * files.
163 1.1 oster */
164 1.1 oster #define RF_TRUE 1
165 1.1 oster #define RF_FALSE 0
166 1.2 thorpej
167 1.2 thorpej /* Malloc types. */
168 1.3 tron #ifdef _KERNEL
169 1.2 thorpej MALLOC_DECLARE(M_RAIDFRAME);
170 1.3 tron #endif
171 1.1 oster
172 1.1 oster /*
173 1.1 oster * Now, some generic types
174 1.1 oster */
175 1.1 oster typedef RF_uint64 RF_IoCount_t;
176 1.1 oster typedef RF_uint64 RF_Offset_t;
177 1.1 oster typedef RF_uint32 RF_PSSFlags_t;
178 1.1 oster typedef RF_uint64 RF_SectorCount_t;
179 1.1 oster typedef RF_uint64 RF_StripeCount_t;
180 1.1 oster typedef RF_int64 RF_SectorNum_t;/* these are unsigned so we can set them to
181 1.1 oster * (-1) for "uninitialized" */
182 1.1 oster typedef RF_int64 RF_StripeNum_t;
183 1.1 oster typedef RF_int64 RF_RaidAddr_t;
184 1.1 oster typedef int RF_RowCol_t; /* unsigned so it can be (-1) */
185 1.1 oster typedef RF_int64 RF_HeadSepLimit_t;
186 1.1 oster typedef RF_int64 RF_ReconUnitCount_t;
187 1.1 oster typedef int RF_ReconUnitNum_t;
188 1.1 oster
189 1.1 oster typedef char RF_ParityConfig_t;
190 1.1 oster
191 1.1 oster typedef char RF_DiskQueueType_t[1024];
192 1.1 oster #define RF_DISK_QUEUE_TYPE_NONE ""
193 1.1 oster
194 1.1 oster /* values for the 'type' field in a reconstruction buffer */
195 1.1 oster typedef int RF_RbufType_t;
196 1.1 oster #define RF_RBUF_TYPE_EXCLUSIVE 0 /* this buf assigned exclusively to
197 1.1 oster * one disk */
198 1.1 oster #define RF_RBUF_TYPE_FLOATING 1 /* this is a floating recon buf */
199 1.1 oster #define RF_RBUF_TYPE_FORCED 2 /* this rbuf was allocated to complete
200 1.1 oster * a forced recon */
201 1.1 oster
202 1.1 oster typedef char RF_IoType_t;
203 1.1 oster #define RF_IO_TYPE_READ 'r'
204 1.1 oster #define RF_IO_TYPE_WRITE 'w'
205 1.1 oster #define RF_IO_TYPE_NOP 'n'
206 1.1 oster #define RF_IO_IS_R_OR_W(_type_) (((_type_) == RF_IO_TYPE_READ) \
207 1.1 oster || ((_type_) == RF_IO_TYPE_WRITE))
208 1.1 oster
209 1.1 oster typedef void (*RF_VoidFuncPtr) (void *,...);
210 1.1 oster
211 1.1 oster typedef RF_uint32 RF_AccessStripeMapFlags_t;
212 1.1 oster typedef RF_uint32 RF_DiskQueueDataFlags_t;
213 1.1 oster typedef RF_uint32 RF_DiskQueueFlags_t;
214 1.1 oster typedef RF_uint32 RF_RaidAccessFlags_t;
215 1.1 oster
216 1.1 oster #define RF_DISKQUEUE_DATA_FLAGS_NONE ((RF_DiskQueueDataFlags_t)0)
217 1.1 oster
218 1.1 oster typedef struct RF_AccessStripeMap_s RF_AccessStripeMap_t;
219 1.1 oster typedef struct RF_AccessStripeMapHeader_s RF_AccessStripeMapHeader_t;
220 1.1 oster typedef struct RF_AllocListElem_s RF_AllocListElem_t;
221 1.1 oster typedef struct RF_CallbackDesc_s RF_CallbackDesc_t;
222 1.1 oster typedef struct RF_ChunkDesc_s RF_ChunkDesc_t;
223 1.1 oster typedef struct RF_CommonLogData_s RF_CommonLogData_t;
224 1.1 oster typedef struct RF_Config_s RF_Config_t;
225 1.1 oster typedef struct RF_CumulativeStats_s RF_CumulativeStats_t;
226 1.1 oster typedef struct RF_DagHeader_s RF_DagHeader_t;
227 1.1 oster typedef struct RF_DagList_s RF_DagList_t;
228 1.1 oster typedef struct RF_DagNode_s RF_DagNode_t;
229 1.1 oster typedef struct RF_DeclusteredConfigInfo_s RF_DeclusteredConfigInfo_t;
230 1.1 oster typedef struct RF_DiskId_s RF_DiskId_t;
231 1.1 oster typedef struct RF_DiskMap_s RF_DiskMap_t;
232 1.1 oster typedef struct RF_DiskQueue_s RF_DiskQueue_t;
233 1.1 oster typedef struct RF_DiskQueueData_s RF_DiskQueueData_t;
234 1.1 oster typedef struct RF_DiskQueueSW_s RF_DiskQueueSW_t;
235 1.1 oster typedef struct RF_Etimer_s RF_Etimer_t;
236 1.1 oster typedef struct RF_EventCreate_s RF_EventCreate_t;
237 1.1 oster typedef struct RF_FreeList_s RF_FreeList_t;
238 1.1 oster typedef struct RF_LockReqDesc_s RF_LockReqDesc_t;
239 1.1 oster typedef struct RF_LockTableEntry_s RF_LockTableEntry_t;
240 1.1 oster typedef struct RF_MCPair_s RF_MCPair_t;
241 1.1 oster typedef struct RF_OwnerInfo_s RF_OwnerInfo_t;
242 1.1 oster typedef struct RF_ParityLog_s RF_ParityLog_t;
243 1.1 oster typedef struct RF_ParityLogAppendQueue_s RF_ParityLogAppendQueue_t;
244 1.1 oster typedef struct RF_ParityLogData_s RF_ParityLogData_t;
245 1.1 oster typedef struct RF_ParityLogDiskQueue_s RF_ParityLogDiskQueue_t;
246 1.1 oster typedef struct RF_ParityLogQueue_s RF_ParityLogQueue_t;
247 1.1 oster typedef struct RF_ParityLogRecord_s RF_ParityLogRecord_t;
248 1.1 oster typedef struct RF_PerDiskReconCtrl_s RF_PerDiskReconCtrl_t;
249 1.1 oster typedef struct RF_PSStatusHeader_s RF_PSStatusHeader_t;
250 1.1 oster typedef struct RF_PhysDiskAddr_s RF_PhysDiskAddr_t;
251 1.1 oster typedef struct RF_PropHeader_s RF_PropHeader_t;
252 1.1 oster typedef struct RF_Raid_s RF_Raid_t;
253 1.1 oster typedef struct RF_RaidAccessDesc_s RF_RaidAccessDesc_t;
254 1.1 oster typedef struct RF_RaidDisk_s RF_RaidDisk_t;
255 1.1 oster typedef struct RF_RaidLayout_s RF_RaidLayout_t;
256 1.1 oster typedef struct RF_RaidReconDesc_s RF_RaidReconDesc_t;
257 1.1 oster typedef struct RF_ReconBuffer_s RF_ReconBuffer_t;
258 1.1 oster typedef struct RF_ReconConfig_s RF_ReconConfig_t;
259 1.1 oster typedef struct RF_ReconCtrl_s RF_ReconCtrl_t;
260 1.1 oster typedef struct RF_ReconDoneProc_s RF_ReconDoneProc_t;
261 1.1 oster typedef struct RF_ReconEvent_s RF_ReconEvent_t;
262 1.1 oster typedef struct RF_ReconMap_s RF_ReconMap_t;
263 1.1 oster typedef struct RF_ReconMapListElem_s RF_ReconMapListElem_t;
264 1.1 oster typedef struct RF_ReconParityStripeStatus_s RF_ReconParityStripeStatus_t;
265 1.1 oster typedef struct RF_RedFuncs_s RF_RedFuncs_t;
266 1.1 oster typedef struct RF_RegionBufferQueue_s RF_RegionBufferQueue_t;
267 1.1 oster typedef struct RF_RegionInfo_s RF_RegionInfo_t;
268 1.1 oster typedef struct RF_ShutdownList_s RF_ShutdownList_t;
269 1.1 oster typedef struct RF_SpareTableEntry_s RF_SpareTableEntry_t;
270 1.1 oster typedef struct RF_SparetWait_s RF_SparetWait_t;
271 1.1 oster typedef struct RF_StripeLockDesc_s RF_StripeLockDesc_t;
272 1.1 oster typedef struct RF_ThreadGroup_s RF_ThreadGroup_t;
273 1.1 oster typedef struct RF_ThroughputStats_s RF_ThroughputStats_t;
274 1.1 oster
275 1.1 oster /*
276 1.1 oster * Important assumptions regarding ordering of the states in this list
277 1.1 oster * have been made!!! Before disturbing this ordering, look at code in
278 1.1 oster * sys/dev/raidframe/rf_states.c
279 1.1 oster */
280 1.1 oster typedef enum RF_AccessState_e {
281 1.1 oster /* original states */
282 1.1 oster rf_QuiesceState, /* handles queisence for reconstruction */
283 1.1 oster rf_IncrAccessesCountState, /* count accesses in flight */
284 1.1 oster rf_DecrAccessesCountState,
285 1.1 oster rf_MapState, /* map access to disk addresses */
286 1.1 oster rf_LockState, /* take stripe locks */
287 1.1 oster rf_CreateDAGState, /* create DAGs */
288 1.1 oster rf_ExecuteDAGState, /* execute DAGs */
289 1.1 oster rf_ProcessDAGState, /* DAGs are completing- check if correct,
290 1.1 oster * or if we need to retry */
291 1.1 oster rf_CleanupState, /* release stripe locks, clean up */
292 1.1 oster rf_LastState /* must be the last state */
293 1.1 oster } RF_AccessState_t;
294 1.1 oster
295 1.1 oster
296 1.1 oster /* Some constants related to RAIDframe. These are arbitrary and
297 1.1 oster can be modified at will. */
298 1.1 oster
299 1.1 oster #define RF_MAXROW 10
300 1.1 oster #define RF_MAXCOL 40
301 1.1 oster #define RF_MAXSPARE 10
302 1.1 oster #define RF_MAXDBGV 75 /* max number of debug variables */
303 1.1 oster #define RF_MAX_DISKS 128 /* max disks per array */
304 1.1 oster #define RF_SPAREMAP_NAME_LEN 128
305 1.1 oster #define RF_PROTECTED_SECTORS 64L /* # of sectors at start of disk to
306 1.1 oster exclude from RAID address space */
307 1.1 oster
308 1.1 oster struct RF_SpareTableEntry_s {
309 1.1 oster u_int spareDisk; /* disk to which this block is spared */
310 1.1 oster u_int spareBlockOffsetInSUs; /* offset into spare table for that
311 1.1 oster * disk */
312 1.1 oster };
313 1.1 oster
314 1.1 oster union RF_GenericParam_u {
315 1.1 oster void *p;
316 1.1 oster RF_uint64 v;
317 1.1 oster };
318 1.1 oster typedef union RF_GenericParam_u RF_DagParam_t;
319 1.1 oster typedef union RF_GenericParam_u RF_CBParam_t;
320 1.1 oster
321 1.1 oster /* the raidframe configuration, passed down through an ioctl.
322 1.1 oster * the driver can be reconfigured (with total loss of data) at any time,
323 1.1 oster * but it must be shut down first.
324 1.1 oster */
325 1.1 oster struct RF_Config_s {
326 1.1 oster RF_RowCol_t numRow, numCol, numSpare; /* number of rows, columns,
327 1.1 oster * and spare disks */
328 1.1 oster dev_t devs[RF_MAXROW][RF_MAXCOL]; /* device numbers for disks
329 1.1 oster * comprising array */
330 1.1 oster char devnames[RF_MAXROW][RF_MAXCOL][50]; /* device names */
331 1.1 oster dev_t spare_devs[RF_MAXSPARE]; /* device numbers for spare
332 1.1 oster * disks */
333 1.1 oster char spare_names[RF_MAXSPARE][50]; /* device names */
334 1.1 oster RF_SectorNum_t sectPerSU; /* sectors per stripe unit */
335 1.1 oster RF_StripeNum_t SUsPerPU;/* stripe units per parity unit */
336 1.1 oster RF_StripeNum_t SUsPerRU;/* stripe units per reconstruction unit */
337 1.1 oster RF_ParityConfig_t parityConfig; /* identifies the RAID architecture to
338 1.1 oster * be used */
339 1.1 oster RF_DiskQueueType_t diskQueueType; /* 'f' = fifo, 'c' = cvscan,
340 1.1 oster * not used in kernel */
341 1.1 oster char maxOutstandingDiskReqs; /* # concurrent reqs to be sent to a
342 1.1 oster * disk. not used in kernel. */
343 1.1 oster char debugVars[RF_MAXDBGV][50]; /* space for specifying debug
344 1.1 oster * variables & their values */
345 1.1 oster unsigned int layoutSpecificSize; /* size in bytes of
346 1.1 oster * layout-specific info */
347 1.1 oster void *layoutSpecific; /* a pointer to a layout-specific structure to
348 1.1 oster * be copied in */
349 1.1 oster int force; /* if !0, ignore many fatal
350 1.1 oster configuration conditions */
351 1.1 oster /*
352 1.1 oster "force" is used to override cases where the component labels would
353 1.1 oster indicate that configuration should not proceed without user
354 1.1 oster intervention
355 1.1 oster */
356 1.1 oster };
357 1.1 oster
358 1.1 oster typedef RF_uint32 RF_ReconReqFlags_t;
359 1.1 oster /* flags that can be put in the rf_recon_req structure */
360 1.1 oster #define RF_FDFLAGS_NONE 0x0 /* just fail the disk */
361 1.1 oster #define RF_FDFLAGS_RECON 0x1 /* fail and initiate recon */
362 1.1 oster
363 1.1 oster struct rf_recon_req { /* used to tell the kernel to fail a disk */
364 1.1 oster RF_RowCol_t row, col;
365 1.1 oster RF_ReconReqFlags_t flags;
366 1.1 oster void *raidPtr; /* used internally; need not be set at ioctl
367 1.1 oster * time */
368 1.1 oster struct rf_recon_req *next; /* used internally; need not be set at
369 1.1 oster * ioctl time */
370 1.1 oster };
371 1.1 oster
372 1.1 oster struct RF_SparetWait_s {
373 1.1 oster int C, G, fcol; /* C = # disks in row, G = # units in stripe,
374 1.1 oster * fcol = which disk has failed */
375 1.1 oster
376 1.1 oster RF_StripeCount_t SUsPerPU; /* this stuff is the info required to
377 1.1 oster * create a spare table */
378 1.1 oster int TablesPerSpareRegion;
379 1.1 oster int BlocksPerTable;
380 1.1 oster RF_StripeCount_t TableDepthInPUs;
381 1.1 oster RF_StripeCount_t SpareSpaceDepthPerRegionInSUs;
382 1.1 oster
383 1.1 oster RF_SparetWait_t *next; /* used internally; need not be set at ioctl
384 1.1 oster * time */
385 1.1 oster };
386 1.1 oster /*
387 1.1 oster * A physical disk can be in one of several states:
388 1.1 oster * IF YOU ADD A STATE, CHECK TO SEE IF YOU NEED TO MODIFY RF_DEAD_DISK().
389 1.1 oster */
390 1.1 oster enum RF_DiskStatus_e {
391 1.1 oster rf_ds_optimal, /* no problems */
392 1.1 oster rf_ds_failed, /* reconstruction ongoing */
393 1.1 oster rf_ds_reconstructing, /* reconstruction complete to spare, dead disk
394 1.1 oster * not yet replaced */
395 1.1 oster rf_ds_dist_spared, /* reconstruction complete to distributed
396 1.1 oster * spare space, dead disk not yet replaced */
397 1.1 oster rf_ds_spared, /* reconstruction complete to distributed
398 1.1 oster * spare space, dead disk not yet replaced */
399 1.1 oster rf_ds_spare, /* an available spare disk */
400 1.1 oster rf_ds_used_spare /* a spare which has been used, and hence is
401 1.1 oster * not available */
402 1.1 oster };
403 1.1 oster typedef enum RF_DiskStatus_e RF_DiskStatus_t;
404 1.1 oster
405 1.1 oster struct RF_RaidDisk_s {
406 1.1 oster char devname[56]; /* name of device file */
407 1.1 oster RF_DiskStatus_t status; /* whether it is up or down */
408 1.1 oster RF_RowCol_t spareRow; /* if in status "spared", this identifies the
409 1.1 oster * spare disk */
410 1.1 oster RF_RowCol_t spareCol; /* if in status "spared", this identifies the
411 1.1 oster * spare disk */
412 1.1 oster RF_SectorCount_t numBlocks; /* number of blocks, obtained via READ
413 1.1 oster * CAPACITY */
414 1.1 oster int blockSize;
415 1.1 oster RF_SectorCount_t partitionSize; /* The *actual* and *full* size of
416 1.1 oster the partition, from the disklabel */
417 1.1 oster int auto_configured;/* 1 if this component was autoconfigured.
418 1.1 oster 0 otherwise. */
419 1.1 oster dev_t dev;
420 1.1 oster };
421 1.1 oster /* The per-component label information that the user can set */
422 1.1 oster typedef struct RF_ComponentInfo_s {
423 1.1 oster int row; /* the row number of this component */
424 1.1 oster int column; /* the column number of this component */
425 1.1 oster int serial_number; /* a user-specified serial number for this
426 1.1 oster RAID set */
427 1.1 oster } RF_ComponentInfo_t;
428 1.1 oster
429 1.1 oster /* The per-component label information */
430 1.1 oster typedef struct RF_ComponentLabel_s {
431 1.1 oster int version; /* The version of this label. */
432 1.1 oster int serial_number; /* a user-specified serial number for this
433 1.1 oster RAID set */
434 1.1 oster int mod_counter; /* modification counter. Changed (usually
435 1.1 oster by incrementing) every time the label
436 1.1 oster is changed */
437 1.1 oster int row; /* the row number of this component */
438 1.1 oster int column; /* the column number of this component */
439 1.1 oster int num_rows; /* number of rows in this RAID set */
440 1.1 oster int num_columns; /* number of columns in this RAID set */
441 1.1 oster int clean; /* 1 when clean, 0 when dirty */
442 1.1 oster int status; /* rf_ds_optimal, rf_ds_dist_spared, whatever. */
443 1.1 oster /* stuff that will be in version 2 of the label */
444 1.1 oster int sectPerSU; /* Sectors per Stripe Unit */
445 1.1 oster int SUsPerPU; /* Stripe Units per Parity Units */
446 1.1 oster int SUsPerRU; /* Stripe Units per Reconstruction Units */
447 1.1 oster int parityConfig; /* '0' == RAID0, '1' == RAID1, etc. */
448 1.1 oster int maxOutstanding; /* maxOutstanding disk requests */
449 1.1 oster int blockSize; /* size of component block.
450 1.1 oster (disklabel->d_secsize) */
451 1.1 oster int numBlocks; /* number of blocks on this component. May
452 1.1 oster be smaller than the partition size. */
453 1.1 oster int partitionSize; /* number of blocks on this *partition*.
454 1.1 oster Must exactly match the partition size
455 1.1 oster from the disklabel. */
456 1.1 oster int future_use[33]; /* Future expansion */
457 1.1 oster int autoconfigure; /* automatically configure this RAID set.
458 1.1 oster 0 == no, 1 == yes */
459 1.1 oster int root_partition; /* Use this set as /
460 1.1 oster 0 == no, 1 == yes*/
461 1.1 oster int last_unit; /* last unit number (e.g. 0 for /dev/raid0)
462 1.1 oster of this component. Used for autoconfigure
463 1.1 oster only. */
464 1.1 oster int config_order; /* 0 .. n. The order in which the component
465 1.1 oster should be auto-configured. E.g. 0 is will
466 1.1 oster done first, (and would become raid0).
467 1.1 oster This may be in conflict with last_unit!!?! */
468 1.1 oster /* Not currently used. */
469 1.1 oster int future_use2[44]; /* More future expansion */
470 1.1 oster } RF_ComponentLabel_t;
471 1.1 oster
472 1.1 oster typedef struct RF_SingleComponent_s {
473 1.1 oster int row;
474 1.1 oster int column;
475 1.1 oster char component_name[50]; /* name of the component */
476 1.1 oster } RF_SingleComponent_t;
477 1.1 oster
478 1.1 oster typedef struct RF_DeviceConfig_s {
479 1.1 oster u_int rows;
480 1.1 oster u_int cols;
481 1.1 oster u_int maxqdepth;
482 1.1 oster int ndevs;
483 1.1 oster RF_RaidDisk_t devs[RF_MAX_DISKS];
484 1.1 oster int nspares;
485 1.1 oster RF_RaidDisk_t spares[RF_MAX_DISKS];
486 1.1 oster } RF_DeviceConfig_t;
487 1.1 oster
488 1.1 oster typedef struct RF_ProgressInfo_s {
489 1.1 oster RF_uint64 remaining;
490 1.1 oster RF_uint64 completed;
491 1.1 oster RF_uint64 total;
492 1.1 oster } RF_ProgressInfo_t;
493 1.1 oster
494 1.4 dsl #ifndef _STANDALONE
495 1.1 oster typedef struct RF_LayoutSW_s {
496 1.1 oster RF_ParityConfig_t parityConfig;
497 1.1 oster const char *configName;
498 1.1 oster
499 1.1 oster #ifndef _KERNEL
500 1.1 oster /* layout-specific parsing */
501 1.1 oster int (*MakeLayoutSpecific) (FILE * fp, RF_Config_t * cfgPtr,
502 1.1 oster void *arg);
503 1.1 oster void *makeLayoutSpecificArg;
504 1.1 oster #else /* !KERNEL */
505 1.1 oster
506 1.1 oster /* initialization routine */
507 1.1 oster int (*Configure) (RF_ShutdownList_t ** shutdownListp,
508 1.1 oster RF_Raid_t * raidPtr, RF_Config_t * cfgPtr);
509 1.1 oster
510 1.1 oster /* routine to map RAID sector address -> physical (row, col, offset) */
511 1.1 oster void (*MapSector) (RF_Raid_t * raidPtr, RF_RaidAddr_t raidSector,
512 1.5 oster RF_RowCol_t * col,
513 1.1 oster RF_SectorNum_t * diskSector, int remap);
514 1.1 oster
515 1.1 oster /* routine to map RAID sector address -> physical (r,c,o) of parity
516 1.1 oster * unit */
517 1.1 oster void (*MapParity) (RF_Raid_t * raidPtr, RF_RaidAddr_t raidSector,
518 1.5 oster RF_RowCol_t * col,
519 1.1 oster RF_SectorNum_t * diskSector, int remap);
520 1.1 oster
521 1.1 oster /* routine to map RAID sector address -> physical (r,c,o) of Q unit */
522 1.1 oster void (*MapQ) (RF_Raid_t * raidPtr, RF_RaidAddr_t raidSector,
523 1.5 oster RF_RowCol_t * col,
524 1.1 oster RF_SectorNum_t * diskSector, int remap);
525 1.1 oster
526 1.1 oster /* routine to identify the disks comprising a stripe */
527 1.1 oster void (*IdentifyStripe) (RF_Raid_t * raidPtr, RF_RaidAddr_t addr,
528 1.5 oster RF_RowCol_t ** diskids);
529 1.1 oster
530 1.1 oster /* routine to select a dag */
531 1.1 oster void (*SelectionFunc) (RF_Raid_t * raidPtr, RF_IoType_t type,
532 1.1 oster RF_AccessStripeMap_t * asmap,
533 1.1 oster RF_VoidFuncPtr *);
534 1.1 oster
535 1.1 oster /* map a stripe ID to a parity stripe ID. This is typically the
536 1.1 oster * identity mapping */
537 1.1 oster void (*MapSIDToPSID) (RF_RaidLayout_t * layoutPtr,
538 1.1 oster RF_StripeNum_t stripeID,
539 1.1 oster RF_StripeNum_t * psID,
540 1.1 oster RF_ReconUnitNum_t * which_ru);
541 1.1 oster
542 1.1 oster /* get default head separation limit (may be NULL) */
543 1.1 oster RF_HeadSepLimit_t(*GetDefaultHeadSepLimit) (RF_Raid_t * raidPtr);
544 1.1 oster
545 1.1 oster /* get default num recon buffers (may be NULL) */
546 1.1 oster int (*GetDefaultNumFloatingReconBuffers) (RF_Raid_t * raidPtr);
547 1.1 oster
548 1.1 oster /* get number of spare recon units (may be NULL) */
549 1.1 oster RF_ReconUnitCount_t(*GetNumSpareRUs) (RF_Raid_t * raidPtr);
550 1.1 oster
551 1.1 oster /* spare table installation (may be NULL) */
552 1.1 oster int (*InstallSpareTable) (RF_Raid_t * raidPtr, RF_RowCol_t frow,
553 1.1 oster RF_RowCol_t fcol);
554 1.1 oster
555 1.1 oster /* recon buffer submission function */
556 1.1 oster int (*SubmitReconBuffer) (RF_ReconBuffer_t * rbuf, int keep_it,
557 1.1 oster int use_committed);
558 1.1 oster
559 1.1 oster /*
560 1.1 oster * verify that parity information for a stripe is correct
561 1.1 oster * see rf_parityscan.h for return vals
562 1.1 oster */
563 1.1 oster int (*VerifyParity) (RF_Raid_t * raidPtr, RF_RaidAddr_t raidAddr,
564 1.1 oster RF_PhysDiskAddr_t * parityPDA,
565 1.1 oster int correct_it, RF_RaidAccessFlags_t flags);
566 1.1 oster
567 1.1 oster /* number of faults tolerated by this mapping */
568 1.1 oster int faultsTolerated;
569 1.1 oster
570 1.1 oster /* states to step through in an access. Must end with "LastState". The
571 1.1 oster * default is DefaultStates in rf_layout.c */
572 1.1 oster RF_AccessState_t *states;
573 1.1 oster
574 1.1 oster RF_AccessStripeMapFlags_t flags;
575 1.1 oster #endif /* !KERNEL */
576 1.1 oster } RF_LayoutSW_t;
577 1.4 dsl #endif
578 1.1 oster
579 1.1 oster #endif /* !_RF_RAIDFRAMEVAR_H_ */
580