⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rf_reconbuffer.c

📁 RAIDFrame是个非常好的磁盘阵列RAID仿真工具
💻 C
📖 第 1 页 / 共 2 页
字号:
/* * Copyright (c) 1995 Carnegie-Mellon University. * All rights reserved. * * Author: Mark Holland * * Permission to use, copy, modify and distribute this software and * its documentation is hereby granted, provided that both the copyright * notice and this permission notice appear in all copies of the * software, derivative works or modified versions, and any portions * thereof, and that both notices appear in supporting documentation. * * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. * * Carnegie Mellon requests users of this software to return to * *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU *  School of Computer Science *  Carnegie Mellon University *  Pittsburgh PA 15213-3890 * * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. *//*************************************************** * * rf_reconbuffer.c -- reconstruction buffer manager * ***************************************************//* $Locker:  $ * $Log: rf_reconbuffer.c,v $ * Revision 1.33  1996/07/27  23:36:08  jimz * Solaris port of simulator * * Revision 1.32  1996/07/17  21:00:58  jimz * clean up timer interface, tracing * * Revision 1.31  1996/07/13  00:00:59  jimz * sanitized generalized reconstruction architecture * cleaned up head sep, rbuf problems * * Revision 1.30  1996/06/07  21:33:04  jimz * begin using consistent types for sector numbers, * stripe numbers, row+col numbers, recon unit numbers * * Revision 1.29  1996/06/06  01:23:58  jimz * don't free reconCtrlPtr until after all fields have been used out of it * * Revision 1.28  1996/06/05  18:06:02  jimz * Major code cleanup. The Great Renaming is now done. * Better modularity. Better typing. Fixed a bunch of * synchronization bugs. Made a lot of global stuff * per-desc or per-array. Removed dead code. * * Revision 1.27  1996/06/03  23:28:26  jimz * more bugfixes * check in tree to sync for IPDS runs with current bugfixes * there still may be a problem with threads in the script test * getting I/Os stuck- not trivially reproducible (runs ~50 times * in a row without getting stuck) * * Revision 1.26  1996/06/02  17:31:48  jimz * Moved a lot of global stuff into array structure, where it belongs. * Fixed up paritylogging, pss modules in this manner. Some general * code cleanup. Removed lots of dead code, some dead files. * * Revision 1.25  1996/05/31  22:26:54  jimz * fix a lot of mapping problems, memory allocation problems * found some weird lock issues, fixed 'em * more code cleanup * * Revision 1.24  1996/05/30  12:59:18  jimz * make etimer happier, more portable * * Revision 1.23  1996/05/27  18:56:37  jimz * more code cleanup * better typing * compiles in all 3 environments * * Revision 1.22  1996/05/24  22:17:04  jimz * continue code + namespace cleanup * typed a bunch of flags * * Revision 1.21  1996/05/23  21:46:35  jimz * checkpoint in code cleanup (release prep) * lots of types, function names have been fixed * * Revision 1.20  1996/05/23  00:33:23  jimz * code cleanup: move all debug decls to rf_options.c, all extern * debug decls to rf_options.h, all debug vars preceded by rf_ * * Revision 1.19  1996/05/18  19:51:34  jimz * major code cleanup- fix syntax, make some types consistent, * add prototypes, clean out dead code, et cetera * * Revision 1.18  1995/12/12  18:10:06  jimz * MIN -> RF_MIN, MAX -> RF_MAX, ASSERT -> RF_ASSERT * fix 80-column brain damage in comments * * Revision 1.17  1995/12/06  15:03:24  root * added copyright info * */#include "rf_raid.h"#include "rf_reconbuffer.h"#include "rf_acctrace.h"#include "rf_etimer.h"#include "rf_general.h"#include "rf_debugprint.h"#include "rf_revent.h"#include "rf_reconutil.h"#include "rf_nwayxor.h"#ifdef KERNEL#define Dprintf1(s,a) if (rf_reconbufferDebug) printf(s,a)#define Dprintf2(s,a,b) if (rf_reconbufferDebug) printf(s,a,b)#define Dprintf3(s,a,b,c) if (rf_reconbufferDebug) printf(s,a,b,c)#define Dprintf4(s,a,b,c,d) if (rf_reconbufferDebug) printf(s,a,b,c,d)#define Dprintf5(s,a,b,c,d,e) if (rf_reconbufferDebug) printf(s,a,b,c,d,e)#else /* KERNEL */#define Dprintf1(s,a)         if (rf_reconbufferDebug) rf_debug_printf(s,(void *)((unsigned long)a),NULL,NULL,NULL,NULL,NULL,NULL,NULL)#define Dprintf2(s,a,b)       if (rf_reconbufferDebug) rf_debug_printf(s,(void *)((unsigned long)a),(void *)((unsigned long)b),NULL,NULL,NULL,NULL,NULL,NULL)#define Dprintf3(s,a,b,c)     if (rf_reconbufferDebug) rf_debug_printf(s,(void *)((unsigned long)a),(void *)((unsigned long)b),(void *)((unsigned long)c),NULL,NULL,NULL,NULL,NULL)#define Dprintf4(s,a,b,c,d)   if (rf_reconbufferDebug) rf_debug_printf(s,(void *)((unsigned long)a),(void *)((unsigned long)b),(void *)((unsigned long)c),(void *)((unsigned long)d),NULL,NULL,NULL,NULL)#define Dprintf5(s,a,b,c,d,e) if (rf_reconbufferDebug) rf_debug_printf(s,(void *)((unsigned long)a),(void *)((unsigned long)b),(void *)((unsigned long)c),(void *)((unsigned long)d),(void *)((unsigned long)e),NULL,NULL,NULL)#endif /* KERNEL *//***************************************************************************************** * * Submit a reconstruction buffer to the manager for XOR. * We can only submit a buffer if (1) we can xor into an existing buffer, which means * we don't have to acquire a new one, (2) we can acquire a floating * recon buffer, or (3) the caller has indicated that we are allowed to keep the * submitted buffer. * * Returns non-zero if and only if we were not able to submit. * In this case, we append the current disk ID to the wait list on the indicated * RU, so that it will be re-enabled when we acquire a buffer for this RU. * ****************************************************************************************//* just to make the code below more readable */#define BUFWAIT_APPEND(_cb_, _pssPtr_, _row_, _col_) \  _cb_ = rf_AllocCallbackDesc();                    \  (_cb_)->row = (_row_); (_cb_)->col = (_col_); (_cb_)->next = (_pssPtr_)->bufWaitList; (_pssPtr_)->bufWaitList = (_cb_);/* * nWayXorFuncs[i] is a pointer to a function that will xor "i" * bufs into the accumulating sum. */static RF_VoidFuncPtr nWayXorFuncs[] = {  NULL, rf_nWayXor1, rf_nWayXor2, rf_nWayXor3, rf_nWayXor4,  rf_nWayXor5, rf_nWayXor6, rf_nWayXor7, rf_nWayXor8, rf_nWayXor9};    int rf_SubmitReconBuffer(rbuf, keep_it, use_committed)  RF_ReconBuffer_t  *rbuf;          /* the recon buffer to submit */  int                keep_it;       /* whether we can keep this buffer or we have to return it */  int                use_committed; /* whether to use a committed or an available recon buffer */{  RF_LayoutSW_t *lp;  int rc;  lp = rbuf->raidPtr->Layout.map;  rc = lp->SubmitReconBuffer(rbuf, keep_it, use_committed);  return(rc);}int rf_SubmitReconBufferBasic(rbuf, keep_it, use_committed)  RF_ReconBuffer_t  *rbuf;          /* the recon buffer to submit */  int                keep_it;       /* whether we can keep this buffer or we have to return it */  int                use_committed; /* whether to use a committed or an available recon buffer */{  RF_Raid_t *raidPtr                = rbuf->raidPtr;  RF_RaidLayout_t *layoutPtr        = &raidPtr->Layout;  RF_ReconCtrl_t *reconCtrlPtr      = raidPtr->reconControl[rbuf->row];  RF_ReconParityStripeStatus_t *pssPtr;  RF_ReconBuffer_t *targetRbuf, *t = NULL;        /* temporary rbuf pointers */  caddr_t ta;                                     /* temporary data buffer pointer */  RF_CallbackDesc_t *cb, *p;  int retcode = 0, created = 0;    RF_Etimer_t timer;  /* makes no sense to have a submission from the failed disk */  RF_ASSERT(rbuf);  RF_ASSERT(rbuf->col != reconCtrlPtr->fcol);    Dprintf5("RECON: submission by row %d col %d for psid %ld ru %d (failed offset %ld)\n",			       rbuf->row, rbuf->col, rbuf->parityStripeID, rbuf->which_ru, rbuf->failedDiskSectorOffset);  RF_LOCK_PSS_MUTEX(raidPtr,rbuf->row,rbuf->parityStripeID);  RF_LOCK_MUTEX(reconCtrlPtr->rb_mutex);  pssPtr = rf_LookupRUStatus(raidPtr, reconCtrlPtr->pssTable, rbuf->parityStripeID, rbuf->which_ru, RF_PSS_NONE, &created);  RF_ASSERT(pssPtr);  /* if it didn't exist, we wouldn't have gotten an rbuf for it */  /* check to see if enough buffers have accumulated to do an XOR.  If so, there's no need to   * acquire a floating rbuf.  Before we can do any XORing, we must have acquired a destination   * buffer.  If we have, then we can go ahead and do the XOR if (1) including this buffer, enough   * bufs have accumulated, or (2) this is the last submission for this stripe.   * Otherwise, we have to go acquire a floating rbuf.   */  targetRbuf = (RF_ReconBuffer_t *) pssPtr->rbuf;  if (  (targetRbuf != NULL) &&        ((pssPtr->xorBufCount == rf_numBufsToAccumulate-1) || (targetRbuf->count + pssPtr->xorBufCount + 1 == layoutPtr->numDataCol)) ) {    pssPtr->rbufsForXor[ pssPtr->xorBufCount++ ] = rbuf;          /* install this buffer */    Dprintf3("RECON: row %d col %d invoking a %d-way XOR\n",rbuf->row, rbuf->col,pssPtr->xorBufCount);    RF_ETIMER_START(timer);    rf_MultiWayReconXor(raidPtr, pssPtr);    RF_ETIMER_STOP(timer); RF_ETIMER_EVAL(timer);    raidPtr->accumXorTimeUs += RF_ETIMER_VAL_US(timer);    if (!keep_it) {      raidPtr->recon_tracerecs[rbuf->col].xor_us = RF_ETIMER_VAL_US(timer);      RF_ETIMER_STOP(raidPtr->recon_tracerecs[rbuf->col].recon_timer);      RF_ETIMER_EVAL(raidPtr->recon_tracerecs[rbuf->col].recon_timer);      raidPtr->recon_tracerecs[rbuf->col].specific.recon.recon_return_to_submit_us +=        RF_ETIMER_VAL_US(raidPtr->recon_tracerecs[rbuf->col].recon_timer);      RF_ETIMER_START(raidPtr->recon_tracerecs[rbuf->col].recon_timer);        rf_LogTraceRec(raidPtr, &raidPtr->recon_tracerecs[rbuf->col]);    }    rf_CheckForFullRbuf(raidPtr, reconCtrlPtr, pssPtr, layoutPtr->numDataCol);    /* if use_committed is on, we _must_ consume a buffer off the committed list. */    if (use_committed) {      t = reconCtrlPtr->committedRbufs;      RF_ASSERT(t);      reconCtrlPtr->committedRbufs = t->next;      rf_ReleaseFloatingReconBuffer(raidPtr, rbuf->row, t);    }    if (keep_it) {      RF_UNLOCK_PSS_MUTEX( raidPtr,rbuf->row,rbuf->parityStripeID);      RF_UNLOCK_MUTEX( reconCtrlPtr->rb_mutex );      rf_FreeReconBuffer(rbuf);      return(retcode);    }    goto out;  }  /* set the value of "t", which we'll use as the rbuf from here on */  if (keep_it) {    t = rbuf;  }  else {

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -