aboutsummaryrefslogtreecommitdiff
path: root/src/sg_format.c
diff options
context:
space:
mode:
authorDouglas Gilbert <dgilbert@interlog.com>2010-10-31 19:26:41 +0000
committerDouglas Gilbert <dgilbert@interlog.com>2010-10-31 19:26:41 +0000
commit1b4ebee851c9de2dc32f4bcd8478a37c002832b6 (patch)
tree506c90bb3b7587c0e165c207cbbbbd61488b254d /src/sg_format.c
parent007cb4ce8de924073966402ee16b11a42ac3c994 (diff)
downloadsg3_utils-1b4ebee851c9de2dc32f4bcd8478a37c002832b6.tar.gz
sbc3r25 renames 'thin' provisioning' to 'logical block provisioning': multiple changes
git-svn-id: https://svn.bingwo.ca/repos/sg3_utils/trunk@361 6180dd3e-e324-4e3e-922d-17de1ae2f315
Diffstat (limited to 'src/sg_format.c')
-rw-r--r--src/sg_format.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sg_format.c b/src/sg_format.c
index 16617b71..d92d4b60 100644
--- a/src/sg_format.c
+++ b/src/sg_format.c
@@ -45,7 +45,7 @@
#include "sg_cmds_basic.h"
#include "sg_cmds_extra.h"
-static char * version_str = "1.17 20090324";
+static char * version_str = "1.18 20101030";
#define RW_ERROR_RECOVERY_PAGE 1 /* every disk should have one */
#define FORMAT_DEV_PAGE 3 /* Format Device Mode Page [now obsolete] */
@@ -277,8 +277,8 @@ print_read_cap(int fd, int do_16, int verbose)
printf(" Protection: prot_en=%d, p_type=%d\n",
!!(resp_buff[12] & 0x1),
((resp_buff[12] >> 1) & 0x7));
- printf(" Thin provisioning: tpe=%d, tprz=%d\n",
- !!(resp_buff[14] & 0x80),
+ printf(" Logical block provisioning: lbpme=%d, "
+ "lbprz=%d\n", !!(resp_buff[14] & 0x80),
!!(resp_buff[14] & 0x40));
printf(" Number of blocks=%" PRIu64 "\n",
llast_blk_addr + 1);