Some raid adapters, like those that use the `storcli` (megaraid) management utility have the ability to control identification LEDs. eg. ```block storcli /cx/ex/sx start locate storcli /cx/ex/sx stop locate ``` The library API could be extended to add support for this by adding something like: ```python def disk_ident_led_on(self, disk, flags=FLAG_RSVD) def disk_ident_led_off(self, disk, flags=FLAG_RSVD) ``` ```C int LSM_DLL_EXPORT lsm_disk_ident_led_on(lsm_connect *conn, lsm_disk *disk, lsm_flag flags); int LSM_DLL_EXPORT lsm_disk_ident_led_off(lsm_connect *conn, lsm_disk *disk, lsm_flag flags); ``` Adding this would resolve: https://github.com/libstorage/libstoragemgmt/issues/479