Lines Matching defs:luProps
2106 stmfLogicalUnitProperties luProps;
2113 if ((ret = stmfGetLogicalUnitProperties(luGuid, &luProps))
2117 if (strcmp(luProps.providerName, "sbd") == 0) {
2119 } else if (luProps.status == STMF_LOGICAL_UNIT_UNREGISTERED) {
2197 stmfLogicalUnitProperties luProps;
2204 if ((ret = stmfGetLogicalUnitProperties(luGuid, &luProps))
2208 if (strcmp(luProps.providerName, "sbd") == 0) {
2210 } else if (luProps.status == STMF_LOGICAL_UNIT_UNREGISTERED) {
2282 stmfLogicalUnitProperties luProps;
2289 if ((ret = stmfGetLogicalUnitProperties(luGuid, &luProps))
2293 if (strcmp(luProps.providerName, "sbd") == 0) {
2295 } else if (luProps.status == STMF_LOGICAL_UNIT_UNREGISTERED) {
2709 stmfLogicalUnitProperties luProps;
2716 if ((ret = stmfGetLogicalUnitProperties(luGuid, &luProps))
2720 if (strcmp(luProps.providerName, "sbd") == 0) {
2722 } else if (luProps.status == STMF_LOGICAL_UNIT_UNREGISTERED) {
5354 stmfGetLogicalUnitProperties(stmfGuid *lu, stmfLogicalUnitProperties *luProps)
5365 if (lu == NULL || luProps == NULL) {
5369 bzero(luProps, sizeof (stmfLogicalUnitProperties));
5406 luProps->status =
5428 bcopy(fLuProps.lu_provider_name, luProps->providerName,
5431 luProps->status = STMF_LOGICAL_UNIT_ONLINE;
5433 luProps->status = STMF_LOGICAL_UNIT_OFFLINE;
5435 luProps->status = STMF_LOGICAL_UNIT_ONLINING;
5437 luProps->status = STMF_LOGICAL_UNIT_OFFLINING;
5439 bcopy(fLuProps.lu_alias, luProps->alias, sizeof (luProps->alias));