Home | History | Annotate | Line # | Download | only in raidframe
rf_reconbuffer.c revision 1.15
      1 /*	$NetBSD: rf_reconbuffer.c,v 1.15 2003/12/30 21:59:03 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  *
     31  * rf_reconbuffer.c -- reconstruction buffer manager
     32  *
     33  ***************************************************/
     34 
     35 #include <sys/cdefs.h>
     36 __KERNEL_RCSID(0, "$NetBSD: rf_reconbuffer.c,v 1.15 2003/12/30 21:59:03 oster Exp $");
     37 
     38 #include "rf_raid.h"
     39 #include "rf_reconbuffer.h"
     40 #include "rf_acctrace.h"
     41 #include "rf_etimer.h"
     42 #include "rf_general.h"
     43 #include "rf_revent.h"
     44 #include "rf_reconutil.h"
     45 #include "rf_nwayxor.h"
     46 
     47 #ifdef DEBUG
     48 
     49 #define Dprintf1(s,a) if (rf_reconbufferDebug) printf(s,a)
     50 #define Dprintf2(s,a,b) if (rf_reconbufferDebug) printf(s,a,b)
     51 #define Dprintf3(s,a,b,c) if (rf_reconbufferDebug) printf(s,a,b,c)
     52 #define Dprintf4(s,a,b,c,d) if (rf_reconbufferDebug) printf(s,a,b,c,d)
     53 #define Dprintf5(s,a,b,c,d,e) if (rf_reconbufferDebug) printf(s,a,b,c,d,e)
     54 
     55 #else /* DEBUG */
     56 
     57 #define Dprintf1(s,a) {}
     58 #define Dprintf2(s,a,b) {}
     59 #define Dprintf3(s,a,b,c) {}
     60 #define Dprintf4(s,a,b,c,d) {}
     61 #define Dprintf5(s,a,b,c,d,e) {}
     62 
     63 #endif
     64 
     65 /*****************************************************************************
     66  *
     67  * Submit a reconstruction buffer to the manager for XOR.  We can only
     68  * submit a buffer if (1) we can xor into an existing buffer, which
     69  * means we don't have to acquire a new one, (2) we can acquire a
     70  * floating recon buffer, or (3) the caller has indicated that we are
     71  * allowed to keep the submitted buffer.
     72  *
     73  * Returns non-zero if and only if we were not able to submit.
     74  * In this case, we append the current disk ID to the wait list on the
     75  * indicated RU, so that it will be re-enabled when we acquire a buffer
     76  * for this RU.
     77  *
     78  ****************************************************************************/
     79 
     80 /*
     81  * nWayXorFuncs[i] is a pointer to a function that will xor "i"
     82  * bufs into the accumulating sum.
     83  */
     84 static const RF_VoidFuncPtr nWayXorFuncs[] = {
     85 	NULL,
     86 	(RF_VoidFuncPtr) rf_nWayXor1,
     87 	(RF_VoidFuncPtr) rf_nWayXor2,
     88 	(RF_VoidFuncPtr) rf_nWayXor3,
     89 	(RF_VoidFuncPtr) rf_nWayXor4,
     90 	(RF_VoidFuncPtr) rf_nWayXor5,
     91 	(RF_VoidFuncPtr) rf_nWayXor6,
     92 	(RF_VoidFuncPtr) rf_nWayXor7,
     93 	(RF_VoidFuncPtr) rf_nWayXor8,
     94 	(RF_VoidFuncPtr) rf_nWayXor9
     95 };
     96 
     97 /*
     98  * rbuf          - the recon buffer to submit
     99  * keep_it       - whether we can keep this buffer or we have to return it
    100  * use_committed - whether to use a committed or an available recon buffer
    101  */
    102 int
    103 rf_SubmitReconBuffer(RF_ReconBuffer_t *rbuf, int keep_it, int use_committed)
    104 {
    105 	const RF_LayoutSW_t *lp;
    106 	int     rc;
    107 
    108 	lp = rbuf->raidPtr->Layout.map;
    109 	rc = lp->SubmitReconBuffer(rbuf, keep_it, use_committed);
    110 	return (rc);
    111 }
    112 
    113 /*
    114  * rbuf          - the recon buffer to submit
    115  * keep_it       - whether we can keep this buffer or we have to return it
    116  * use_committed - whether to use a committed or an available recon buffer
    117  */
    118 int
    119 rf_SubmitReconBufferBasic(RF_ReconBuffer_t *rbuf, int keep_it,
    120 			  int use_committed)
    121 {
    122 	RF_Raid_t *raidPtr = rbuf->raidPtr;
    123 	RF_RaidLayout_t *layoutPtr = &raidPtr->Layout;
    124 	RF_ReconCtrl_t *reconCtrlPtr = raidPtr->reconControl;
    125 	RF_ReconParityStripeStatus_t *pssPtr;
    126 	RF_ReconBuffer_t *targetRbuf, *t = NULL;	/* temporary rbuf
    127 							 * pointers */
    128 	caddr_t ta;		/* temporary data buffer pointer */
    129 	RF_CallbackDesc_t *cb, *p;
    130 	int     retcode = 0, created = 0;
    131 
    132 	RF_Etimer_t timer;
    133 
    134 	/* makes no sense to have a submission from the failed disk */
    135 	RF_ASSERT(rbuf);
    136 	RF_ASSERT(rbuf->col != reconCtrlPtr->fcol);
    137 
    138 	Dprintf4("RECON: submission by col %d for psid %ld ru %d (failed offset %ld)\n",
    139 	    rbuf->col, (long) rbuf->parityStripeID, rbuf->which_ru, (long) rbuf->failedDiskSectorOffset);
    140 
    141 	RF_LOCK_PSS_MUTEX(raidPtr, rbuf->parityStripeID);
    142 
    143 	RF_LOCK_MUTEX(reconCtrlPtr->rb_mutex);
    144 
    145 	pssPtr = rf_LookupRUStatus(raidPtr, reconCtrlPtr->pssTable, rbuf->parityStripeID, rbuf->which_ru, RF_PSS_NONE, &created);
    146 	RF_ASSERT(pssPtr);	/* if it didn't exist, we wouldn't have gotten
    147 				 * an rbuf for it */
    148 
    149 	/* check to see if enough buffers have accumulated to do an XOR.  If
    150 	 * so, there's no need to acquire a floating rbuf.  Before we can do
    151 	 * any XORing, we must have acquired a destination buffer.  If we
    152 	 * have, then we can go ahead and do the XOR if (1) including this
    153 	 * buffer, enough bufs have accumulated, or (2) this is the last
    154 	 * submission for this stripe. Otherwise, we have to go acquire a
    155 	 * floating rbuf. */
    156 
    157 	targetRbuf = (RF_ReconBuffer_t *) pssPtr->rbuf;
    158 	if ((targetRbuf != NULL) &&
    159 	    ((pssPtr->xorBufCount == rf_numBufsToAccumulate - 1) || (targetRbuf->count + pssPtr->xorBufCount + 1 == layoutPtr->numDataCol))) {
    160 		pssPtr->rbufsForXor[pssPtr->xorBufCount++] = rbuf;	/* install this buffer */
    161 		Dprintf2("RECON: col %d invoking a %d-way XOR\n", rbuf->col, pssPtr->xorBufCount);
    162 		RF_ETIMER_START(timer);
    163 		rf_MultiWayReconXor(raidPtr, pssPtr);
    164 		RF_ETIMER_STOP(timer);
    165 		RF_ETIMER_EVAL(timer);
    166 		raidPtr->accumXorTimeUs += RF_ETIMER_VAL_US(timer);
    167 		if (!keep_it) {
    168 			raidPtr->recon_tracerecs[rbuf->col].xor_us = RF_ETIMER_VAL_US(timer);
    169 			RF_ETIMER_STOP(raidPtr->recon_tracerecs[rbuf->col].recon_timer);
    170 			RF_ETIMER_EVAL(raidPtr->recon_tracerecs[rbuf->col].recon_timer);
    171 			raidPtr->recon_tracerecs[rbuf->col].specific.recon.recon_return_to_submit_us +=
    172 			    RF_ETIMER_VAL_US(raidPtr->recon_tracerecs[rbuf->col].recon_timer);
    173 			RF_ETIMER_START(raidPtr->recon_tracerecs[rbuf->col].recon_timer);
    174 
    175 			rf_LogTraceRec(raidPtr, &raidPtr->recon_tracerecs[rbuf->col]);
    176 		}
    177 		rf_CheckForFullRbuf(raidPtr, reconCtrlPtr, pssPtr, layoutPtr->numDataCol);
    178 
    179 		/* if use_committed is on, we _must_ consume a buffer off the
    180 		 * committed list. */
    181 		if (use_committed) {
    182 			t = reconCtrlPtr->committedRbufs;
    183 			RF_ASSERT(t);
    184 			reconCtrlPtr->committedRbufs = t->next;
    185 			rf_ReleaseFloatingReconBuffer(raidPtr, t);
    186 		}
    187 		if (keep_it) {
    188 			RF_UNLOCK_PSS_MUTEX(raidPtr, rbuf->parityStripeID);
    189 			RF_UNLOCK_MUTEX(reconCtrlPtr->rb_mutex);
    190 			rf_FreeReconBuffer(rbuf);
    191 			return (retcode);
    192 		}
    193 		goto out;
    194 	}
    195 	/* set the value of "t", which we'll use as the rbuf from here on */
    196 	if (keep_it) {
    197 		t = rbuf;
    198 	} else {
    199 		if (use_committed) {	/* if a buffer has been committed to
    200 					 * us, use it */
    201 			t = reconCtrlPtr->committedRbufs;
    202 			RF_ASSERT(t);
    203 			reconCtrlPtr->committedRbufs = t->next;
    204 			t->next = NULL;
    205 		} else
    206 			if (reconCtrlPtr->floatingRbufs) {
    207 				t = reconCtrlPtr->floatingRbufs;
    208 				reconCtrlPtr->floatingRbufs = t->next;
    209 				t->next = NULL;
    210 			}
    211 	}
    212 
    213 	/* If we weren't able to acquire a buffer, append to the end of the
    214 	 * buf list in the recon ctrl struct. */
    215 	if (!t) {
    216 		RF_ASSERT(!keep_it && !use_committed);
    217 		Dprintf2("RECON: row %d col %d failed to acquire floating rbuf\n", rbuf->row, rbuf->col);
    218 
    219 		raidPtr->procsInBufWait++;
    220 		if ((raidPtr->procsInBufWait == raidPtr->numCol - 1) && (raidPtr->numFullReconBuffers == 0)) {
    221 			printf("Buffer wait deadlock detected.  Exiting.\n");
    222 			rf_PrintPSStatusTable(raidPtr);
    223 			RF_PANIC();
    224 		}
    225 		pssPtr->flags |= RF_PSS_BUFFERWAIT;
    226 		cb = rf_AllocCallbackDesc();	/* append to buf wait list in
    227 						 * recon ctrl structure */
    228 		cb->row = rbuf->row;
    229 		cb->col = rbuf->col;
    230 		cb->callbackArg.v = rbuf->parityStripeID;
    231 		cb->callbackArg2.v = rbuf->which_ru;
    232 		cb->next = NULL;
    233 		if (!reconCtrlPtr->bufferWaitList)
    234 			reconCtrlPtr->bufferWaitList = cb;
    235 		else {		/* might want to maintain head/tail pointers
    236 				 * here rather than search for end of list */
    237 			for (p = reconCtrlPtr->bufferWaitList; p->next; p = p->next);
    238 			p->next = cb;
    239 		}
    240 		retcode = 1;
    241 		goto out;
    242 	}
    243 	Dprintf2("RECON: row %d col %d acquired rbuf\n", rbuf->row, rbuf->col);
    244 	RF_ETIMER_STOP(raidPtr->recon_tracerecs[rbuf->col].recon_timer);
    245 	RF_ETIMER_EVAL(raidPtr->recon_tracerecs[rbuf->col].recon_timer);
    246 	raidPtr->recon_tracerecs[rbuf->col].specific.recon.recon_return_to_submit_us +=
    247 	    RF_ETIMER_VAL_US(raidPtr->recon_tracerecs[rbuf->col].recon_timer);
    248 	RF_ETIMER_START(raidPtr->recon_tracerecs[rbuf->col].recon_timer);
    249 
    250 	rf_LogTraceRec(raidPtr, &raidPtr->recon_tracerecs[rbuf->col]);
    251 
    252 	/* initialize the buffer */
    253 	if (t != rbuf) {
    254 		t->row = rbuf->row;
    255 		t->col = reconCtrlPtr->fcol;
    256 		t->parityStripeID = rbuf->parityStripeID;
    257 		t->which_ru = rbuf->which_ru;
    258 		t->failedDiskSectorOffset = rbuf->failedDiskSectorOffset;
    259 		t->spRow = rbuf->spRow;
    260 		t->spCol = rbuf->spCol;
    261 		t->spOffset = rbuf->spOffset;
    262 
    263 		ta = t->buffer;
    264 		t->buffer = rbuf->buffer;
    265 		rbuf->buffer = ta;	/* swap buffers */
    266 	}
    267 	/* the first installation always gets installed as the destination
    268 	 * buffer. subsequent installations get stacked up to allow for
    269 	 * multi-way XOR */
    270 	if (!pssPtr->rbuf) {
    271 		pssPtr->rbuf = t;
    272 		t->count = 1;
    273 	} else
    274 		pssPtr->rbufsForXor[pssPtr->xorBufCount++] = t;	/* install this buffer */
    275 
    276 	rf_CheckForFullRbuf(raidPtr, reconCtrlPtr, pssPtr, layoutPtr->numDataCol);	/* the buffer is full if
    277 											 * G=2 */
    278 
    279 out:
    280 	RF_UNLOCK_PSS_MUTEX(raidPtr, rbuf->parityStripeID);
    281 	RF_UNLOCK_MUTEX(reconCtrlPtr->rb_mutex);
    282 	return (retcode);
    283 }
    284 /* pssPtr - the pss descriptor for this parity stripe */
    285 int
    286 rf_MultiWayReconXor(RF_Raid_t *raidPtr, RF_ReconParityStripeStatus_t *pssPtr)
    287 {
    288 	int     i, numBufs = pssPtr->xorBufCount;
    289 	int     numBytes = rf_RaidAddressToByte(raidPtr, raidPtr->Layout.sectorsPerStripeUnit * raidPtr->Layout.SUsPerRU);
    290 	RF_ReconBuffer_t **rbufs = (RF_ReconBuffer_t **) pssPtr->rbufsForXor;
    291 	RF_ReconBuffer_t *targetRbuf = (RF_ReconBuffer_t *) pssPtr->rbuf;
    292 
    293 	RF_ASSERT(pssPtr->rbuf != NULL);
    294 	RF_ASSERT(numBufs > 0 && numBufs < RF_PS_MAX_BUFS);
    295 #ifdef _KERNEL
    296 #ifndef __NetBSD__
    297 	thread_block();		/* yield the processor before doing a big XOR */
    298 #endif
    299 #endif				/* _KERNEL */
    300 	/*
    301          * XXX
    302          *
    303          * What if more than 9 bufs?
    304          */
    305 	nWayXorFuncs[numBufs] (pssPtr->rbufsForXor, targetRbuf, numBytes / sizeof(long));
    306 
    307 	/* release all the reconstruction buffers except the last one, which
    308 	 * belongs to the disk whose submission caused this XOR to take place */
    309 	for (i = 0; i < numBufs - 1; i++) {
    310 		if (rbufs[i]->type == RF_RBUF_TYPE_FLOATING)
    311 			rf_ReleaseFloatingReconBuffer(raidPtr, rbufs[i]);
    312 		else
    313 			if (rbufs[i]->type == RF_RBUF_TYPE_FORCED)
    314 				rf_FreeReconBuffer(rbufs[i]);
    315 			else
    316 				RF_ASSERT(0);
    317 	}
    318 	targetRbuf->count += pssPtr->xorBufCount;
    319 	pssPtr->xorBufCount = 0;
    320 	return (0);
    321 }
    322 /* removes one full buffer from one of the full-buffer lists and returns it.
    323  *
    324  * ASSUMES THE RB_MUTEX IS UNLOCKED AT ENTRY.
    325  */
    326 RF_ReconBuffer_t *
    327 rf_GetFullReconBuffer(RF_ReconCtrl_t *reconCtrlPtr)
    328 {
    329 	RF_ReconBuffer_t *p;
    330 
    331 	RF_LOCK_MUTEX(reconCtrlPtr->rb_mutex);
    332 
    333 	if ((p = reconCtrlPtr->fullBufferList) != NULL) {
    334 		reconCtrlPtr->fullBufferList = p->next;
    335 		p->next = NULL;
    336 	}
    337 	RF_UNLOCK_MUTEX(reconCtrlPtr->rb_mutex);
    338 	return (p);
    339 }
    340 
    341 
    342 /* if the reconstruction buffer is full, move it to the full list,
    343  * which is maintained sorted by failed disk sector offset
    344  *
    345  * ASSUMES THE RB_MUTEX IS LOCKED AT ENTRY.  */
    346 int
    347 rf_CheckForFullRbuf(RF_Raid_t *raidPtr, RF_ReconCtrl_t *reconCtrl,
    348 		    RF_ReconParityStripeStatus_t *pssPtr, int numDataCol)
    349 {
    350 	RF_ReconBuffer_t *p, *pt, *rbuf = (RF_ReconBuffer_t *) pssPtr->rbuf;
    351 
    352 	if (rbuf->count == numDataCol) {
    353 		raidPtr->numFullReconBuffers++;
    354 		Dprintf2("RECON: rbuf for psid %ld ru %d has filled\n",
    355 		    (long) rbuf->parityStripeID, rbuf->which_ru);
    356 		if (!reconCtrl->fullBufferList || (rbuf->failedDiskSectorOffset < reconCtrl->fullBufferList->failedDiskSectorOffset)) {
    357 			Dprintf2("RECON: rbuf for psid %ld ru %d is head of list\n",
    358 			    (long) rbuf->parityStripeID, rbuf->which_ru);
    359 			rbuf->next = reconCtrl->fullBufferList;
    360 			reconCtrl->fullBufferList = rbuf;
    361 		} else {
    362 			for (pt = reconCtrl->fullBufferList, p = pt->next; p && p->failedDiskSectorOffset < rbuf->failedDiskSectorOffset; pt = p, p = p->next);
    363 			rbuf->next = p;
    364 			pt->next = rbuf;
    365 			Dprintf2("RECON: rbuf for psid %ld ru %d is in list\n",
    366 			    (long) rbuf->parityStripeID, rbuf->which_ru);
    367 		}
    368 		rbuf->pssPtr = pssPtr;
    369 		pssPtr->rbuf = NULL;
    370 		rf_CauseReconEvent(raidPtr, rbuf->col, NULL, RF_REVENT_BUFREADY);
    371 	}
    372 	return (0);
    373 }
    374 
    375 
    376 /* release a floating recon buffer for someone else to use.
    377  * assumes the rb_mutex is LOCKED at entry
    378  */
    379 void
    380 rf_ReleaseFloatingReconBuffer(RF_Raid_t *raidPtr, RF_ReconBuffer_t *rbuf)
    381 {
    382 	RF_ReconCtrl_t *rcPtr = raidPtr->reconControl;
    383 	RF_CallbackDesc_t *cb;
    384 
    385 	Dprintf2("RECON: releasing rbuf for psid %ld ru %d\n",
    386 	    (long) rbuf->parityStripeID, rbuf->which_ru);
    387 
    388 	/* if anyone is waiting on buffers, wake one of them up.  They will
    389 	 * subsequently wake up anyone else waiting on their RU */
    390 	if (rcPtr->bufferWaitList) {
    391 		rbuf->next = rcPtr->committedRbufs;
    392 		rcPtr->committedRbufs = rbuf;
    393 		cb = rcPtr->bufferWaitList;
    394 		rcPtr->bufferWaitList = cb->next;
    395 		rf_CauseReconEvent(raidPtr, cb->col, (void *) 1, RF_REVENT_BUFCLEAR);	/* arg==1 => we've
    396 												 * committed a buffer */
    397 		rf_FreeCallbackDesc(cb);
    398 		raidPtr->procsInBufWait--;
    399 	} else {
    400 		rbuf->next = rcPtr->floatingRbufs;
    401 		rcPtr->floatingRbufs = rbuf;
    402 	}
    403 }
    404