Lines Matching refs:bgstat
3961 /* Bitfields for bgstat (BlockGuard Status - word 15 of IOCB) */
3980 uint32_t bgstat; /* word 15 - BlockGuard Status */
3984 lpfc_bgs_get_bidir_bg_prof(uint32_t bgstat)
3986 return (bgstat & BGS_BIDIR_BG_PROF_MASK) >>
3991 lpfc_bgs_get_bidir_err_cond(uint32_t bgstat)
3993 return (bgstat & BGS_BIDIR_ERR_COND_FLAGS_MASK) >>
3998 lpfc_bgs_get_bg_prof(uint32_t bgstat)
4000 return (bgstat & BGS_BG_PROFILE_MASK) >>
4005 lpfc_bgs_get_invalid_prof(uint32_t bgstat)
4007 return (bgstat & BGS_INVALID_PROF_MASK) >>
4012 lpfc_bgs_get_uninit_dif_block(uint32_t bgstat)
4014 return (bgstat & BGS_UNINIT_DIF_BLOCK_MASK) >>
4019 lpfc_bgs_get_hi_water_mark_present(uint32_t bgstat)
4021 return (bgstat & BGS_HI_WATER_MARK_PRESENT_MASK) >>
4026 lpfc_bgs_get_reftag_err(uint32_t bgstat)
4028 return (bgstat & BGS_REFTAG_ERR_MASK) >>
4033 lpfc_bgs_get_apptag_err(uint32_t bgstat)
4035 return (bgstat & BGS_APPTAG_ERR_MASK) >>
4040 lpfc_bgs_get_guard_err(uint32_t bgstat)
4042 return (bgstat & BGS_GUARD_ERR_MASK) >>