Home | History | Annotate | Line # | Download | only in raidframe
rf_psstatus.c revision 1.7
      1  1.7    oster /*	$NetBSD: rf_psstatus.c,v 1.7 2001/10/04 15:58:55 oster Exp $	*/
      2  1.1    oster /*
      3  1.1    oster  * Copyright (c) 1995 Carnegie-Mellon University.
      4  1.1    oster  * All rights reserved.
      5  1.1    oster  *
      6  1.1    oster  * Author: Mark Holland
      7  1.1    oster  *
      8  1.1    oster  * Permission to use, copy, modify and distribute this software and
      9  1.1    oster  * its documentation is hereby granted, provided that both the copyright
     10  1.1    oster  * notice and this permission notice appear in all copies of the
     11  1.1    oster  * software, derivative works or modified versions, and any portions
     12  1.1    oster  * thereof, and that both notices appear in supporting documentation.
     13  1.1    oster  *
     14  1.1    oster  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
     15  1.1    oster  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
     16  1.1    oster  * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
     17  1.1    oster  *
     18  1.1    oster  * Carnegie Mellon requests users of this software to return to
     19  1.1    oster  *
     20  1.1    oster  *  Software Distribution Coordinator  or  Software.Distribution (at) CS.CMU.EDU
     21  1.1    oster  *  School of Computer Science
     22  1.1    oster  *  Carnegie Mellon University
     23  1.1    oster  *  Pittsburgh PA 15213-3890
     24  1.1    oster  *
     25  1.1    oster  * any improvements or extensions that they make and grant Carnegie the
     26  1.1    oster  * rights to redistribute these changes.
     27  1.1    oster  */
     28  1.1    oster 
     29  1.1    oster /*****************************************************************************
     30  1.1    oster  *
     31  1.1    oster  * psstatus.c
     32  1.1    oster  *
     33  1.1    oster  * The reconstruction code maintains a bunch of status related to the parity
     34  1.1    oster  * stripes that are currently under reconstruction.  This header file defines
     35  1.1    oster  * the status structures.
     36  1.1    oster  *
     37  1.1    oster  *****************************************************************************/
     38  1.1    oster 
     39  1.7    oster #include <dev/raidframe/raidframevar.h>
     40  1.7    oster 
     41  1.1    oster #include "rf_raid.h"
     42  1.1    oster #include "rf_general.h"
     43  1.1    oster #include "rf_debugprint.h"
     44  1.1    oster #include "rf_freelist.h"
     45  1.1    oster #include "rf_psstatus.h"
     46  1.1    oster #include "rf_shutdown.h"
     47  1.1    oster 
     48  1.1    oster #define Dprintf1(s,a)         if (rf_pssDebug) rf_debug_printf(s,(void *)((unsigned long)a),NULL,NULL,NULL,NULL,NULL,NULL,NULL)
     49  1.1    oster #define Dprintf2(s,a,b)       if (rf_pssDebug) rf_debug_printf(s,(void *)((unsigned long)a),(void *)((unsigned long)b),NULL,NULL,NULL,NULL,NULL,NULL)
     50  1.1    oster #define Dprintf3(s,a,b,c)     if (rf_pssDebug) rf_debug_printf(s,(void *)((unsigned long)a),(void *)((unsigned long)b),(void *)((unsigned long)c),NULL,NULL,NULL,NULL,NULL)
     51  1.1    oster 
     52  1.3    oster static void
     53  1.3    oster RealPrintPSStatusTable(RF_Raid_t * raidPtr,
     54  1.3    oster     RF_PSStatusHeader_t * pssTable);
     55  1.1    oster 
     56  1.1    oster #define RF_MAX_FREE_PSS  32
     57  1.1    oster #define RF_PSS_INC        8
     58  1.1    oster #define RF_PSS_INITIAL    4
     59  1.1    oster 
     60  1.3    oster static int init_pss(RF_ReconParityStripeStatus_t *, RF_Raid_t *);
     61  1.1    oster static void clean_pss(RF_ReconParityStripeStatus_t *, RF_Raid_t *);
     62  1.1    oster static void rf_ShutdownPSStatus(void *);
     63  1.1    oster 
     64  1.3    oster static int
     65  1.3    oster init_pss(p, raidPtr)
     66  1.3    oster 	RF_ReconParityStripeStatus_t *p;
     67  1.3    oster 	RF_Raid_t *raidPtr;
     68  1.3    oster {
     69  1.3    oster 	RF_Calloc(p->issued, raidPtr->numCol, sizeof(char), (char *));
     70  1.3    oster 	if (p->issued == NULL)
     71  1.3    oster 		return (ENOMEM);
     72  1.3    oster 	return (0);
     73  1.3    oster }
     74  1.3    oster 
     75  1.3    oster static void
     76  1.3    oster clean_pss(p, raidPtr)
     77  1.3    oster 	RF_ReconParityStripeStatus_t *p;
     78  1.3    oster 	RF_Raid_t *raidPtr;
     79  1.3    oster {
     80  1.3    oster 	RF_Free(p->issued, raidPtr->numCol * sizeof(char));
     81  1.3    oster }
     82  1.3    oster 
     83  1.3    oster static void
     84  1.3    oster rf_ShutdownPSStatus(arg)
     85  1.3    oster 	void   *arg;
     86  1.3    oster {
     87  1.3    oster 	RF_Raid_t *raidPtr = (RF_Raid_t *) arg;
     88  1.3    oster 
     89  1.3    oster 	RF_FREELIST_DESTROY_CLEAN_ARG(raidPtr->pss_freelist, next, (RF_ReconParityStripeStatus_t *), clean_pss, raidPtr);
     90  1.3    oster }
     91  1.3    oster 
     92  1.3    oster int
     93  1.3    oster rf_ConfigurePSStatus(
     94  1.3    oster     RF_ShutdownList_t ** listp,
     95  1.3    oster     RF_Raid_t * raidPtr,
     96  1.3    oster     RF_Config_t * cfgPtr)
     97  1.3    oster {
     98  1.3    oster 	int     rc;
     99  1.3    oster 
    100  1.3    oster 	raidPtr->pssTableSize = RF_PSS_DEFAULT_TABLESIZE;
    101  1.3    oster 	RF_FREELIST_CREATE(raidPtr->pss_freelist, RF_MAX_FREE_PSS,
    102  1.3    oster 	    RF_PSS_INC, sizeof(RF_ReconParityStripeStatus_t));
    103  1.3    oster 	if (raidPtr->pss_freelist == NULL)
    104  1.3    oster 		return (ENOMEM);
    105  1.3    oster 	rc = rf_ShutdownCreate(listp, rf_ShutdownPSStatus, raidPtr);
    106  1.3    oster 	if (rc) {
    107  1.3    oster 		RF_ERRORMSG3("Unable to add to shutdown list file %s line %d rc=%d\n",
    108  1.3    oster 		    __FILE__, __LINE__, rc);
    109  1.3    oster 		rf_ShutdownPSStatus(raidPtr);
    110  1.3    oster 		return (rc);
    111  1.3    oster 	}
    112  1.3    oster 	RF_FREELIST_PRIME_INIT_ARG(raidPtr->pss_freelist, RF_PSS_INITIAL, next,
    113  1.3    oster 	    (RF_ReconParityStripeStatus_t *), init_pss, raidPtr);
    114  1.3    oster 	return (0);
    115  1.1    oster }
    116  1.1    oster /*****************************************************************************************
    117  1.1    oster  * sets up the pss table
    118  1.1    oster  * We pre-allocate a bunch of entries to avoid as much as possible having to
    119  1.1    oster  * malloc up hash chain entries.
    120  1.1    oster  ****************************************************************************************/
    121  1.3    oster RF_PSStatusHeader_t *
    122  1.3    oster rf_MakeParityStripeStatusTable(raidPtr)
    123  1.3    oster 	RF_Raid_t *raidPtr;
    124  1.3    oster {
    125  1.3    oster 	RF_PSStatusHeader_t *pssTable;
    126  1.3    oster 	int     i, j, rc;
    127  1.3    oster 
    128  1.3    oster 	RF_Calloc(pssTable, raidPtr->pssTableSize, sizeof(RF_PSStatusHeader_t), (RF_PSStatusHeader_t *));
    129  1.3    oster 	for (i = 0; i < raidPtr->pssTableSize; i++) {
    130  1.3    oster 		rc = rf_mutex_init(&pssTable[i].mutex);
    131  1.3    oster 		if (rc) {
    132  1.3    oster 			RF_ERRORMSG3("Unable to init mutex file %s line %d rc=%d\n", __FILE__,
    133  1.3    oster 			    __LINE__, rc);
    134  1.3    oster 			/* fail and deallocate */
    135  1.3    oster 			for (j = 0; j < i; j++) {
    136  1.3    oster 				rf_mutex_destroy(&pssTable[i].mutex);
    137  1.3    oster 			}
    138  1.3    oster 			RF_Free(pssTable, raidPtr->pssTableSize * sizeof(RF_PSStatusHeader_t));
    139  1.3    oster 			return (NULL);
    140  1.3    oster 		}
    141  1.3    oster 	}
    142  1.3    oster 	return (pssTable);
    143  1.3    oster }
    144  1.3    oster 
    145  1.3    oster void
    146  1.3    oster rf_FreeParityStripeStatusTable(raidPtr, pssTable)
    147  1.3    oster 	RF_Raid_t *raidPtr;
    148  1.3    oster 	RF_PSStatusHeader_t *pssTable;
    149  1.3    oster {
    150  1.3    oster 	int     i;
    151  1.3    oster 
    152  1.3    oster 	if (rf_pssDebug)
    153  1.3    oster 		RealPrintPSStatusTable(raidPtr, pssTable);
    154  1.3    oster 	for (i = 0; i < raidPtr->pssTableSize; i++) {
    155  1.3    oster 		if (pssTable[i].chain) {
    156  1.3    oster 			printf("ERROR: pss hash chain not null at recon shutdown\n");
    157  1.3    oster 		}
    158  1.3    oster 		rf_mutex_destroy(&pssTable[i].mutex);
    159  1.3    oster 	}
    160  1.3    oster 	RF_Free(pssTable, raidPtr->pssTableSize * sizeof(RF_PSStatusHeader_t));
    161  1.1    oster }
    162  1.1    oster 
    163  1.1    oster 
    164  1.1    oster /* looks up the status structure for a parity stripe.
    165  1.1    oster  * if the create_flag is on, creates and returns the status structure it it doesn't exist
    166  1.1    oster  * otherwise returns NULL if the status structure does not exist
    167  1.1    oster  *
    168  1.1    oster  * ASSUMES THE PSS DESCRIPTOR IS LOCKED UPON ENTRY
    169  1.1    oster  */
    170  1.3    oster RF_ReconParityStripeStatus_t *
    171  1.3    oster rf_LookupRUStatus(
    172  1.3    oster     RF_Raid_t * raidPtr,
    173  1.3    oster     RF_PSStatusHeader_t * pssTable,
    174  1.3    oster     RF_StripeNum_t psID,
    175  1.3    oster     RF_ReconUnitNum_t which_ru,
    176  1.3    oster     RF_PSSFlags_t flags,	/* whether or not to create it if it doesn't
    177  1.3    oster 				 * exist + what flags to set initially */
    178  1.3    oster     int *created)
    179  1.3    oster {
    180  1.3    oster 	RF_PSStatusHeader_t *hdr = &pssTable[RF_HASH_PSID(raidPtr, psID)];
    181  1.3    oster 	RF_ReconParityStripeStatus_t *p, *pssPtr = hdr->chain;
    182  1.3    oster 
    183  1.3    oster 	*created = 0;
    184  1.3    oster 	for (p = pssPtr; p; p = p->next) {
    185  1.3    oster 		if (p->parityStripeID == psID && p->which_ru == which_ru)
    186  1.3    oster 			break;
    187  1.3    oster 	}
    188  1.3    oster 
    189  1.3    oster 	if (!p && (flags & RF_PSS_CREATE)) {
    190  1.3    oster 		Dprintf2("PSS: creating pss for psid %ld ru %d\n", psID, which_ru);
    191  1.3    oster 		p = rf_AllocPSStatus(raidPtr);
    192  1.3    oster 		p->next = hdr->chain;
    193  1.3    oster 		hdr->chain = p;
    194  1.3    oster 
    195  1.3    oster 		p->parityStripeID = psID;
    196  1.3    oster 		p->which_ru = which_ru;
    197  1.3    oster 		p->flags = flags;
    198  1.3    oster 		p->rbuf = NULL;
    199  1.3    oster 		p->writeRbuf = NULL;
    200  1.3    oster 		p->blockCount = 0;
    201  1.3    oster 		p->procWaitList = NULL;
    202  1.3    oster 		p->blockWaitList = NULL;
    203  1.3    oster 		p->bufWaitList = NULL;
    204  1.3    oster 		*created = 1;
    205  1.3    oster 	} else
    206  1.3    oster 		if (p) {	/* we didn't create, but we want to specify
    207  1.3    oster 				 * some new status */
    208  1.3    oster 			p->flags |= flags;	/* add in whatever flags we're
    209  1.3    oster 						 * specifying */
    210  1.3    oster 		}
    211  1.3    oster 	if (p && (flags & RF_PSS_RECON_BLOCKED)) {
    212  1.3    oster 		p->blockCount++;/* if we're asking to block recon, bump the
    213  1.3    oster 				 * count */
    214  1.5    oster 		Dprintf3("raid%d: Blocked recon on psid %ld.  count now %d\n",
    215  1.5    oster 			 raidPtr->raidid, psID, p->blockCount);
    216  1.3    oster 	}
    217  1.3    oster 	return (p);
    218  1.1    oster }
    219  1.1    oster /* deletes an entry from the parity stripe status table.  typically used
    220  1.1    oster  * when an entry has been allocated solely to block reconstruction, and
    221  1.1    oster  * no recon was requested while recon was blocked.  Assumes the hash
    222  1.1    oster  * chain is ALREADY LOCKED.
    223  1.1    oster  */
    224  1.3    oster void
    225  1.3    oster rf_PSStatusDelete(raidPtr, pssTable, pssPtr)
    226  1.3    oster 	RF_Raid_t *raidPtr;
    227  1.3    oster 	RF_PSStatusHeader_t *pssTable;
    228  1.3    oster 	RF_ReconParityStripeStatus_t *pssPtr;
    229  1.3    oster {
    230  1.3    oster 	RF_PSStatusHeader_t *hdr = &(pssTable[RF_HASH_PSID(raidPtr, pssPtr->parityStripeID)]);
    231  1.3    oster 	RF_ReconParityStripeStatus_t *p = hdr->chain, *pt = NULL;
    232  1.3    oster 
    233  1.3    oster 	while (p) {
    234  1.3    oster 		if (p == pssPtr) {
    235  1.3    oster 			if (pt)
    236  1.3    oster 				pt->next = p->next;
    237  1.3    oster 			else
    238  1.3    oster 				hdr->chain = p->next;
    239  1.3    oster 			p->next = NULL;
    240  1.3    oster 			rf_FreePSStatus(raidPtr, p);
    241  1.3    oster 			return;
    242  1.3    oster 		}
    243  1.3    oster 		pt = p;
    244  1.3    oster 		p = p->next;
    245  1.3    oster 	}
    246  1.3    oster 	RF_ASSERT(0);		/* we must find it here */
    247  1.1    oster }
    248  1.1    oster /* deletes an entry from the ps status table after reconstruction has completed */
    249  1.3    oster void
    250  1.3    oster rf_RemoveFromActiveReconTable(raidPtr, row, psid, which_ru)
    251  1.3    oster 	RF_Raid_t *raidPtr;
    252  1.3    oster 	RF_RowCol_t row;
    253  1.3    oster 	RF_ReconUnitNum_t which_ru;
    254  1.3    oster 	RF_StripeNum_t psid;
    255  1.3    oster {
    256  1.3    oster 	RF_PSStatusHeader_t *hdr = &(raidPtr->reconControl[row]->pssTable[RF_HASH_PSID(raidPtr, psid)]);
    257  1.3    oster 	RF_ReconParityStripeStatus_t *p, *pt;
    258  1.3    oster 	RF_CallbackDesc_t *cb, *cb1;
    259  1.3    oster 
    260  1.3    oster 	RF_LOCK_MUTEX(hdr->mutex);
    261  1.3    oster 	for (pt = NULL, p = hdr->chain; p; pt = p, p = p->next) {
    262  1.3    oster 		if ((p->parityStripeID == psid) && (p->which_ru == which_ru))
    263  1.3    oster 			break;
    264  1.3    oster 	}
    265  1.3    oster 	if (p == NULL) {
    266  1.3    oster 		rf_PrintPSStatusTable(raidPtr, row);
    267  1.3    oster 	}
    268  1.3    oster 	RF_ASSERT(p);		/* it must be there */
    269  1.3    oster 
    270  1.3    oster 	Dprintf2("PSS: deleting pss for psid %ld ru %d\n", psid, which_ru);
    271  1.3    oster 
    272  1.3    oster 	/* delete this entry from the hash chain */
    273  1.3    oster 	if (pt)
    274  1.3    oster 		pt->next = p->next;
    275  1.3    oster 	else
    276  1.3    oster 		hdr->chain = p->next;
    277  1.3    oster 	p->next = NULL;
    278  1.3    oster 
    279  1.3    oster 	RF_UNLOCK_MUTEX(hdr->mutex);
    280  1.3    oster 
    281  1.3    oster 	/* wakup anyone waiting on the parity stripe ID */
    282  1.3    oster 	cb = p->procWaitList;
    283  1.3    oster 	p->procWaitList = NULL;
    284  1.3    oster 	while (cb) {
    285  1.3    oster 		Dprintf1("Waking up access waiting on parity stripe ID %ld\n", p->parityStripeID);
    286  1.3    oster 		cb1 = cb->next;
    287  1.3    oster 		(cb->callbackFunc) (cb->callbackArg);
    288  1.3    oster 
    289  1.3    oster 		/* THIS IS WHAT THE ORIGINAL CODE HAD... the extra 0 is bogus,
    290  1.3    oster 		 * IMHO */
    291  1.3    oster 		/* (cb->callbackFunc)(cb->callbackArg, 0); */
    292  1.3    oster 		rf_FreeCallbackDesc(cb);
    293  1.3    oster 		cb = cb1;
    294  1.3    oster 	}
    295  1.3    oster 
    296  1.3    oster 	rf_FreePSStatus(raidPtr, p);
    297  1.3    oster }
    298  1.3    oster 
    299  1.3    oster RF_ReconParityStripeStatus_t *
    300  1.3    oster rf_AllocPSStatus(raidPtr)
    301  1.3    oster 	RF_Raid_t *raidPtr;
    302  1.3    oster {
    303  1.3    oster 	RF_ReconParityStripeStatus_t *p;
    304  1.3    oster 
    305  1.3    oster 	RF_FREELIST_GET_INIT_ARG(raidPtr->pss_freelist, p, next, (RF_ReconParityStripeStatus_t *), init_pss, raidPtr);
    306  1.3    oster 	if (p) {
    307  1.6  thorpej 		memset(p->issued, 0, raidPtr->numCol);
    308  1.3    oster 	}
    309  1.3    oster 	p->next = NULL;
    310  1.3    oster 	/* no need to initialize here b/c the only place we're called from is
    311  1.3    oster 	 * the above Lookup */
    312  1.3    oster 	return (p);
    313  1.3    oster }
    314  1.3    oster 
    315  1.3    oster void
    316  1.3    oster rf_FreePSStatus(raidPtr, p)
    317  1.3    oster 	RF_Raid_t *raidPtr;
    318  1.3    oster 	RF_ReconParityStripeStatus_t *p;
    319  1.3    oster {
    320  1.3    oster 	RF_ASSERT(p->procWaitList == NULL);
    321  1.3    oster 	RF_ASSERT(p->blockWaitList == NULL);
    322  1.3    oster 	RF_ASSERT(p->bufWaitList == NULL);
    323  1.3    oster 
    324  1.3    oster 	RF_FREELIST_FREE_CLEAN_ARG(raidPtr->pss_freelist, p, next, clean_pss, raidPtr);
    325  1.3    oster }
    326  1.3    oster 
    327  1.3    oster static void
    328  1.3    oster RealPrintPSStatusTable(raidPtr, pssTable)
    329  1.3    oster 	RF_Raid_t *raidPtr;
    330  1.3    oster 	RF_PSStatusHeader_t *pssTable;
    331  1.3    oster {
    332  1.3    oster 	int     i, j, procsWaiting, blocksWaiting, bufsWaiting;
    333  1.3    oster 	RF_ReconParityStripeStatus_t *p;
    334  1.3    oster 	RF_CallbackDesc_t *cb;
    335  1.3    oster 
    336  1.3    oster 	printf("\nParity Stripe Status Table\n");
    337  1.3    oster 	for (i = 0; i < raidPtr->pssTableSize; i++) {
    338  1.3    oster 		for (p = pssTable[i].chain; p; p = p->next) {
    339  1.3    oster 			procsWaiting = blocksWaiting = bufsWaiting = 0;
    340  1.3    oster 			for (cb = p->procWaitList; cb; cb = cb->next)
    341  1.3    oster 				procsWaiting++;
    342  1.3    oster 			for (cb = p->blockWaitList; cb; cb = cb->next)
    343  1.3    oster 				blocksWaiting++;
    344  1.3    oster 			for (cb = p->bufWaitList; cb; cb = cb->next)
    345  1.3    oster 				bufsWaiting++;
    346  1.3    oster 			printf("PSID %ld RU %d : blockCount %d %d/%d/%d proc/block/buf waiting, issued ",
    347  1.3    oster 			    (long) p->parityStripeID, p->which_ru, p->blockCount, procsWaiting, blocksWaiting, bufsWaiting);
    348  1.3    oster 			for (j = 0; j < raidPtr->numCol; j++)
    349  1.3    oster 				printf("%c", (p->issued[j]) ? '1' : '0');
    350  1.3    oster 			if (!p->flags)
    351  1.3    oster 				printf(" flags: (none)");
    352  1.3    oster 			else {
    353  1.3    oster 				if (p->flags & RF_PSS_UNDER_RECON)
    354  1.3    oster 					printf(" under-recon");
    355  1.3    oster 				if (p->flags & RF_PSS_FORCED_ON_WRITE)
    356  1.3    oster 					printf(" forced-w");
    357  1.3    oster 				if (p->flags & RF_PSS_FORCED_ON_READ)
    358  1.3    oster 					printf(" forced-r");
    359  1.3    oster 				if (p->flags & RF_PSS_RECON_BLOCKED)
    360  1.3    oster 					printf(" blocked");
    361  1.3    oster 				if (p->flags & RF_PSS_BUFFERWAIT)
    362  1.3    oster 					printf(" bufwait");
    363  1.3    oster 			}
    364  1.3    oster 			printf("\n");
    365  1.3    oster 		}
    366  1.3    oster 	}
    367  1.3    oster }
    368  1.3    oster 
    369  1.3    oster void
    370  1.3    oster rf_PrintPSStatusTable(raidPtr, row)
    371  1.3    oster 	RF_Raid_t *raidPtr;
    372  1.3    oster 	RF_RowCol_t row;
    373  1.1    oster {
    374  1.3    oster 	RF_PSStatusHeader_t *pssTable = raidPtr->reconControl[row]->pssTable;
    375  1.3    oster 	RealPrintPSStatusTable(raidPtr, pssTable);
    376  1.1    oster }
    377