lsm_local_disk_vpd83_search - Man Page

Search disks by VPD83 string.

Synopsis

int lsm_local_disk_vpd83_search (const char *vpd83, lsm_string_list **disk_path_list, lsm_error **lsm_err);

Arguments

vpd83

String. The SCSI VPD 0x83 page NAA type ID.

disk_path_list

Output pointer of lsm_string_list. The format of disk path will be like "/dev/sdb" for SCSI or ATA disk. NULL if no found or got error. Memory should be freed by lsm_string_list_free.

lsm_err

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.3

Description

Search all the disk paths of specified SCSI VPD 0x83 page NAA type ID. For any ATA and other non-SCSI protocol disks supporting VPD 0x83 pages NAA ID, their disk path will also be included.

Return

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

Info

April 2023 Libstoragemgmt C API Manual