Forgotten to be changed during 1.0.0 release externally seen SCST revision

git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@490 d57e44dd-8a1f-0410-8b47-8ef2f437770f
This commit is contained in:
Vladislav Bolkhovitin
2008-08-20 15:33:18 +00:00
parent 1257ac6ecf
commit 9cf822569c
3 changed files with 8 additions and 3 deletions

View File

@@ -44,7 +44,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 0x01000100
#define SCST_VERSION(a, b, c, d) (((a) << 24) + ((b) << 16) + ((c) << 8) + d)
#define SCST_VERSION_STRING "1.0.1"

View File

@@ -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 " 101"
#define MAX_USN_LEN 20

View File

@@ -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 " 101"
#define MAX_USN_LEN 20