• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/scsi/lpfc/

Lines Matching refs:fcf_index

12193 	 * Copy the fcf_index and the FCF Record Data. The data starts after
12218 * @fcf_index: FCF table entry index.
12227 uint16_t fcf_index)
12244 bf_set(lpfc_fcf_record_fcf_index, fcf_record, fcf_index);
12257 * @fcf_index: FCF table entry offset.
12260 * record and processing it one at a time starting from the @fcf_index
12267 lpfc_sli4_fcf_scan_read_fcf_rec(struct lpfc_hba *phba, uint16_t fcf_index)
12282 rc = lpfc_sli4_mbx_read_fcf_rec(phba, mboxq, fcf_index);
12298 if (fcf_index == LPFC_FCOE_FCF_GET_FIRST)
12317 * @fcf_index: FCF table entry offset.
12319 * This routine is invoked to read an FCF record indicated by @fcf_index
12326 lpfc_sli4_fcf_rr_read_fcf_rec(struct lpfc_hba *phba, uint16_t fcf_index)
12340 rc = lpfc_sli4_mbx_read_fcf_rec(phba, mboxq, fcf_index);
12363 * @fcf_index: FCF table entry offset.
12365 * This routine is invoked to read an FCF record indicated by @fcf_index to
12372 lpfc_sli4_read_fcf_rec(struct lpfc_hba *phba, uint16_t fcf_index)
12386 rc = lpfc_sli4_mbx_read_fcf_rec(phba, mboxq, fcf_index);
12478 lpfc_sli4_fcf_rr_index_set(struct lpfc_hba *phba, uint16_t fcf_index)
12480 if (fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX) {
12483 "book keeping dimension: fcf_index:%d, "
12485 fcf_index, LPFC_SLI4_FCF_TBL_INDX_MAX);
12489 set_bit(fcf_index, phba->fcf.fcf_rr_bmask);
12498 "bmask\n", fcf_index);
12513 lpfc_sli4_fcf_rr_index_clear(struct lpfc_hba *phba, uint16_t fcf_index)
12515 if (fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX) {
12518 "book keeping dimension: fcf_index:%d, "
12520 fcf_index, LPFC_SLI4_FCF_TBL_INDX_MAX);
12524 clear_bit(fcf_index, phba->fcf.fcf_rr_bmask);
12528 "bmask\n", fcf_index);