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
This commit is contained in:
Vladislav Bolkhovitin
2008-08-20 15:46:12 +00:00
parent 9145969c9c
commit eeebea3043
3 changed files with 8 additions and 3 deletions

View File

@@ -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"

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