lsm_local_disk_ident_led_on - Man Page
Turn on the disk identification LED.
Synopsis
int lsm_local_disk_ident_led_on (const char *disk_path, lsm_error **lsm_err);
Arguments
- disk_path
- String. The path of disk path, example "/dev/sdb". 
- 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
Turn on the identification LED for specified disk. Require read and write access to 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_ERR_PERMISSION_DENIED
       Insufficient permission to access provided disk path.
   * LSM_ERR_NO_SUPPORT
       Action is not supported.