aboutsummaryrefslogtreecommitdiff
path: root/lib/sg_lib.c
diff options
context:
space:
mode:
authorDouglas Gilbert <dgilbert@interlog.com>2022-11-04 15:43:37 +0000
committerDouglas Gilbert <dgilbert@interlog.com>2022-11-04 15:43:37 +0000
commit20f3fcb175b72c06464965a4bce7d0a5eaef47b9 (patch)
tree8c41fd7b2b61e624620c3eb377c54c073a02cc99 /lib/sg_lib.c
parent44e90986b1aea4296ba69198130fd37a9ffca082 (diff)
downloadsg3_utils-20f3fcb175b72c06464965a4bce7d0a5eaef47b9.tar.gz
add two new exit status values: SG_LIB_CAT_STANDBY and SG_LIB_CAT_UNAVAILABLE which refine the 'not ready' exit status
git-svn-id: https://svn.bingwo.ca/repos/sg3_utils/trunk@980 6180dd3e-e324-4e3e-922d-17de1ae2f315
Diffstat (limited to 'lib/sg_lib.c')
-rw-r--r--lib/sg_lib.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/sg_lib.c b/lib/sg_lib.c
index f0ed986f..36fcf5cd 100644
--- a/lib/sg_lib.c
+++ b/lib/sg_lib.c
@@ -2244,6 +2244,10 @@ sg_err_category_sense(const uint8_t * sbp, int sb_len)
case SPC_SK_RECOVERED_ERROR:
return SG_LIB_CAT_RECOVERED;
case SPC_SK_NOT_READY:
+ if ((0x04 == ssh.asc) && (0x0b == ssh.ascq))
+ return SG_LIB_CAT_STANDBY;
+ if ((0x04 == ssh.asc) && (0x0c == ssh.ascq))
+ return SG_LIB_CAT_UNAVAILABLE;
return SG_LIB_CAT_NOT_READY;
case SPC_SK_MEDIUM_ERROR:
case SPC_SK_HARDWARE_ERROR: