From 4bc15527d2977c691bade0afdd6ceeba45aa0493 Mon Sep 17 00:00:00 2001 From: Vladislav Bolkhovitin Date: Wed, 1 Apr 2009 11:09:44 +0000 Subject: [PATCH] Version number increased git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@729 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- iscsi-scst/include/iscsi_scst_ver.h | 2 +- qla2x00t/qla2x00-target/qla2x00t.h | 4 ++-- scst/include/scst.h | 4 ++-- scst/include/scst_user.h | 2 +- scst/src/dev_handlers/scst_vdisk.c | 2 +- scst_local/scst_local.c | 2 +- usr/fileio/common.h | 2 +- usr/fileio/fileio.c | 2 +- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/iscsi-scst/include/iscsi_scst_ver.h b/iscsi-scst/include/iscsi_scst_ver.h index b4c7be71e..17c2a2677 100644 --- a/iscsi-scst/include/iscsi_scst_ver.h +++ b/iscsi-scst/include/iscsi_scst_ver.h @@ -13,4 +13,4 @@ * GNU General Public License for more details. */ -#define ISCSI_VERSION_STRING "1.0.1/0.4.17r211" +#define ISCSI_VERSION_STRING "1.0.2/0.4.17r211" diff --git a/qla2x00t/qla2x00-target/qla2x00t.h b/qla2x00t/qla2x00-target/qla2x00t.h index a8047364a..851f7aeb2 100644 --- a/qla2x00t/qla2x00-target/qla2x00t.h +++ b/qla2x00t/qla2x00-target/qla2x00t.h @@ -30,8 +30,8 @@ /* Version numbers, the same as for the kernel */ #define Q2T_VERSION(a, b, c, d) (((a) << 030) + ((b) << 020) + (c) << 010 + (d)) -#define Q2T_VERSION_CODE Q2T_VERSION(1, 0, 0, 0) -#define Q2T_VERSION_STRING "1.0.1" +#define Q2T_VERSION_CODE Q2T_VERSION(1, 0, 2, 0) +#define Q2T_VERSION_STRING "1.0.2" #define Q2T_MAX_CDB_LEN 16 #define Q2T_TIMEOUT 10 /* in seconds */ diff --git a/scst/include/scst.h b/scst/include/scst.h index 02f2fcb06..eca46de11 100644 --- a/scst/include/scst.h +++ b/scst/include/scst.h @@ -42,9 +42,9 @@ * 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 0x01000100 #define SCST_VERSION(a, b, c, d) (((a) << 24) + ((b) << 16) + ((c) << 8) + d) -#define SCST_VERSION_STRING "1.0.1" +#define SCST_VERSION_CODE SCST_VERSION(1, 0, 2, 0) +#define SCST_VERSION_STRING "1.0.2" #define SCST_INTERFACE_VERSION \ SCST_VERSION_STRING "$Revision$" SCST_CONST_VERSION diff --git a/scst/include/scst_user.h b/scst/include/scst_user.h index 8dba41a3d..acf487a77 100644 --- a/scst/include/scst_user.h +++ b/scst/include/scst_user.h @@ -26,7 +26,7 @@ #define DEV_USER_NAME "scst_user" #define DEV_USER_PATH "/dev/" -#define DEV_USER_VERSION_NAME "1.0.1" +#define DEV_USER_VERSION_NAME "1.0.2" #define DEV_USER_VERSION \ DEV_USER_VERSION_NAME "$Revision$" SCST_CONST_VERSION diff --git a/scst/src/dev_handlers/scst_vdisk.c b/scst/src/dev_handlers/scst_vdisk.c index b361f032d..5d208c47c 100644 --- a/scst/src/dev_handlers/scst_vdisk.c +++ b/scst/src/dev_handlers/scst_vdisk.c @@ -64,7 +64,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 " 101" +#define SCST_FIO_REV " 102" #define MAX_USN_LEN (20+1) /* For '\0' */ diff --git a/scst_local/scst_local.c b/scst_local/scst_local.c index 7f67d1530..1254bda07 100644 --- a/scst_local/scst_local.c +++ b/scst_local/scst_local.c @@ -79,7 +79,7 @@ static unsigned long scst_local_trace_flag = SCST_LOCAL_DEFAULT_LOG_FLAGS; static void scst_local_remove_adapter(void); static int scst_local_add_adapter(void); -#define SCST_LOCAL_VERSION "0.9" +#define SCST_LOCAL_VERSION "0.9.1" static const char *scst_local_version_date = "20081130"; /* diff --git a/usr/fileio/common.h b/usr/fileio/common.h index 155c531f2..e36897f9d 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 " 101" +#define FIO_REV " 102" #define MAX_USN_LEN (20+1) /* For '\0' */ diff --git a/usr/fileio/fileio.c b/usr/fileio/fileio.c index c6ba350dd..ae4f9c2df 100644 --- a/usr/fileio/fileio.c +++ b/usr/fileio/fileio.c @@ -66,7 +66,7 @@ unsigned long trace_flag = DEFAULT_LOG_FLAGS; #endif /* defined(DEBUG) || defined(TRACING) */ #define DEF_BLOCK_SHIFT 9 -#define VERSION_STR "1.0.1" +#define VERSION_STR "1.0.2" #define THREADS 7 struct vdisk_dev dev;