Scroll to navigation

lsm_local_disk_health_status_get(3) Libstoragemgmt C API Manual lsm_local_disk_health_status_get(3)

NAME

lsm_local_disk_health_status_get - Query the health status of local disk.

SYNOPSIS

int lsm_local_disk_health_status_get (const char *disk_path, int32_t *health_status, lsm_error **lsm_err);

ARGUMENTS

String. The disk path, example "/dev/sdc".
Output pointer of int32_t. Possible values are: * LSM_DISK_HEALTH_STATUS_UNKNOWN
Unsupported or failed to retrieved health status. * LSM_DISK_HEALTH_STATUS_FAIL * LSM_DISK_HEALTH_STATUS_WARN * LSM_DISK_HEALTH_STATUS_GOOD
Output pointer of lsm_error. Error message could be retrieved via lsm_error_message_get. Memory should be freed by lsm_error_free.

VERSION

1.5

DESCRIPTION

Query the health status of the specified disk path.

RETURN

Error code as enumerated by 'lsm_error_number':
* LSM_ERR_OK
On success.
* LSM_ERR_INVALID_ARGUMENT
When any argument is NULL
* LSM_ERR_NO_MEMORY
When no memory.
* LSM_ERR_LIB_BUG
When something unexpected happens.
* LSM_ERR_NOT_FOUND_DISK
When provided disk path not found.

lsm_local_disk_health_status_get April 2023