Lines Matching refs:bgstat
4154 /* Bitfields for bgstat (BlockGuard Status - word 15 of IOCB) */
4173 uint32_t bgstat; /* word 15 - BlockGuard Status */
4177 lpfc_bgs_get_bidir_bg_prof(uint32_t bgstat)
4179 return (bgstat & BGS_BIDIR_BG_PROF_MASK) >>
4184 lpfc_bgs_get_bidir_err_cond(uint32_t bgstat)
4186 return (bgstat & BGS_BIDIR_ERR_COND_FLAGS_MASK) >>
4191 lpfc_bgs_get_bg_prof(uint32_t bgstat)
4193 return (bgstat & BGS_BG_PROFILE_MASK) >>
4198 lpfc_bgs_get_invalid_prof(uint32_t bgstat)
4200 return (bgstat & BGS_INVALID_PROF_MASK) >>
4205 lpfc_bgs_get_uninit_dif_block(uint32_t bgstat)
4207 return (bgstat & BGS_UNINIT_DIF_BLOCK_MASK) >>
4212 lpfc_bgs_get_hi_water_mark_present(uint32_t bgstat)
4214 return (bgstat & BGS_HI_WATER_MARK_PRESENT_MASK) >>
4219 lpfc_bgs_get_reftag_err(uint32_t bgstat)
4221 return (bgstat & BGS_REFTAG_ERR_MASK) >>
4226 lpfc_bgs_get_apptag_err(uint32_t bgstat)
4228 return (bgstat & BGS_APPTAG_ERR_MASK) >>
4233 lpfc_bgs_get_guard_err(uint32_t bgstat)
4235 return (bgstat & BGS_GUARD_ERR_MASK) >>