2004-03-19 20:01:26 +03:00
|
|
|
/* $NetBSD: rf_dagutils.h,v 1.12 2004/03/19 17:01:26 oster Exp $ */
|
1998-11-13 07:20:26 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1995 Carnegie-Mellon University.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Author: Mark Holland, William V. Courtright II
|
|
|
|
*
|
|
|
|
* 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_dagutils.h -- header file for utility routines for manipulating DAGs
|
|
|
|
*
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
|
2001-10-04 19:58:51 +04:00
|
|
|
#include <dev/raidframe/raidframevar.h>
|
|
|
|
|
1998-11-13 07:20:26 +03:00
|
|
|
#include "rf_dagfuncs.h"
|
|
|
|
#include "rf_general.h"
|
|
|
|
|
|
|
|
#ifndef _RF__RF_DAGUTILS_H_
|
|
|
|
#define _RF__RF_DAGUTILS_H_
|
|
|
|
|
|
|
|
struct RF_RedFuncs_s {
|
1999-02-05 03:06:06 +03:00
|
|
|
int (*regular) (RF_DagNode_t *);
|
|
|
|
char *RegularName;
|
|
|
|
int (*simple) (RF_DagNode_t *);
|
|
|
|
char *SimpleName;
|
1998-11-13 07:20:26 +03:00
|
|
|
};
|
|
|
|
|
2004-02-29 04:24:34 +03:00
|
|
|
typedef struct RF_FuncList_s {
|
|
|
|
RF_VoidFuncPtr fp;
|
|
|
|
struct RF_FuncList_s *next;
|
|
|
|
} RF_FuncList_t;
|
|
|
|
|
2003-02-09 13:04:32 +03:00
|
|
|
extern const RF_RedFuncs_t rf_xorFuncs;
|
|
|
|
extern const RF_RedFuncs_t rf_xorRecoveryFuncs;
|
1998-11-13 07:20:26 +03:00
|
|
|
|
1999-02-05 03:06:06 +03:00
|
|
|
void
|
|
|
|
rf_InitNode(RF_DagNode_t * node, RF_NodeStatus_t initstatus,
|
2002-09-21 18:47:07 +04:00
|
|
|
int commit,
|
|
|
|
int (*doFunc) (RF_DagNode_t * node),
|
|
|
|
int (*undoFunc) (RF_DagNode_t * node),
|
|
|
|
int (*wakeFunc) (RF_DagNode_t * node, int status),
|
|
|
|
int nSucc, int nAnte, int nParam, int nResult,
|
|
|
|
RF_DagHeader_t * hdr, char *name, RF_AllocListElem_t * alist);
|
1998-11-13 07:20:26 +03:00
|
|
|
|
2002-09-21 18:47:07 +04:00
|
|
|
void rf_FreeDAG(RF_DagHeader_t * dag_h);
|
1998-11-13 07:20:26 +03:00
|
|
|
|
2002-09-21 18:47:07 +04:00
|
|
|
int rf_ConfigureDAGs(RF_ShutdownList_t ** listp);
|
1998-11-13 07:20:26 +03:00
|
|
|
|
2002-09-21 18:47:07 +04:00
|
|
|
RF_DagHeader_t *rf_AllocDAGHeader(void);
|
1998-11-13 07:20:26 +03:00
|
|
|
|
2002-09-21 18:47:07 +04:00
|
|
|
void rf_FreeDAGHeader(RF_DagHeader_t * dh);
|
1998-11-13 07:20:26 +03:00
|
|
|
|
2004-03-18 19:40:05 +03:00
|
|
|
RF_DagNode_t *rf_AllocDAGNode(void);
|
|
|
|
void rf_FreeDAGNode(RF_DagNode_t *);
|
|
|
|
|
2004-02-27 05:55:17 +03:00
|
|
|
RF_DagList_t *rf_AllocDAGList(void);
|
|
|
|
void rf_FreeDAGList(RF_DagList_t *);
|
|
|
|
|
2004-03-19 20:01:26 +03:00
|
|
|
void *rf_AllocDAGPCache(void);
|
|
|
|
void rf_FreeDAGPCache(void *);
|
|
|
|
|
2004-02-29 04:24:34 +03:00
|
|
|
RF_FuncList_t *rf_AllocFuncList(void);
|
|
|
|
void rf_FreeFuncList(RF_FuncList_t *);
|
|
|
|
|
2004-03-07 02:52:20 +03:00
|
|
|
void *rf_AllocBuffer(RF_Raid_t * raidPtr,
|
2002-09-21 18:47:07 +04:00
|
|
|
RF_PhysDiskAddr_t * pda,
|
|
|
|
RF_AllocListElem_t * allocList);
|
1998-11-13 07:20:26 +03:00
|
|
|
|
2002-09-21 18:47:07 +04:00
|
|
|
char *rf_NodeStatusString(RF_DagNode_t * node);
|
1998-11-13 07:20:26 +03:00
|
|
|
|
2002-09-21 18:47:07 +04:00
|
|
|
void rf_PrintNodeInfoString(RF_DagNode_t * node);
|
1998-11-13 07:20:26 +03:00
|
|
|
|
2002-09-21 18:47:07 +04:00
|
|
|
int rf_AssignNodeNums(RF_DagHeader_t * dag_h);
|
1998-11-13 07:20:26 +03:00
|
|
|
|
2002-09-21 18:47:07 +04:00
|
|
|
int rf_RecurAssignNodeNums(RF_DagNode_t * node, int num, int unvisited);
|
1998-11-13 07:20:26 +03:00
|
|
|
|
2002-09-21 18:47:07 +04:00
|
|
|
void rf_ResetDAGHeaderPointers(RF_DagHeader_t * dag_h,
|
|
|
|
RF_DagHeader_t * newptr);
|
1998-11-13 07:20:26 +03:00
|
|
|
|
2002-09-21 18:47:07 +04:00
|
|
|
void rf_RecurResetDAGHeaderPointers(RF_DagNode_t * node,
|
|
|
|
RF_DagHeader_t * newptr);
|
1998-11-13 07:20:26 +03:00
|
|
|
|
2002-09-21 18:47:07 +04:00
|
|
|
void rf_PrintDAGList(RF_DagHeader_t * dag_h);
|
1998-11-13 07:20:26 +03:00
|
|
|
|
2002-09-21 18:47:07 +04:00
|
|
|
int rf_ValidateDAG(RF_DagHeader_t * dag_h);
|
1998-11-13 07:20:26 +03:00
|
|
|
|
2002-09-21 18:47:07 +04:00
|
|
|
void rf_redirect_asm(RF_Raid_t * raidPtr, RF_AccessStripeMap_t * asmap);
|
1998-11-13 07:20:26 +03:00
|
|
|
|
2002-09-21 18:47:07 +04:00
|
|
|
void rf_MapUnaccessedPortionOfStripe(RF_Raid_t * raidPtr,
|
|
|
|
RF_RaidLayout_t * layoutPtr,
|
|
|
|
RF_AccessStripeMap_t * asmap,
|
|
|
|
RF_DagHeader_t * dag_h,
|
|
|
|
RF_AccessStripeMapHeader_t ** new_asm_h,
|
|
|
|
int *nRodNodes, char **sosBuffer,
|
|
|
|
char **eosBuffer,
|
|
|
|
RF_AllocListElem_t * allocList);
|
1998-11-13 07:20:26 +03:00
|
|
|
|
2002-09-21 18:47:07 +04:00
|
|
|
int rf_PDAOverlap(RF_RaidLayout_t * layoutPtr, RF_PhysDiskAddr_t * src,
|
|
|
|
RF_PhysDiskAddr_t * dest);
|
1998-11-13 07:20:26 +03:00
|
|
|
|
2002-09-21 18:47:07 +04:00
|
|
|
void rf_GenerateFailedAccessASMs(RF_Raid_t * raidPtr,
|
|
|
|
RF_AccessStripeMap_t * asmap,
|
|
|
|
RF_PhysDiskAddr_t * failedPDA,
|
|
|
|
RF_DagHeader_t * dag_h,
|
|
|
|
RF_AccessStripeMapHeader_t ** new_asm_h,
|
|
|
|
int *nXorBufs, char **rpBufPtr,
|
|
|
|
char *overlappingPDAs,
|
|
|
|
RF_AllocListElem_t * allocList);
|
1998-11-13 07:20:26 +03:00
|
|
|
|
|
|
|
/* flags used by RangeRestrictPDA */
|
|
|
|
#define RF_RESTRICT_NOBUFFER 0
|
|
|
|
#define RF_RESTRICT_DOBUFFER 1
|
|
|
|
|
2002-09-21 18:47:07 +04:00
|
|
|
void rf_RangeRestrictPDA(RF_Raid_t * raidPtr, RF_PhysDiskAddr_t * src,
|
|
|
|
RF_PhysDiskAddr_t * dest, int dobuffer,
|
|
|
|
int doraidaddr);
|
1998-11-13 07:20:26 +03:00
|
|
|
|
2002-09-21 18:47:07 +04:00
|
|
|
int rf_compute_workload_shift(RF_Raid_t * raidPtr,
|
|
|
|
RF_PhysDiskAddr_t * pda);
|
|
|
|
void rf_SelectMirrorDiskIdle(RF_DagNode_t * node);
|
|
|
|
void rf_SelectMirrorDiskPartition(RF_DagNode_t * node);
|
1998-11-13 07:20:26 +03:00
|
|
|
|
1999-02-05 03:06:06 +03:00
|
|
|
#endif /* !_RF__RF_DAGUTILS_H_ */
|