rf_decluster.c revision 1.12 1 /* $NetBSD: rf_decluster.c,v 1.12 2002/09/23 03:04:27 simonb 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 *
31 * rf_decluster.c -- code related to the declustered layout
32 *
33 * Created 10-21-92 (MCH)
34 *
35 * Nov 93: adding support for distributed sparing. This code is a little
36 * complex: the basic layout used is as follows:
37 * let F = (v-1)/GCD(r,v-1). The spare space for each set of
38 * F consecutive fulltables is grouped together and placed after
39 * that set of tables.
40 * +------------------------------+
41 * | F fulltables |
42 * | Spare Space |
43 * | F fulltables |
44 * | Spare Space |
45 * | ... |
46 * +------------------------------+
47 *
48 *--------------------------------------------------------------------*/
49
50 #include <sys/cdefs.h>
51 __KERNEL_RCSID(0, "$NetBSD: rf_decluster.c,v 1.12 2002/09/23 03:04:27 simonb Exp $");
52
53 #include <dev/raidframe/raidframevar.h>
54
55 #include "rf_archs.h"
56 #include "rf_raid.h"
57 #include "rf_decluster.h"
58 #include "rf_debugMem.h"
59 #include "rf_utils.h"
60 #include "rf_alloclist.h"
61 #include "rf_general.h"
62 #include "rf_shutdown.h"
63
64 #if (RF_INCLUDE_PARITY_DECLUSTERING > 0) || (RF_INCLUDE_PARITY_DECLUSTERING_PQ > 0)
65
66 /* configuration code */
67
68 int
69 rf_ConfigureDeclustered(
70 RF_ShutdownList_t ** listp,
71 RF_Raid_t * raidPtr,
72 RF_Config_t * cfgPtr)
73 {
74 RF_RaidLayout_t *layoutPtr = &(raidPtr->Layout);
75 int b, v, k, r, lambda; /* block design params */
76 int i, j;
77 RF_RowCol_t *first_avail_slot;
78 RF_StripeCount_t complete_FT_count, numCompleteFullTablesPerDisk;
79 RF_DeclusteredConfigInfo_t *info;
80 RF_StripeCount_t PUsPerDisk, spareRegionDepthInPUs, numCompleteSpareRegionsPerDisk,
81 extraPUsPerDisk;
82 RF_StripeCount_t totSparePUsPerDisk;
83 RF_SectorNum_t diskOffsetOfLastFullTableInSUs;
84 RF_SectorCount_t SpareSpaceInSUs;
85 char *cfgBuf = (char *) (cfgPtr->layoutSpecific);
86 RF_StripeNum_t l, SUID;
87
88 SUID = l = 0;
89 numCompleteSpareRegionsPerDisk = 0;
90
91 /* 1. create layout specific structure */
92 RF_MallocAndAdd(info, sizeof(RF_DeclusteredConfigInfo_t), (RF_DeclusteredConfigInfo_t *), raidPtr->cleanupList);
93 if (info == NULL)
94 return (ENOMEM);
95 layoutPtr->layoutSpecificInfo = (void *) info;
96 info->SpareTable = NULL;
97
98 /* 2. extract parameters from the config structure */
99 if (layoutPtr->map->flags & RF_DISTRIBUTE_SPARE) {
100 (void)memcpy(info->sparemap_fname, cfgBuf, RF_SPAREMAP_NAME_LEN);
101 }
102 cfgBuf += RF_SPAREMAP_NAME_LEN;
103
104 b = *((int *) cfgBuf);
105 cfgBuf += sizeof(int);
106 v = *((int *) cfgBuf);
107 cfgBuf += sizeof(int);
108 k = *((int *) cfgBuf);
109 cfgBuf += sizeof(int);
110 r = *((int *) cfgBuf);
111 cfgBuf += sizeof(int);
112 lambda = *((int *) cfgBuf);
113 cfgBuf += sizeof(int);
114 raidPtr->noRotate = *((int *) cfgBuf);
115 cfgBuf += sizeof(int);
116
117 /* the sparemaps are generated assuming that parity is rotated, so we
118 * issue a warning if both distributed sparing and no-rotate are on at
119 * the same time */
120 if ((layoutPtr->map->flags & RF_DISTRIBUTE_SPARE) && raidPtr->noRotate) {
121 RF_ERRORMSG("Warning: distributed sparing specified without parity rotation.\n");
122 }
123 if (raidPtr->numCol != v) {
124 RF_ERRORMSG2("RAID: config error: table element count (%d) not equal to no. of cols (%d)\n", v, raidPtr->numCol);
125 return (EINVAL);
126 }
127 /* 3. set up the values used in the mapping code */
128 info->BlocksPerTable = b;
129 info->Lambda = lambda;
130 info->NumParityReps = info->groupSize = k;
131 info->SUsPerTable = b * (k - 1) * layoutPtr->SUsPerPU; /* b blks, k-1 SUs each */
132 info->SUsPerFullTable = k * info->SUsPerTable; /* rot k times */
133 info->PUsPerBlock = k - 1;
134 info->SUsPerBlock = info->PUsPerBlock * layoutPtr->SUsPerPU;
135 info->TableDepthInPUs = (b * k) / v;
136 info->FullTableDepthInPUs = info->TableDepthInPUs * k; /* k repetitions */
137
138 /* used only in distributed sparing case */
139 info->FullTablesPerSpareRegion = (v - 1) / rf_gcd(r, v - 1); /* (v-1)/gcd fulltables */
140 info->TablesPerSpareRegion = k * info->FullTablesPerSpareRegion;
141 info->SpareSpaceDepthPerRegionInSUs = (r * info->TablesPerSpareRegion / (v - 1)) * layoutPtr->SUsPerPU;
142
143 /* check to make sure the block design is sufficiently small */
144 if ((raidPtr->Layout.map->flags & RF_DISTRIBUTE_SPARE)) {
145 if (info->FullTableDepthInPUs * layoutPtr->SUsPerPU + info->SpareSpaceDepthPerRegionInSUs > layoutPtr->stripeUnitsPerDisk) {
146 RF_ERRORMSG3("RAID: config error: Full Table depth (%d) + Spare Space (%d) larger than disk size (%d) (BD too big)\n",
147 (int) info->FullTableDepthInPUs,
148 (int) info->SpareSpaceDepthPerRegionInSUs,
149 (int) layoutPtr->stripeUnitsPerDisk);
150 return (EINVAL);
151 }
152 } else {
153 if (info->TableDepthInPUs * layoutPtr->SUsPerPU > layoutPtr->stripeUnitsPerDisk) {
154 RF_ERRORMSG2("RAID: config error: Table depth (%d) larger than disk size (%d) (BD too big)\n",
155 (int) (info->TableDepthInPUs * layoutPtr->SUsPerPU), \
156 (int) layoutPtr->stripeUnitsPerDisk);
157 return (EINVAL);
158 }
159 }
160
161
162 /* compute the size of each disk, and the number of tables in the last
163 * fulltable (which need not be complete) */
164 if (raidPtr->Layout.map->flags & RF_DISTRIBUTE_SPARE) {
165
166 PUsPerDisk = layoutPtr->stripeUnitsPerDisk / layoutPtr->SUsPerPU;
167 spareRegionDepthInPUs = (info->TablesPerSpareRegion * info->TableDepthInPUs +
168 (info->TablesPerSpareRegion * info->TableDepthInPUs) / (v - 1));
169 info->SpareRegionDepthInSUs = spareRegionDepthInPUs * layoutPtr->SUsPerPU;
170
171 numCompleteSpareRegionsPerDisk = PUsPerDisk / spareRegionDepthInPUs;
172 info->NumCompleteSRs = numCompleteSpareRegionsPerDisk;
173 extraPUsPerDisk = PUsPerDisk % spareRegionDepthInPUs;
174
175 /* assume conservatively that we need the full amount of spare
176 * space in one region in order to provide spares for the
177 * partial spare region at the end of the array. We set "i"
178 * to the number of tables in the partial spare region. This
179 * may actually include some fulltables. */
180 extraPUsPerDisk -= (info->SpareSpaceDepthPerRegionInSUs / layoutPtr->SUsPerPU);
181 if (extraPUsPerDisk <= 0)
182 i = 0;
183 else
184 i = extraPUsPerDisk / info->TableDepthInPUs;
185
186 complete_FT_count = raidPtr->numRow * (numCompleteSpareRegionsPerDisk * (info->TablesPerSpareRegion / k) + i / k);
187 info->FullTableLimitSUID = complete_FT_count * info->SUsPerFullTable;
188 info->ExtraTablesPerDisk = i % k;
189
190 /* note that in the last spare region, the spare space is
191 * complete even though data/parity space is not */
192 totSparePUsPerDisk = (numCompleteSpareRegionsPerDisk + 1) * (info->SpareSpaceDepthPerRegionInSUs / layoutPtr->SUsPerPU);
193 info->TotSparePUsPerDisk = totSparePUsPerDisk;
194
195 layoutPtr->stripeUnitsPerDisk =
196 ((complete_FT_count / raidPtr->numRow) * info->FullTableDepthInPUs + /* data & parity space */
197 info->ExtraTablesPerDisk * info->TableDepthInPUs +
198 totSparePUsPerDisk /* spare space */
199 ) * layoutPtr->SUsPerPU;
200 layoutPtr->dataStripeUnitsPerDisk =
201 (complete_FT_count * info->FullTableDepthInPUs + info->ExtraTablesPerDisk * info->TableDepthInPUs)
202 * layoutPtr->SUsPerPU * (k - 1) / k;
203
204 } else {
205 /* non-dist spare case: force each disk to contain an
206 * integral number of tables */
207 layoutPtr->stripeUnitsPerDisk /= (info->TableDepthInPUs * layoutPtr->SUsPerPU);
208 layoutPtr->stripeUnitsPerDisk *= (info->TableDepthInPUs * layoutPtr->SUsPerPU);
209
210 /* compute the number of tables in the last fulltable, which
211 * need not be complete */
212 complete_FT_count =
213 ((layoutPtr->stripeUnitsPerDisk / layoutPtr->SUsPerPU) / info->FullTableDepthInPUs) * raidPtr->numRow;
214
215 info->FullTableLimitSUID = complete_FT_count * info->SUsPerFullTable;
216 info->ExtraTablesPerDisk =
217 ((layoutPtr->stripeUnitsPerDisk / layoutPtr->SUsPerPU) / info->TableDepthInPUs) % k;
218 }
219
220 raidPtr->sectorsPerDisk = layoutPtr->stripeUnitsPerDisk * layoutPtr->sectorsPerStripeUnit;
221
222 /* find the disk offset of the stripe unit where the last fulltable
223 * starts */
224 numCompleteFullTablesPerDisk = complete_FT_count / raidPtr->numRow;
225 diskOffsetOfLastFullTableInSUs = numCompleteFullTablesPerDisk * info->FullTableDepthInPUs * layoutPtr->SUsPerPU;
226 if (raidPtr->Layout.map->flags & RF_DISTRIBUTE_SPARE) {
227 SpareSpaceInSUs = numCompleteSpareRegionsPerDisk * info->SpareSpaceDepthPerRegionInSUs;
228 diskOffsetOfLastFullTableInSUs += SpareSpaceInSUs;
229 info->DiskOffsetOfLastSpareSpaceChunkInSUs =
230 diskOffsetOfLastFullTableInSUs + info->ExtraTablesPerDisk * info->TableDepthInPUs * layoutPtr->SUsPerPU;
231 }
232 info->DiskOffsetOfLastFullTableInSUs = diskOffsetOfLastFullTableInSUs;
233 info->numCompleteFullTablesPerDisk = numCompleteFullTablesPerDisk;
234
235 /* 4. create and initialize the lookup tables */
236 info->LayoutTable = rf_make_2d_array(b, k, raidPtr->cleanupList);
237 if (info->LayoutTable == NULL)
238 return (ENOMEM);
239 info->OffsetTable = rf_make_2d_array(b, k, raidPtr->cleanupList);
240 if (info->OffsetTable == NULL)
241 return (ENOMEM);
242 info->BlockTable = rf_make_2d_array(info->TableDepthInPUs * layoutPtr->SUsPerPU, raidPtr->numCol, raidPtr->cleanupList);
243 if (info->BlockTable == NULL)
244 return (ENOMEM);
245
246 first_avail_slot = rf_make_1d_array(v, NULL);
247 if (first_avail_slot == NULL)
248 return (ENOMEM);
249
250 for (i = 0; i < b; i++)
251 for (j = 0; j < k; j++)
252 info->LayoutTable[i][j] = *cfgBuf++;
253
254 /* initialize offset table */
255 for (i = 0; i < b; i++)
256 for (j = 0; j < k; j++) {
257 info->OffsetTable[i][j] = first_avail_slot[info->LayoutTable[i][j]];
258 first_avail_slot[info->LayoutTable[i][j]]++;
259 }
260
261 /* initialize block table */
262 for (SUID = l = 0; l < layoutPtr->SUsPerPU; l++) {
263 for (i = 0; i < b; i++) {
264 for (j = 0; j < k; j++) {
265 info->BlockTable[(info->OffsetTable[i][j] * layoutPtr->SUsPerPU) + l]
266 [info->LayoutTable[i][j]] = SUID;
267 }
268 SUID++;
269 }
270 }
271
272 rf_free_1d_array(first_avail_slot, v);
273
274 /* 5. set up the remaining redundant-but-useful parameters */
275
276 raidPtr->totalSectors = (k * complete_FT_count + raidPtr->numRow * info->ExtraTablesPerDisk) *
277 info->SUsPerTable * layoutPtr->sectorsPerStripeUnit;
278 layoutPtr->numStripe = (raidPtr->totalSectors / layoutPtr->sectorsPerStripeUnit) / (k - 1);
279
280 /* strange evaluation order below to try and minimize overflow
281 * problems */
282
283 layoutPtr->dataSectorsPerStripe = (k - 1) * layoutPtr->sectorsPerStripeUnit;
284 layoutPtr->numDataCol = k - 1;
285 layoutPtr->numParityCol = 1;
286
287 return (0);
288 }
289 /* declustering with distributed sparing */
290 static void rf_ShutdownDeclusteredDS(RF_ThreadArg_t);
291 static void
292 rf_ShutdownDeclusteredDS(arg)
293 RF_ThreadArg_t arg;
294 {
295 RF_DeclusteredConfigInfo_t *info;
296 RF_Raid_t *raidPtr;
297
298 raidPtr = (RF_Raid_t *) arg;
299 info = (RF_DeclusteredConfigInfo_t *) raidPtr->Layout.layoutSpecificInfo;
300 if (info->SpareTable)
301 rf_FreeSpareTable(raidPtr);
302 }
303
304 int
305 rf_ConfigureDeclusteredDS(
306 RF_ShutdownList_t ** listp,
307 RF_Raid_t * raidPtr,
308 RF_Config_t * cfgPtr)
309 {
310 int rc;
311
312 rc = rf_ConfigureDeclustered(listp, raidPtr, cfgPtr);
313 if (rc)
314 return (rc);
315 rc = rf_ShutdownCreate(listp, rf_ShutdownDeclusteredDS, raidPtr);
316 if (rc) {
317 RF_ERRORMSG1("Got %d adding shutdown event for DeclusteredDS\n", rc);
318 rf_ShutdownDeclusteredDS(raidPtr);
319 return (rc);
320 }
321 return (0);
322 }
323
324 void
325 rf_MapSectorDeclustered(raidPtr, raidSector, row, col, diskSector, remap)
326 RF_Raid_t *raidPtr;
327 RF_RaidAddr_t raidSector;
328 RF_RowCol_t *row;
329 RF_RowCol_t *col;
330 RF_SectorNum_t *diskSector;
331 int remap;
332 {
333 RF_RaidLayout_t *layoutPtr = &(raidPtr->Layout);
334 RF_DeclusteredConfigInfo_t *info = (RF_DeclusteredConfigInfo_t *) layoutPtr->layoutSpecificInfo;
335 RF_StripeNum_t SUID = raidSector / layoutPtr->sectorsPerStripeUnit;
336 RF_StripeNum_t FullTableID, FullTableOffset, TableID, TableOffset;
337 RF_StripeNum_t BlockID, BlockOffset, RepIndex;
338 RF_StripeCount_t sus_per_fulltable = info->SUsPerFullTable;
339 RF_StripeCount_t fulltable_depth = info->FullTableDepthInPUs * layoutPtr->SUsPerPU;
340 RF_StripeNum_t base_suid = 0, outSU, SpareRegion = 0, SpareSpace = 0;
341
342 rf_decluster_adjust_params(layoutPtr, &SUID, &sus_per_fulltable, &fulltable_depth, &base_suid);
343
344 FullTableID = SUID / sus_per_fulltable; /* fulltable ID within array
345 * (across rows) */
346 if (raidPtr->numRow == 1)
347 *row = 0; /* avoid a mod and a div in the common case */
348 else {
349 *row = FullTableID % raidPtr->numRow;
350 FullTableID /= raidPtr->numRow; /* convert to fulltable ID on
351 * this disk */
352 }
353 if (raidPtr->Layout.map->flags & RF_DISTRIBUTE_SPARE) {
354 SpareRegion = FullTableID / info->FullTablesPerSpareRegion;
355 SpareSpace = SpareRegion * info->SpareSpaceDepthPerRegionInSUs;
356 }
357 FullTableOffset = SUID % sus_per_fulltable;
358 TableID = FullTableOffset / info->SUsPerTable;
359 TableOffset = FullTableOffset - TableID * info->SUsPerTable;
360 BlockID = TableOffset / info->PUsPerBlock;
361 BlockOffset = TableOffset - BlockID * info->PUsPerBlock;
362 BlockID %= info->BlocksPerTable;
363 RepIndex = info->PUsPerBlock - TableID;
364 if (!raidPtr->noRotate)
365 BlockOffset += ((BlockOffset >= RepIndex) ? 1 : 0);
366 *col = info->LayoutTable[BlockID][BlockOffset];
367
368 /* remap to distributed spare space if indicated */
369 if (remap) {
370 RF_ASSERT(raidPtr->Disks[*row][*col].status == rf_ds_reconstructing || raidPtr->Disks[*row][*col].status == rf_ds_dist_spared ||
371 (rf_copyback_in_progress && raidPtr->Disks[*row][*col].status == rf_ds_optimal));
372 rf_remap_to_spare_space(layoutPtr, info, *row, FullTableID, TableID, BlockID, (base_suid) ? 1 : 0, SpareRegion, col, &outSU);
373 } else {
374
375 outSU = base_suid;
376 outSU += FullTableID * fulltable_depth; /* offs to strt of FT */
377 outSU += SpareSpace; /* skip rsvd spare space */
378 outSU += TableID * info->TableDepthInPUs * layoutPtr->SUsPerPU; /* offs to strt of tble */
379 outSU += info->OffsetTable[BlockID][BlockOffset] * layoutPtr->SUsPerPU; /* offs to the PU */
380 }
381 outSU += TableOffset / (info->BlocksPerTable * info->PUsPerBlock); /* offs to the SU within
382 * a PU */
383
384 /* convert SUs to sectors, and, if not aligned to SU boundary, add in
385 * offset to sector. */
386 *diskSector = outSU * layoutPtr->sectorsPerStripeUnit + (raidSector % layoutPtr->sectorsPerStripeUnit);
387
388 RF_ASSERT(*col != -1);
389 }
390
391
392 /* prototyping this inexplicably causes the compile of the layout table (rf_layout.c) to fail */
393 void
394 rf_MapParityDeclustered(
395 RF_Raid_t * raidPtr,
396 RF_RaidAddr_t raidSector,
397 RF_RowCol_t * row,
398 RF_RowCol_t * col,
399 RF_SectorNum_t * diskSector,
400 int remap)
401 {
402 RF_RaidLayout_t *layoutPtr = &(raidPtr->Layout);
403 RF_DeclusteredConfigInfo_t *info = (RF_DeclusteredConfigInfo_t *) layoutPtr->layoutSpecificInfo;
404 RF_StripeNum_t SUID = raidSector / layoutPtr->sectorsPerStripeUnit;
405 RF_StripeNum_t FullTableID, FullTableOffset, TableID, TableOffset;
406 RF_StripeNum_t BlockID, BlockOffset, RepIndex;
407 RF_StripeCount_t sus_per_fulltable = info->SUsPerFullTable;
408 RF_StripeCount_t fulltable_depth = info->FullTableDepthInPUs * layoutPtr->SUsPerPU;
409 RF_StripeNum_t base_suid = 0, outSU, SpareRegion = 0, SpareSpace = 0;
410
411 rf_decluster_adjust_params(layoutPtr, &SUID, &sus_per_fulltable, &fulltable_depth, &base_suid);
412
413 /* compute row & (possibly) spare space exactly as before */
414 FullTableID = SUID / sus_per_fulltable;
415 if (raidPtr->numRow == 1)
416 *row = 0; /* avoid a mod and a div in the common case */
417 else {
418 *row = FullTableID % raidPtr->numRow;
419 FullTableID /= raidPtr->numRow; /* convert to fulltable ID on
420 * this disk */
421 }
422 if ((raidPtr->Layout.map->flags & RF_DISTRIBUTE_SPARE)) {
423 SpareRegion = FullTableID / info->FullTablesPerSpareRegion;
424 SpareSpace = SpareRegion * info->SpareSpaceDepthPerRegionInSUs;
425 }
426 /* compute BlockID and RepIndex exactly as before */
427 FullTableOffset = SUID % sus_per_fulltable;
428 TableID = FullTableOffset / info->SUsPerTable;
429 TableOffset = FullTableOffset - TableID * info->SUsPerTable;
430 /* TableOffset = FullTableOffset % info->SUsPerTable; */
431 /* BlockID = (TableOffset / info->PUsPerBlock) %
432 * info->BlocksPerTable; */
433 BlockID = TableOffset / info->PUsPerBlock;
434 /* BlockOffset = TableOffset % info->PUsPerBlock; */
435 BlockOffset = TableOffset - BlockID * info->PUsPerBlock;
436 BlockID %= info->BlocksPerTable;
437
438 /* the parity block is in the position indicated by RepIndex */
439 RepIndex = (raidPtr->noRotate) ? info->PUsPerBlock : info->PUsPerBlock - TableID;
440 *col = info->LayoutTable[BlockID][RepIndex];
441
442 if (remap) {
443 RF_ASSERT(raidPtr->Disks[*row][*col].status == rf_ds_reconstructing || raidPtr->Disks[*row][*col].status == rf_ds_dist_spared ||
444 (rf_copyback_in_progress && raidPtr->Disks[*row][*col].status == rf_ds_optimal));
445 rf_remap_to_spare_space(layoutPtr, info, *row, FullTableID, TableID, BlockID, (base_suid) ? 1 : 0, SpareRegion, col, &outSU);
446 } else {
447
448 /* compute sector as before, except use RepIndex instead of
449 * BlockOffset */
450 outSU = base_suid;
451 outSU += FullTableID * fulltable_depth;
452 outSU += SpareSpace; /* skip rsvd spare space */
453 outSU += TableID * info->TableDepthInPUs * layoutPtr->SUsPerPU;
454 outSU += info->OffsetTable[BlockID][RepIndex] * layoutPtr->SUsPerPU;
455 }
456
457 outSU += TableOffset / (info->BlocksPerTable * info->PUsPerBlock);
458 *diskSector = outSU * layoutPtr->sectorsPerStripeUnit + (raidSector % layoutPtr->sectorsPerStripeUnit);
459
460 RF_ASSERT(*col != -1);
461 }
462 /* returns an array of ints identifying the disks that comprise the stripe containing the indicated address.
463 * the caller must _never_ attempt to modify this array.
464 */
465 void
466 rf_IdentifyStripeDeclustered(
467 RF_Raid_t * raidPtr,
468 RF_RaidAddr_t addr,
469 RF_RowCol_t ** diskids,
470 RF_RowCol_t * outRow)
471 {
472 RF_RaidLayout_t *layoutPtr = &(raidPtr->Layout);
473 RF_DeclusteredConfigInfo_t *info = (RF_DeclusteredConfigInfo_t *) layoutPtr->layoutSpecificInfo;
474 RF_StripeCount_t sus_per_fulltable = info->SUsPerFullTable;
475 RF_StripeCount_t fulltable_depth = info->FullTableDepthInPUs * layoutPtr->SUsPerPU;
476 RF_StripeNum_t base_suid = 0;
477 RF_StripeNum_t SUID = rf_RaidAddressToStripeUnitID(layoutPtr, addr);
478 RF_StripeNum_t stripeID, FullTableID;
479 int tableOffset;
480
481 rf_decluster_adjust_params(layoutPtr, &SUID, &sus_per_fulltable, &fulltable_depth, &base_suid);
482 FullTableID = SUID / sus_per_fulltable; /* fulltable ID within array
483 * (across rows) */
484 *outRow = FullTableID % raidPtr->numRow;
485 stripeID = rf_StripeUnitIDToStripeID(layoutPtr, SUID); /* find stripe offset
486 * into array */
487 tableOffset = (stripeID % info->BlocksPerTable); /* find offset into
488 * block design table */
489 *diskids = info->LayoutTable[tableOffset];
490 }
491 /* This returns the default head-separation limit, which is measured
492 * in "required units for reconstruction". Each time a disk fetches
493 * a unit, it bumps a counter. The head-sep code prohibits any disk
494 * from getting more than headSepLimit counter values ahead of any
495 * other.
496 *
497 * We assume here that the number of floating recon buffers is already
498 * set. There are r stripes to be reconstructed in each table, and so
499 * if we have a total of B buffers, we can have at most B/r tables
500 * under recon at any one time. In each table, lambda units are required
501 * from each disk, so given B buffers, the head sep limit has to be
502 * (lambda*B)/r units. We subtract one to avoid weird boundary cases.
503 *
504 * for example, suppose were given 50 buffers, r=19, and lambda=4 as in
505 * the 20.5 design. There are 19 stripes/table to be reconstructed, so
506 * we can have 50/19 tables concurrently under reconstruction, which means
507 * we can allow the fastest disk to get 50/19 tables ahead of the slower
508 * disk. There are lambda "required units" for each disk, so the fastest
509 * disk can get 4*50/19 = 10 counter values ahead of the slowest.
510 *
511 * If numBufsToAccumulate is not 1, we need to limit the head sep further
512 * because multiple bufs will be required for each stripe under recon.
513 */
514 RF_HeadSepLimit_t
515 rf_GetDefaultHeadSepLimitDeclustered(
516 RF_Raid_t * raidPtr)
517 {
518 RF_DeclusteredConfigInfo_t *info = (RF_DeclusteredConfigInfo_t *) raidPtr->Layout.layoutSpecificInfo;
519
520 return (info->Lambda * raidPtr->numFloatingReconBufs / info->TableDepthInPUs / rf_numBufsToAccumulate);
521 }
522 /* returns the default number of recon buffers to use. The value
523 * is somewhat arbitrary...it's intended to be large enough to allow
524 * for a reasonably large head-sep limit, but small enough that you
525 * don't use up all your system memory with buffers.
526 */
527 int
528 rf_GetDefaultNumFloatingReconBuffersDeclustered(RF_Raid_t * raidPtr)
529 {
530 return (100 * rf_numBufsToAccumulate);
531 }
532 /* sectors in the last fulltable of the array need to be handled
533 * specially since this fulltable can be incomplete. this function
534 * changes the values of certain params to handle this.
535 *
536 * the idea here is that MapSector et. al. figure out which disk the
537 * addressed unit lives on by computing the modulos of the unit number
538 * with the number of units per fulltable, table, etc. In the last
539 * fulltable, there are fewer units per fulltable, so we need to adjust
540 * the number of user data units per fulltable to reflect this.
541 *
542 * so, we (1) convert the fulltable size and depth parameters to
543 * the size of the partial fulltable at the end, (2) compute the
544 * disk sector offset where this fulltable starts, and (3) convert
545 * the users stripe unit number from an offset into the array to
546 * an offset into the last fulltable.
547 */
548 void
549 rf_decluster_adjust_params(
550 RF_RaidLayout_t * layoutPtr,
551 RF_StripeNum_t * SUID,
552 RF_StripeCount_t * sus_per_fulltable,
553 RF_StripeCount_t * fulltable_depth,
554 RF_StripeNum_t * base_suid)
555 {
556 RF_DeclusteredConfigInfo_t *info = (RF_DeclusteredConfigInfo_t *) layoutPtr->layoutSpecificInfo;
557
558 if (*SUID >= info->FullTableLimitSUID) {
559 /* new full table size is size of last full table on disk */
560 *sus_per_fulltable = info->ExtraTablesPerDisk * info->SUsPerTable;
561
562 /* new full table depth is corresponding depth */
563 *fulltable_depth = info->ExtraTablesPerDisk * info->TableDepthInPUs * layoutPtr->SUsPerPU;
564
565 /* set up the new base offset */
566 *base_suid = info->DiskOffsetOfLastFullTableInSUs;
567
568 /* convert users array address to an offset into the last
569 * fulltable */
570 *SUID -= info->FullTableLimitSUID;
571 }
572 }
573 /*
574 * map a stripe ID to a parity stripe ID.
575 * See comment above RaidAddressToParityStripeID in layout.c.
576 */
577 void
578 rf_MapSIDToPSIDDeclustered(
579 RF_RaidLayout_t * layoutPtr,
580 RF_StripeNum_t stripeID,
581 RF_StripeNum_t * psID,
582 RF_ReconUnitNum_t * which_ru)
583 {
584 RF_DeclusteredConfigInfo_t *info;
585
586 info = (RF_DeclusteredConfigInfo_t *) layoutPtr->layoutSpecificInfo;
587
588 *psID = (stripeID / (layoutPtr->SUsPerPU * info->BlocksPerTable))
589 * info->BlocksPerTable + (stripeID % info->BlocksPerTable);
590 *which_ru = (stripeID % (info->BlocksPerTable * layoutPtr->SUsPerPU))
591 / info->BlocksPerTable;
592 RF_ASSERT((*which_ru) < layoutPtr->SUsPerPU / layoutPtr->SUsPerRU);
593 }
594 /*
595 * Called from MapSector and MapParity to retarget an access at the spare unit.
596 * Modifies the "col" and "outSU" parameters only.
597 */
598 void
599 rf_remap_to_spare_space(
600 RF_RaidLayout_t * layoutPtr,
601 RF_DeclusteredConfigInfo_t * info,
602 RF_RowCol_t row,
603 RF_StripeNum_t FullTableID,
604 RF_StripeNum_t TableID,
605 RF_SectorNum_t BlockID,
606 RF_StripeNum_t base_suid,
607 RF_StripeNum_t SpareRegion,
608 RF_RowCol_t * outCol,
609 RF_StripeNum_t * outSU)
610 {
611 RF_StripeNum_t ftID, spareTableStartSU, TableInSpareRegion, lastSROffset,
612 which_ft;
613
614 /*
615 * note that FullTableID and hence SpareRegion may have gotten
616 * tweaked by rf_decluster_adjust_params. We detect this by
617 * noticing that base_suid is not 0.
618 */
619 if (base_suid == 0) {
620 ftID = FullTableID;
621 } else {
622 /*
623 * There may be > 1.0 full tables in the last (i.e. partial)
624 * spare region. find out which of these we're in.
625 */
626 lastSROffset = info->NumCompleteSRs * info->SpareRegionDepthInSUs;
627 which_ft = (info->DiskOffsetOfLastFullTableInSUs - lastSROffset) / (info->FullTableDepthInPUs * layoutPtr->SUsPerPU);
628
629 /* compute the actual full table ID */
630 ftID = info->DiskOffsetOfLastFullTableInSUs / (info->FullTableDepthInPUs * layoutPtr->SUsPerPU) + which_ft;
631 SpareRegion = info->NumCompleteSRs;
632 }
633 TableInSpareRegion = (ftID * info->NumParityReps + TableID) % info->TablesPerSpareRegion;
634
635 *outCol = info->SpareTable[TableInSpareRegion][BlockID].spareDisk;
636 RF_ASSERT(*outCol != -1);
637
638 spareTableStartSU = (SpareRegion == info->NumCompleteSRs) ?
639 info->DiskOffsetOfLastFullTableInSUs + info->ExtraTablesPerDisk * info->TableDepthInPUs * layoutPtr->SUsPerPU :
640 (SpareRegion + 1) * info->SpareRegionDepthInSUs - info->SpareSpaceDepthPerRegionInSUs;
641 *outSU = spareTableStartSU + info->SpareTable[TableInSpareRegion][BlockID].spareBlockOffsetInSUs;
642 if (*outSU >= layoutPtr->stripeUnitsPerDisk) {
643 printf("rf_remap_to_spare_space: invalid remapped disk SU offset %ld\n", (long) *outSU);
644 }
645 }
646
647 #endif /* (RF_INCLUDE_PARITY_DECLUSTERING > 0) || (RF_INCLUDE_PARITY_DECLUSTERING_PQ > 0) */
648
649
650 int
651 rf_InstallSpareTable(
652 RF_Raid_t * raidPtr,
653 RF_RowCol_t frow,
654 RF_RowCol_t fcol)
655 {
656 RF_DeclusteredConfigInfo_t *info = (RF_DeclusteredConfigInfo_t *) raidPtr->Layout.layoutSpecificInfo;
657 RF_SparetWait_t *req;
658 int retcode;
659
660 RF_Malloc(req, sizeof(*req), (RF_SparetWait_t *));
661 req->C = raidPtr->numCol;
662 req->G = raidPtr->Layout.numDataCol + raidPtr->Layout.numParityCol;
663 req->fcol = fcol;
664 req->SUsPerPU = raidPtr->Layout.SUsPerPU;
665 req->TablesPerSpareRegion = info->TablesPerSpareRegion;
666 req->BlocksPerTable = info->BlocksPerTable;
667 req->TableDepthInPUs = info->TableDepthInPUs;
668 req->SpareSpaceDepthPerRegionInSUs = info->SpareSpaceDepthPerRegionInSUs;
669
670 retcode = rf_GetSpareTableFromDaemon(req);
671 RF_ASSERT(!retcode); /* XXX -- fix this to recover gracefully --
672 * XXX */
673 return (retcode);
674 }
675 #if (RF_INCLUDE_PARITY_DECLUSTERING > 0) || (RF_INCLUDE_PARITY_DECLUSTERING_PQ > 0)
676 /*
677 * Invoked via ioctl to install a spare table in the kernel.
678 */
679 int
680 rf_SetSpareTable(raidPtr, data)
681 RF_Raid_t *raidPtr;
682 void *data;
683 {
684 RF_DeclusteredConfigInfo_t *info = (RF_DeclusteredConfigInfo_t *) raidPtr->Layout.layoutSpecificInfo;
685 RF_SpareTableEntry_t **ptrs;
686 int i, retcode;
687
688 /* what we need to copyin is a 2-d array, so first copyin the user
689 * pointers to the rows in the table */
690 RF_Malloc(ptrs, info->TablesPerSpareRegion * sizeof(RF_SpareTableEntry_t *), (RF_SpareTableEntry_t **));
691 retcode = copyin((caddr_t) data, (caddr_t) ptrs, info->TablesPerSpareRegion * sizeof(RF_SpareTableEntry_t *));
692
693 if (retcode)
694 return (retcode);
695
696 /* now allocate kernel space for the row pointers */
697 RF_Malloc(info->SpareTable, info->TablesPerSpareRegion * sizeof(RF_SpareTableEntry_t *), (RF_SpareTableEntry_t **));
698
699 /* now allocate kernel space for each row in the table, and copy it in
700 * from user space */
701 for (i = 0; i < info->TablesPerSpareRegion; i++) {
702 RF_Malloc(info->SpareTable[i], info->BlocksPerTable * sizeof(RF_SpareTableEntry_t), (RF_SpareTableEntry_t *));
703 retcode = copyin(ptrs[i], info->SpareTable[i], info->BlocksPerTable * sizeof(RF_SpareTableEntry_t));
704 if (retcode) {
705 info->SpareTable = NULL; /* blow off the memory
706 * we've allocated */
707 return (retcode);
708 }
709 }
710
711 /* free up the temporary array we used */
712 RF_Free(ptrs, info->TablesPerSpareRegion * sizeof(RF_SpareTableEntry_t *));
713
714 return (0);
715 }
716
717 RF_ReconUnitCount_t
718 rf_GetNumSpareRUsDeclustered(raidPtr)
719 RF_Raid_t *raidPtr;
720 {
721 RF_RaidLayout_t *layoutPtr = &raidPtr->Layout;
722
723 return (((RF_DeclusteredConfigInfo_t *) layoutPtr->layoutSpecificInfo)->TotSparePUsPerDisk);
724 }
725 #endif /* (RF_INCLUDE_PARITY_DECLUSTERING > 0) || (RF_INCLUDE_PARITY_DECLUSTERING_PQ > 0) */
726
727 void
728 rf_FreeSpareTable(raidPtr)
729 RF_Raid_t *raidPtr;
730 {
731 long i;
732 RF_RaidLayout_t *layoutPtr = &raidPtr->Layout;
733 RF_DeclusteredConfigInfo_t *info = (RF_DeclusteredConfigInfo_t *) layoutPtr->layoutSpecificInfo;
734 RF_SpareTableEntry_t **table = info->SpareTable;
735
736 for (i = 0; i < info->TablesPerSpareRegion; i++) {
737 RF_Free(table[i], info->BlocksPerTable * sizeof(RF_SpareTableEntry_t));
738 }
739 RF_Free(table, info->TablesPerSpareRegion * sizeof(RF_SpareTableEntry_t *));
740 info->SpareTable = (RF_SpareTableEntry_t **) NULL;
741 }
742