Lines Matching refs:luProps

1559 	stmfLogicalUnitProperties luProps;  in stmfDeleteLu()  local
1566 if ((ret = stmfGetLogicalUnitProperties(luGuid, &luProps)) in stmfDeleteLu()
1570 if (strcmp(luProps.providerName, "sbd") == 0) { in stmfDeleteLu()
1572 } else if (luProps.status == STMF_LOGICAL_UNIT_UNREGISTERED) { in stmfDeleteLu()
1650 stmfLogicalUnitProperties luProps; in stmfLuStandby() local
1657 if ((ret = stmfGetLogicalUnitProperties(luGuid, &luProps)) in stmfLuStandby()
1661 if (strcmp(luProps.providerName, "sbd") == 0) { in stmfLuStandby()
1663 } else if (luProps.status == STMF_LOGICAL_UNIT_UNREGISTERED) { in stmfLuStandby()
1735 stmfLogicalUnitProperties luProps; in stmfModifyLu() local
1742 if ((ret = stmfGetLogicalUnitProperties(luGuid, &luProps)) in stmfModifyLu()
1746 if (strcmp(luProps.providerName, "sbd") == 0) { in stmfModifyLu()
1748 } else if (luProps.status == STMF_LOGICAL_UNIT_UNREGISTERED) { in stmfModifyLu()
2150 stmfLogicalUnitProperties luProps; in stmfGetLuResource() local
2157 if ((ret = stmfGetLogicalUnitProperties(luGuid, &luProps)) in stmfGetLuResource()
2161 if (strcmp(luProps.providerName, "sbd") == 0) { in stmfGetLuResource()
2163 } else if (luProps.status == STMF_LOGICAL_UNIT_UNREGISTERED) { in stmfGetLuResource()
4575 stmfGetLogicalUnitProperties(stmfGuid *lu, stmfLogicalUnitProperties *luProps) in stmfGetLogicalUnitProperties() argument
4586 if (lu == NULL || luProps == NULL) { in stmfGetLogicalUnitProperties()
4590 bzero(luProps, sizeof (stmfLogicalUnitProperties)); in stmfGetLogicalUnitProperties()
4627 luProps->status = in stmfGetLogicalUnitProperties()
4649 bcopy(fLuProps.lu_provider_name, luProps->providerName, in stmfGetLogicalUnitProperties()
4652 luProps->status = STMF_LOGICAL_UNIT_ONLINE; in stmfGetLogicalUnitProperties()
4654 luProps->status = STMF_LOGICAL_UNIT_OFFLINE; in stmfGetLogicalUnitProperties()
4656 luProps->status = STMF_LOGICAL_UNIT_ONLINING; in stmfGetLogicalUnitProperties()
4658 luProps->status = STMF_LOGICAL_UNIT_OFFLINING; in stmfGetLogicalUnitProperties()
4660 bcopy(fLuProps.lu_alias, luProps->alias, sizeof (luProps->alias)); in stmfGetLogicalUnitProperties()