Change version 2.2.1-pre into 2.2.1

git-svn-id: http://svn.code.sf.net/p/scst/svn/branches/2.2.x@4731 d57e44dd-8a1f-0410-8b47-8ef2f437770f
This commit is contained in:
Bart Van Assche
2013-01-12 15:31:48 +00:00
parent e9de4cc46f
commit c16b9c2b3d
11 changed files with 16 additions and 16 deletions

View File

@@ -22,4 +22,4 @@
#define ISCSI_VERSION_STRING_SUFFIX
#endif
#define ISCSI_VERSION_STRING "2.2.1-pre" ISCSI_VERSION_STRING_SUFFIX
#define ISCSI_VERSION_STRING "2.2.1" ISCSI_VERSION_STRING_SUFFIX

View File

@@ -31,8 +31,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(2, 2, 0, 0)
#define Q2T_VERSION_STRING "2.2.1-pre"
#define Q2T_VERSION_CODE Q2T_VERSION(2, 2, 1, 0)
#define Q2T_VERSION_STRING "2.2.1"
#define Q2T_PROC_VERSION_NAME "version"
#define Q2T_MAX_CDB_LEN 16

View File

@@ -1071,7 +1071,7 @@ struct scst_tgt_template {
/*
* Optional revision to be reported in the SCSI inquiry response. If
* NULL, an SCST device handler specific default value will be used,
* e.g. " 220" for scst_vdisk file I/O.
* e.g. " 221" for scst_vdisk file I/O.
*/
const char *revision;

View File

@@ -38,13 +38,13 @@
* and FIO_REV in usr/fileio/common.h as well.
*/
#define SCST_VERSION(a, b, c, d) (((a) << 24) + ((b) << 16) + ((c) << 8) + d)
#define SCST_VERSION_CODE SCST_VERSION(2, 2, 0, 0)
#define SCST_VERSION_CODE SCST_VERSION(2, 2, 1, 0)
#ifdef CONFIG_SCST_PROC
#define SCST_VERSION_STRING_SUFFIX "-procfs"
#else
#define SCST_VERSION_STRING_SUFFIX
#endif
#define SCST_VERSION_NAME "2.2.1-pre"
#define SCST_VERSION_NAME "2.2.1"
#define SCST_VERSION_STRING SCST_VERSION_NAME SCST_VERSION_STRING_SUFFIX
#define SCST_CONST_VERSION "$Revision$"

View File

@@ -75,7 +75,7 @@ static struct scst_trace_log vdisk_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 " 220"
#define SCST_FIO_REV " 221"
#define MAX_USN_LEN (20+1) /* For '\0' */

View File

@@ -84,8 +84,8 @@ static unsigned long scst_local_trace_flag = SCST_LOCAL_DEFAULT_LOG_FLAGS;
#define scsi_bufflen(cmd) ((cmd)->request_bufflen)
#endif
#define SCST_LOCAL_VERSION "2.2.1-pre"
static const char *scst_local_version_date = "20120126";
#define SCST_LOCAL_VERSION "2.2.1"
static const char *scst_local_version_date = "2013-01-12";
/* Some statistics */
static atomic_t num_aborts = ATOMIC_INIT(0);

View File

@@ -1,6 +1,6 @@
#!/usr/bin/perl
$Version = 'SCST Configurator v2.2.0';
$Version = 'SCST Configurator v2.2.1';
# Configures SCST
#

View File

@@ -1,5 +1,5 @@
Next release
------------
Version 2.2.1 (January 12, 2013)
-------------
Changes compared to version 2.2.0:
- Made sure that the SCST session is unregistered after an initiator logs out.

View File

@@ -58,8 +58,8 @@
/* Name of this kernel module. */
#define DRV_NAME "ib_srpt"
#define DRV_VERSION "2.2.2-pre"
#define DRV_RELDATE "(not yet released)"
#define DRV_VERSION "2.2.1"
#define DRV_RELDATE "2013-01-12"
#if defined(CONFIG_SCST_DEBUG) || defined(CONFIG_SCST_TRACING)
/* Flags to be used in SCST debug tracing statements. */
#define DEFAULT_SRPT_TRACE_FLAGS (TRACE_OUT_OF_MEM | TRACE_MINOR \

View File

@@ -25,7 +25,7 @@
/* 8 byte ASCII Vendor */
#define VENDOR "SCST_USR"
/* 4 byte ASCII Product Revision Level - left aligned */
#define FIO_REV " 220"
#define FIO_REV " 221"
#define MAX_USN_LEN (20+1) /* For '\0' */

View File

@@ -67,7 +67,7 @@ unsigned long trace_flag = DEFAULT_LOG_FLAGS;
#endif /* defined(DEBUG) || defined(TRACING) */
#define DEF_BLOCK_SHIFT 9
#define VERSION_STR "2.2.1-pre"
#define VERSION_STR "2.2.1"
#define THREADS 7
#define MAX_VDEVS 10