[SCSI] bfa: Add support to have mfg date as part of adapter attributes
Made changes to expose mfg day/month/year as part of the adapter attributes for user space applications. Signed-off-by: Vijaya Mohan Guvva <vmohan@brocade.com> Signed-off-by: Krishna Gudipati <kgudipat@brocade.com> Signed-off-by: James Bottomley <JBottomley@Parallels.com>
This commit is contained in:
parent
227fab90bf
commit
ea5d7c9ecb
3 changed files with 11 additions and 0 deletions
|
@ -254,6 +254,10 @@ struct bfa_adapter_attr_s {
|
|||
|
||||
u8 is_mezz;
|
||||
u8 trunk_capable;
|
||||
u8 mfg_day; /* manufacturing day */
|
||||
u8 mfg_month; /* manufacturing month */
|
||||
u16 mfg_year; /* manufacturing year */
|
||||
u16 rsvd;
|
||||
};
|
||||
|
||||
/*
|
||||
|
|
|
@ -1750,6 +1750,7 @@ bfa_ioc_getattr_reply(struct bfa_ioc_s *ioc)
|
|||
attr->card_type = be32_to_cpu(attr->card_type);
|
||||
attr->maxfrsize = be16_to_cpu(attr->maxfrsize);
|
||||
ioc->fcmode = (attr->port_mode == BFI_PORT_MODE_FC);
|
||||
attr->mfg_year = be16_to_cpu(attr->mfg_year);
|
||||
|
||||
bfa_fsm_send_event(ioc, IOC_E_FWRSP_GETATTR);
|
||||
}
|
||||
|
@ -2496,6 +2497,9 @@ bfa_ioc_get_adapter_attr(struct bfa_ioc_s *ioc,
|
|||
ad_attr->cna_capable = bfa_ioc_is_cna(ioc);
|
||||
ad_attr->trunk_capable = (ad_attr->nports > 1) &&
|
||||
!bfa_ioc_is_cna(ioc) && !ad_attr->is_mezz;
|
||||
ad_attr->mfg_day = ioc_attr->mfg_day;
|
||||
ad_attr->mfg_month = ioc_attr->mfg_month;
|
||||
ad_attr->mfg_year = ioc_attr->mfg_year;
|
||||
}
|
||||
|
||||
enum bfa_ioc_type_e
|
||||
|
|
|
@ -288,6 +288,9 @@ struct bfi_ioc_attr_s {
|
|||
char optrom_version[BFA_VERSION_LEN];
|
||||
struct bfa_mfg_vpd_s vpd;
|
||||
u32 card_type; /* card type */
|
||||
u8 mfg_day; /* manufacturing day */
|
||||
u8 mfg_month; /* manufacturing month */
|
||||
u16 mfg_year; /* manufacturing year */
|
||||
};
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue