From eeebea30431027dd7bf76176e848b7d86d673026 Mon Sep 17 00:00:00 2001 From: Vladislav Bolkhovitin Date: Wed, 20 Aug 2008 15:46:12 +0000 Subject: [PATCH] Merge of r490: Forgotten to be changed during 1.0.0 release externally seen SCST revision git-svn-id: http://svn.code.sf.net/p/scst/svn/branches/1.0.0.x@491 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- scst/include/scst.h | 7 ++++++- scst/src/dev_handlers/scst_vdisk.c | 2 +- usr/fileio/common.h | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/scst/include/scst.h b/scst/include/scst.h index dd310562b..f1146b83a 100644 --- a/scst/include/scst.h +++ b/scst/include/scst.h @@ -47,7 +47,12 @@ typedef _Bool bool; #define false 0 #endif -/* Version numbers, the same as for the kernel */ +/* + * Version numbers, the same as for the kernel. + * + * Changing it don't forget to change SCST_FIO_REV in scst_vdisk.c + * and FIO_REV in usr/fileio/common.h as well. + */ #define SCST_VERSION_CODE 0x01000000 #define SCST_VERSION(a, b, c, d) (((a) << 24) + ((b) << 16) + ((c) << 8) + d) #define SCST_VERSION_STRING "1.0.0" diff --git a/scst/src/dev_handlers/scst_vdisk.c b/scst/src/dev_handlers/scst_vdisk.c index f13dea3fb..24246ecec 100644 --- a/scst/src/dev_handlers/scst_vdisk.c +++ b/scst/src/dev_handlers/scst_vdisk.c @@ -62,7 +62,7 @@ static struct scst_proc_log vdisk_proc_local_trace_tbl[] = #define SCST_FIO_VENDOR "SCST_FIO" #define SCST_BIO_VENDOR "SCST_BIO" /* 4 byte ASCII Product Revision Level - left aligned */ -#define SCST_FIO_REV " 096" +#define SCST_FIO_REV " 100" #define MAX_USN_LEN 20 diff --git a/usr/fileio/common.h b/usr/fileio/common.h index fbb196c54..df15d6ee9 100644 --- a/usr/fileio/common.h +++ b/usr/fileio/common.h @@ -22,7 +22,7 @@ /* 8 byte ASCII Vendor */ #define VENDOR "SCST_USR" /* 4 byte ASCII Product Revision Level - left aligned */ -#define FIO_REV " 096" +#define FIO_REV " 100" #define MAX_USN_LEN 20