rf_reconstruct.h revision 1.11 1 /* $NetBSD: rf_reconstruct.h,v 1.11 2003/12/30 23:23:17 oster Exp $ */
2 /*
3 * Copyright (c) 1995 Carnegie-Mellon University.
4 * All rights reserved.
5 *
6 * Author: Mark Holland
7 *
8 * Permission to use, copy, modify and distribute this software and
9 * its documentation is hereby granted, provided that both the copyright
10 * notice and this permission notice appear in all copies of the
11 * software, derivative works or modified versions, and any portions
12 * thereof, and that both notices appear in supporting documentation.
13 *
14 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
15 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
16 * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
17 *
18 * Carnegie Mellon requests users of this software to return to
19 *
20 * Software Distribution Coordinator or Software.Distribution (at) CS.CMU.EDU
21 * School of Computer Science
22 * Carnegie Mellon University
23 * Pittsburgh PA 15213-3890
24 *
25 * any improvements or extensions that they make and grant Carnegie the
26 * rights to redistribute these changes.
27 */
28
29 /*********************************************************
30 * rf_reconstruct.h -- header file for reconstruction code
31 *********************************************************/
32
33 #ifndef _RF__RF_RECONSTRUCT_H_
34 #define _RF__RF_RECONSTRUCT_H_
35
36 #include <dev/raidframe/raidframevar.h>
37 #include <sys/time.h>
38 #include "rf_reconmap.h"
39 #include "rf_psstatus.h"
40
41 /* reconstruction configuration information */
42 struct RF_ReconConfig_s {
43 unsigned numFloatingReconBufs; /* number of floating recon bufs to
44 * use */
45 RF_HeadSepLimit_t headSepLimit; /* how far apart the heads are allow
46 * to become, in parity stripes */
47 };
48 /* a reconstruction buffer */
49 struct RF_ReconBuffer_s {
50 RF_Raid_t *raidPtr; /* void * to avoid recursive includes */
51 caddr_t buffer; /* points to the data */
52 RF_StripeNum_t parityStripeID; /* the parity stripe that this data
53 * relates to */
54 int which_ru; /* which reconstruction unit within the PSS */
55 RF_SectorNum_t failedDiskSectorOffset; /* the offset into the failed
56 * disk */
57 RF_RowCol_t row, col; /* which disk this buffer belongs to or is
58 * targeted at */
59 RF_StripeCount_t count; /* counts the # of SUs installed so far */
60 int priority; /* used to force hi priority recon */
61 RF_RbufType_t type; /* FORCED or FLOATING */
62 RF_ReconBuffer_t *next; /* used for buffer management */
63 void *arg; /* generic field for general use */
64 RF_RowCol_t spRow, spCol; /* spare disk to which this buf should
65 * be written */
66 /* if dist sparing off, always identifies the replacement disk */
67 RF_SectorNum_t spOffset;/* offset into the spare disk */
68 /* if dist sparing off, identical to failedDiskSectorOffset */
69 RF_ReconParityStripeStatus_t *pssPtr; /* debug- pss associated with
70 * issue-pending write */
71 };
72 /* a reconstruction event descriptor. The event types currently are:
73 * RF_REVENT_READDONE -- a read operation has completed
74 * RF_REVENT_WRITEDONE -- a write operation has completed
75 * RF_REVENT_BUFREADY -- the buffer manager has produced a full buffer
76 * RF_REVENT_BLOCKCLEAR -- a reconstruction blockage has been cleared
77 * RF_REVENT_BUFCLEAR -- the buffer manager has released a process blocked on submission
78 * RF_REVENT_SKIP -- we need to skip the current RU and go on to the next one, typ. b/c we found recon forced
79 * RF_REVENT_FORCEDREADONE- a forced-reconstructoin read operation has completed
80 */
81 typedef enum RF_Revent_e {
82 RF_REVENT_READDONE,
83 RF_REVENT_WRITEDONE,
84 RF_REVENT_BUFREADY,
85 RF_REVENT_BLOCKCLEAR,
86 RF_REVENT_BUFCLEAR,
87 RF_REVENT_HEADSEPCLEAR,
88 RF_REVENT_SKIP,
89 RF_REVENT_FORCEDREADDONE
90 } RF_Revent_t;
91
92 struct RF_ReconEvent_s {
93 RF_Revent_t type; /* what kind of event has occurred */
94 RF_RowCol_t col; /* row ID is implicit in the queue in which
95 * the event is placed */
96 void *arg; /* a generic argument */
97 RF_ReconEvent_t *next;
98 };
99 /*
100 * Reconstruction control information maintained per-disk
101 * (for surviving disks)
102 */
103 struct RF_PerDiskReconCtrl_s {
104 RF_ReconCtrl_t *reconCtrl;
105 RF_RowCol_t col; /* to make this structure self-identifying */
106 RF_StripeNum_t curPSID; /* the next parity stripe ID to check on this
107 * disk */
108 RF_HeadSepLimit_t headSepCounter; /* counter used to control
109 * maximum head separation */
110 RF_SectorNum_t diskOffset; /* the offset into the indicated disk
111 * of the current PU */
112 RF_ReconUnitNum_t ru_count; /* this counts off the recon units
113 * within each parity unit */
114 RF_ReconBuffer_t *rbuf; /* the recon buffer assigned to this disk */
115 };
116 /* main reconstruction control structure */
117 struct RF_ReconCtrl_s {
118 RF_RaidReconDesc_t *reconDesc;
119 RF_RowCol_t fcol; /* which column has failed */
120 RF_PerDiskReconCtrl_t *perDiskInfo; /* information maintained
121 * per-disk */
122 RF_ReconMap_t *reconMap;/* map of what has/has not been reconstructed */
123 RF_RowCol_t spareCol; /* which of the spare disks we're using */
124 RF_StripeNum_t lastPSID;/* the ID of the last parity stripe we want
125 * reconstructed */
126 int percentComplete;/* percentage completion of reconstruction */
127 int numRUsComplete; /* number of Reconstruction Units done */
128 int numRUsTotal; /* total number of Reconstruction Units */
129
130 /* reconstruction event queue */
131 RF_ReconEvent_t *eventQueue; /* queue of pending reconstruction
132 * events */
133 RF_DECLARE_MUTEX(eq_mutex) /* mutex for locking event
134 * queue */
135 RF_DECLARE_COND(eq_cond) /* condition variable for
136 * signalling recon events */
137 int eq_count; /* debug only */
138
139 /* reconstruction buffer management */
140 RF_DECLARE_MUTEX(rb_mutex) /* mutex for messing around
141 * with recon buffers */
142 RF_ReconBuffer_t *floatingRbufs; /* available floating
143 * reconstruction buffers */
144 RF_ReconBuffer_t *committedRbufs; /* recon buffers that have
145 * been committed to some
146 * waiting disk */
147 RF_ReconBuffer_t *fullBufferList; /* full buffers waiting to be
148 * written out */
149 RF_CallbackDesc_t *bufferWaitList; /* disks that are currently
150 * blocked waiting for buffers */
151
152 /* parity stripe status table */
153 RF_PSStatusHeader_t *pssTable; /* stores the reconstruction status of
154 * active parity stripes */
155
156 /* maximum-head separation control */
157 RF_HeadSepLimit_t minHeadSepCounter; /* the minimum hs counter over
158 * all disks */
159 RF_CallbackDesc_t *headSepCBList; /* list of callbacks to be
160 * done as minPSID advances */
161
162 /* performance monitoring */
163 struct timeval starttime; /* recon start time */
164
165 void (*continueFunc) (void *); /* function to call when io
166 * returns */
167 void *continueArg; /* argument for Func */
168 };
169 /* the default priority for reconstruction accesses */
170 #define RF_IO_RECON_PRIORITY RF_IO_LOW_PRIORITY
171
172 int rf_ConfigureReconstruction(RF_ShutdownList_t ** listp);
173
174 int
175 rf_ReconstructFailedDisk(RF_Raid_t * raidPtr, RF_RowCol_t col);
176
177 int
178 rf_ReconstructFailedDiskBasic(RF_Raid_t * raidPtr, RF_RowCol_t col);
179
180 int
181 rf_ReconstructInPlace(RF_Raid_t * raidPtr,RF_RowCol_t col);
182
183 int rf_ContinueReconstructFailedDisk(RF_RaidReconDesc_t * reconDesc);
184
185 int
186 rf_ForceOrBlockRecon(RF_Raid_t * raidPtr, RF_AccessStripeMap_t * asmap,
187 void (*cbFunc) (RF_Raid_t *, void *), void *cbArg);
188
189 int rf_UnblockRecon(RF_Raid_t * raidPtr, RF_AccessStripeMap_t * asmap);
190
191 #endif /* !_RF__RF_RECONSTRUCT_H_ */
192