aboutsummaryrefslogtreecommitdiff
path: root/src/sg_persist.c
diff options
context:
space:
mode:
authorDouglas Gilbert <dgilbert@interlog.com>2014-01-17 20:27:28 +0000
committerDouglas Gilbert <dgilbert@interlog.com>2014-01-17 20:27:28 +0000
commit07b9f9dcf8c2f836be3d35ac35a457a993de23e0 (patch)
tree635a06df2acd03617250ddb54159f7407e142f46 /src/sg_persist.c
parenta51b3573f0e9a4a8b87f92623248f20163e6201d (diff)
downloadsg3_utils-07b9f9dcf8c2f836be3d35ac35a457a993de23e0.tar.gz
sg_persist: add PROUT: Replace Lost Reservation; sg_decode_sense: with --no-space ignore spaces
git-svn-id: https://svn.bingwo.ca/repos/sg3_utils/trunk@545 6180dd3e-e324-4e3e-922d-17de1ae2f315
Diffstat (limited to 'src/sg_persist.c')
-rw-r--r--src/sg_persist.c14
1 files changed, 11 insertions, 3 deletions
diff --git a/src/sg_persist.c b/src/sg_persist.c
index 19a4f1db..d82a03e3 100644
--- a/src/sg_persist.c
+++ b/src/sg_persist.c
@@ -26,7 +26,7 @@
#include "sg_cmds_basic.h"
#include "sg_cmds_extra.h"
-static const char * version_str = "0.42 20140110";
+static const char * version_str = "0.43 20140114";
#define PRIN_RKEY_SA 0x0
@@ -41,6 +41,7 @@ static const char * version_str = "0.42 20140110";
#define PROUT_PREE_AB_SA 0x5
#define PROUT_REG_IGN_SA 0x6
#define PROUT_REG_MOVE_SA 0x7
+#define PROUT_REPL_LOST_SA 0x8
#define MX_ALLOC_LEN 8192
#define MX_TIDS 32
#define MX_TID_LEN 256
@@ -91,6 +92,7 @@ static struct option long_options[] = {
{"register-move", 0, 0, 'M'},
{"release", 0, 0, 'L'},
{"relative-target-port", 1, 0, 'Q'},
+ {"replace-lost", 0, 0, 'z'},
{"report-capabilities", 0, 0, 'c'},
{"reserve", 0, 0, 'R'},
{"transport-id", 1, 0, 'X'},
@@ -122,7 +124,8 @@ static const char * prout_sa_strs[] = {
"Preempt and abort",
"Register and ignore existing key",
"Register and move",
- "[reserved 0x8]",
+ "Replace lost reservation",
+ "[reserved 0x9]",
};
static const int num_prout_sa_strs = sizeof(prout_sa_strs) /
sizeof(prout_sa_strs[0]);
@@ -183,6 +186,7 @@ usage()
"identifier\n"
" for '--register-move'\n"
" --release|-L PR Out: Release\n"
+ " --replace-lost|-x PR Out: Replace Lost Reservation\n"
" --report-capabilities|-c PR In: Report Capabilities\n"
" --reserve|-R PR Out: Reserve\n"
" --transport-id=TIDS|-X TIDS one or more "
@@ -1019,7 +1023,7 @@ main(int argc, char * argv[])
while (1) {
int option_index = 0;
- c = getopt_long(argc, argv, "AcCd:GHhiIkK:l:LMnoPQ:rRsS:T:UvVX:YZ",
+ c = getopt_long(argc, argv, "AcCd:GHhiIkK:l:LMnoPQ:rRsS:T:UvVX:YzZ",
long_options, &option_index);
if (c == -1)
break;
@@ -1154,6 +1158,10 @@ main(int argc, char * argv[])
opts.param_alltgpt = 1;
++num_prout_param;
break;
+ case 'z':
+ opts.prout_sa = PROUT_REPL_LOST_SA;
+ ++num_prout_sa;
+ break;
case 'Z':
opts.param_aptpl = 1;
++num_prout_param;