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