Lines Matching refs:pvt_pool
3517 struct lpfc_pvt_pool *pvt_pool; in lpfc_create_multixri_pools() local
3576 pvt_pool = &multixri_pool->pvt_pool; in lpfc_create_multixri_pools()
3577 pvt_pool->high_watermark = multixri_pool->xri_limit / 2; in lpfc_create_multixri_pools()
3578 pvt_pool->low_watermark = XRI_BATCH; in lpfc_create_multixri_pools()
3579 spin_lock_init(&pvt_pool->lock); in lpfc_create_multixri_pools()
3580 spin_lock_irqsave(&pvt_pool->lock, iflag); in lpfc_create_multixri_pools()
3581 INIT_LIST_HEAD(&pvt_pool->list); in lpfc_create_multixri_pools()
3582 pvt_pool->count = 0; in lpfc_create_multixri_pools()
3583 spin_unlock_irqrestore(&pvt_pool->lock, iflag); in lpfc_create_multixri_pools()
3603 struct lpfc_pvt_pool *pvt_pool; in lpfc_destroy_multixri_pools() local
3645 pvt_pool = &multixri_pool->pvt_pool; in lpfc_destroy_multixri_pools()
3646 spin_lock(&pvt_pool->lock); in lpfc_destroy_multixri_pools()
3650 pvt_pool->count, i); in lpfc_destroy_multixri_pools()
3653 &pvt_pool->list, list) { in lpfc_destroy_multixri_pools()
3657 pvt_pool->count--; in lpfc_destroy_multixri_pools()
3660 INIT_LIST_HEAD(&pvt_pool->list); in lpfc_destroy_multixri_pools()
3661 pvt_pool->count = 0; in lpfc_destroy_multixri_pools()
3663 spin_unlock(&pvt_pool->lock); in lpfc_destroy_multixri_pools()