Home
last modified time | relevance | path

Searched refs:SMB_MAJOR (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/common/smbios/
H A Dsmb_open.c90 if (ep->smbe_major > SMB_MAJOR(SMB_VERSION)) in smbios_bufopen_21()
93 if (ep->smbe_major < SMB_MAJOR(SMB_VERSION_23) || ( in smbios_bufopen_21()
94 ep->smbe_major == SMB_MAJOR(SMB_VERSION_23) && in smbios_bufopen_21()
147 if (ep->smbe_major > SMB_MAJOR(SMB_VERSION)) in smbios_bufopen_30()
150 if (ep->smbe_major < SMB_MAJOR(SMB_VERSION_23) || ( in smbios_bufopen_30()
151 ep->smbe_major == SMB_MAJOR(SMB_VERSION_23) && in smbios_bufopen_30()
533 return (SMB_MAJOR(shp->sh_libvers) > SMB_MAJOR(version) || ( in smb_libgteq()
534 SMB_MAJOR(shp->sh_libvers) == SMB_MAJOR(version) && in smb_libgteq()
541 return (SMB_MAJOR(shp->sh_smbvers) > SMB_MAJOR(version) || ( in smb_gteq()
542 SMB_MAJOR(shp->sh_smbvers) == SMB_MAJOR(version) && in smb_gteq()
H A Dsmb_info.c280 v->smbv_major = SMB_MAJOR(shp->sh_smbvers); in smbios_info_smbios_version()
/illumos-gate/usr/src/uts/common/sys/
H A Dsmbios_impl.h814 #define SMB_MAJOR(v) (((v) & 0xFF00) >> 8) macro