Lines Matching refs:pools

348 	pool_destroy(&raidPtr->pools.asm_hdr);  in rf_ShutdownMapModule()
349 pool_destroy(&raidPtr->pools.asmap); in rf_ShutdownMapModule()
350 pool_destroy(&raidPtr->pools.asmhle); in rf_ShutdownMapModule()
351 pool_destroy(&raidPtr->pools.pda); in rf_ShutdownMapModule()
352 pool_destroy(&raidPtr->pools.fss); in rf_ShutdownMapModule()
353 pool_destroy(&raidPtr->pools.vfple); in rf_ShutdownMapModule()
354 pool_destroy(&raidPtr->pools.vple); in rf_ShutdownMapModule()
362 …rf_pool_init(raidPtr, raidPtr->poolNames.asm_hdr, &raidPtr->pools.asm_hdr, sizeof(RF_AccessStripeM… in rf_ConfigureMapModule()
364 …rf_pool_init(raidPtr, raidPtr->poolNames.asmap, &raidPtr->pools.asmap, sizeof(RF_AccessStripeMap_t… in rf_ConfigureMapModule()
366 …rf_pool_init(raidPtr, raidPtr->poolNames.asmhle, &raidPtr->pools.asmhle, sizeof(RF_ASMHeaderListEl… in rf_ConfigureMapModule()
368 rf_pool_init(raidPtr, raidPtr->poolNames.pda, &raidPtr->pools.pda, sizeof(RF_PhysDiskAddr_t), in rf_ConfigureMapModule()
370 rf_pool_init(raidPtr, raidPtr->poolNames.fss, &raidPtr->pools.fss, sizeof(RF_FailedStripe_t), in rf_ConfigureMapModule()
372 …rf_pool_init(raidPtr, raidPtr->poolNames.vfple, &raidPtr->pools.vfple, sizeof(RF_VoidFunctionPoint… in rf_ConfigureMapModule()
374 …rf_pool_init(raidPtr, raidPtr->poolNames.vple, &raidPtr->pools.vple, sizeof(RF_VoidPointerListElem… in rf_ConfigureMapModule()
384 return pool_get(&raidPtr->pools.asm_hdr, PR_WAITOK | PR_ZERO); in rf_AllocAccessStripeMapHeader()
390 pool_put(&raidPtr->pools.asm_hdr, p); in rf_FreeAccessStripeMapHeader()
397 return pool_get(&raidPtr->pools.vfple, PR_WAITOK | PR_ZERO); in rf_AllocVFPListElem()
404 pool_put(&raidPtr->pools.vfple, p); in rf_FreeVFPListElem()
411 return pool_get(&raidPtr->pools.vple, PR_WAITOK | PR_ZERO); in rf_AllocVPListElem()
418 pool_put(&raidPtr->pools.vple, p); in rf_FreeVPListElem()
424 return pool_get(&raidPtr->pools.asmhle, PR_WAITOK | PR_ZERO); in rf_AllocASMHeaderListElem()
431 pool_put(&raidPtr->pools.asmhle, p); in rf_FreeASMHeaderListElem()
437 return pool_get(&raidPtr->pools.fss, PR_WAITOK | PR_ZERO); in rf_AllocFailedStripeStruct()
443 pool_put(&raidPtr->pools.fss, p); in rf_FreeFailedStripeStruct()
453 return pool_get(&raidPtr->pools.pda, PR_WAITOK | PR_ZERO); in rf_AllocPhysDiskAddr()
469 p = pool_get(&raidPtr->pools.pda, PR_WAITOK); in rf_AllocPDAList()
480 pool_put(&raidPtr->pools.pda, p); in rf_FreePhysDiskAddr()
491 pool_put(&raidPtr->pools.pda, p); in rf_FreePDAList()
510 p = pool_get(&raidPtr->pools.asmap, PR_WAITOK); in rf_AllocASMList()
525 pool_put(&raidPtr->pools.asmap, p); in rf_FreeASMList()