• 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 defs:hbq_desc

987  * @hbq_desc: pointer to the HBQ selection profile descriptor.
996 struct lpfc_hbq_init *hbq_desc)
998 hbqmb->profiles.profile2.seqlenbcnt = hbq_desc->seqlenbcnt;
999 hbqmb->profiles.profile2.maxlen = hbq_desc->maxlen;
1000 hbqmb->profiles.profile2.seqlenoff = hbq_desc->seqlenoff;
1006 * @hbq_desc: pointer to the HBQ selection profile descriptor.
1015 struct lpfc_hbq_init *hbq_desc)
1017 hbqmb->profiles.profile3.seqlenbcnt = hbq_desc->seqlenbcnt;
1018 hbqmb->profiles.profile3.maxlen = hbq_desc->maxlen;
1019 hbqmb->profiles.profile3.cmdcodeoff = hbq_desc->cmdcodeoff;
1020 hbqmb->profiles.profile3.seqlenoff = hbq_desc->seqlenoff;
1021 memcpy(&hbqmb->profiles.profile3.cmdmatch, hbq_desc->cmdmatch,
1028 * @hbq_desc: pointer to the HBQ selection profile descriptor.
1038 struct lpfc_hbq_init *hbq_desc)
1040 hbqmb->profiles.profile5.seqlenbcnt = hbq_desc->seqlenbcnt;
1041 hbqmb->profiles.profile5.maxlen = hbq_desc->maxlen;
1042 hbqmb->profiles.profile5.cmdcodeoff = hbq_desc->cmdcodeoff;
1043 hbqmb->profiles.profile5.seqlenoff = hbq_desc->seqlenoff;
1044 memcpy(&hbqmb->profiles.profile5.cmdmatch, hbq_desc->cmdmatch,
1052 * @hbq_desc: pointer to the HBA descriptor data structure.
1064 struct lpfc_hbq_init *hbq_desc,
1073 hbqmb->entry_count = hbq_desc->entry_count; /* # entries in HBQ */
1074 hbqmb->recvNotify = hbq_desc->rn; /* Receive
1076 hbqmb->numMask = hbq_desc->mask_count; /* # R_CTL/TYPE masks
1078 hbqmb->profile = hbq_desc->profile; /* Selection profile:
1081 hbqmb->ringMask = hbq_desc->ring_mask; /* Binds HBQ to a ring
1084 hbqmb->headerLen = hbq_desc->headerLen; /* 0 if not profile 4
1086 hbqmb->logEntry = hbq_desc->logEntry; /* Set to 1 if this
1100 if (hbq_desc->profile == 2)
1101 lpfc_build_hbq_profile2(hbqmb, hbq_desc);
1102 else if (hbq_desc->profile == 3)
1103 lpfc_build_hbq_profile3(hbqmb, hbq_desc);
1104 else if (hbq_desc->profile == 5)
1105 lpfc_build_hbq_profile5(hbqmb, hbq_desc);
1108 if (!hbq_desc->mask_count)
1112 for (i = 0; i < hbq_desc->mask_count; i++) {
1113 hbqmb->hbqMasks[i].tmatch = hbq_desc->hbqMasks[i].tmatch;
1114 hbqmb->hbqMasks[i].tmask = hbq_desc->hbqMasks[i].tmask;
1115 hbqmb->hbqMasks[i].rctlmatch = hbq_desc->hbqMasks[i].rctlmatch;
1116 hbqmb->hbqMasks[i].rctlmask = hbq_desc->hbqMasks[i].rctlmask;