Lines Matching refs:pvt_pool
3152 struct lpfc_pvt_pool *pvt_pool; in lpfc_create_multixri_pools() local
3211 pvt_pool = &multixri_pool->pvt_pool; in lpfc_create_multixri_pools()
3212 pvt_pool->high_watermark = multixri_pool->xri_limit / 2; in lpfc_create_multixri_pools()
3213 pvt_pool->low_watermark = XRI_BATCH; in lpfc_create_multixri_pools()
3214 spin_lock_init(&pvt_pool->lock); in lpfc_create_multixri_pools()
3215 spin_lock_irqsave(&pvt_pool->lock, iflag); in lpfc_create_multixri_pools()
3216 INIT_LIST_HEAD(&pvt_pool->list); in lpfc_create_multixri_pools()
3217 pvt_pool->count = 0; in lpfc_create_multixri_pools()
3218 spin_unlock_irqrestore(&pvt_pool->lock, iflag); in lpfc_create_multixri_pools()
3238 struct lpfc_pvt_pool *pvt_pool; in lpfc_destroy_multixri_pools() local
3280 pvt_pool = &multixri_pool->pvt_pool; in lpfc_destroy_multixri_pools()
3281 spin_lock(&pvt_pool->lock); in lpfc_destroy_multixri_pools()
3285 pvt_pool->count, i); in lpfc_destroy_multixri_pools()
3288 &pvt_pool->list, list) { in lpfc_destroy_multixri_pools()
3292 pvt_pool->count--; in lpfc_destroy_multixri_pools()
3295 INIT_LIST_HEAD(&pvt_pool->list); in lpfc_destroy_multixri_pools()
3296 pvt_pool->count = 0; in lpfc_destroy_multixri_pools()
3298 spin_unlock(&pvt_pool->lock); in lpfc_destroy_multixri_pools()