Lines Matching refs:pvt_pool
3364 struct lpfc_pvt_pool *pvt_pool; in lpfc_create_multixri_pools() local
3423 pvt_pool = &multixri_pool->pvt_pool; in lpfc_create_multixri_pools()
3424 pvt_pool->high_watermark = multixri_pool->xri_limit / 2; in lpfc_create_multixri_pools()
3425 pvt_pool->low_watermark = XRI_BATCH; in lpfc_create_multixri_pools()
3426 spin_lock_init(&pvt_pool->lock); in lpfc_create_multixri_pools()
3427 spin_lock_irqsave(&pvt_pool->lock, iflag); in lpfc_create_multixri_pools()
3428 INIT_LIST_HEAD(&pvt_pool->list); in lpfc_create_multixri_pools()
3429 pvt_pool->count = 0; in lpfc_create_multixri_pools()
3430 spin_unlock_irqrestore(&pvt_pool->lock, iflag); in lpfc_create_multixri_pools()
3450 struct lpfc_pvt_pool *pvt_pool; in lpfc_destroy_multixri_pools() local
3492 pvt_pool = &multixri_pool->pvt_pool; in lpfc_destroy_multixri_pools()
3493 spin_lock(&pvt_pool->lock); in lpfc_destroy_multixri_pools()
3497 pvt_pool->count, i); in lpfc_destroy_multixri_pools()
3500 &pvt_pool->list, list) { in lpfc_destroy_multixri_pools()
3504 pvt_pool->count--; in lpfc_destroy_multixri_pools()
3507 INIT_LIST_HEAD(&pvt_pool->list); in lpfc_destroy_multixri_pools()
3508 pvt_pool->count = 0; in lpfc_destroy_multixri_pools()
3510 spin_unlock(&pvt_pool->lock); in lpfc_destroy_multixri_pools()