mirror of
https://github.com/SCST-project/scst.git
synced 2026-08-27 19:37:17 +00:00
Versions changed on 1.0.1.2
git-svn-id: http://svn.code.sf.net/p/scst/svn/branches/1.0.1.x@1052 d57e44dd-8a1f-0410-8b47-8ef2f437770f
This commit is contained in:
+2
-2
@@ -1,7 +1,7 @@
|
||||
iSCSI SCST target driver
|
||||
========================
|
||||
|
||||
Version 1.0.1.1, 14 August 2009
|
||||
Version 1.0.1.2, XX XXXXXX 2009
|
||||
-------------------------------
|
||||
|
||||
This driver is a forked with all respects version of iSCSI Enterprise
|
||||
@@ -21,7 +21,7 @@ simultaneously all the driver's modules and files were renamed:
|
||||
* iscsi-target -> iscsi-scst
|
||||
* iscsi-target.ko -> iscsi-scst.ko
|
||||
|
||||
This version is compatible with SCST version 1.0.1.1 and higher.
|
||||
This version is compatible with SCST version 1.0.1.2 and higher.
|
||||
|
||||
|
||||
Installation if your Linux kernel already has iSCSI-SCST built-in
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
iSCSI SCST target driver
|
||||
========================
|
||||
|
||||
Version 1.0.1.1, 14 August 2009
|
||||
Version 1.0.1.2, XX XXXXXX 2009
|
||||
-------------------------------
|
||||
|
||||
This driver is a forked with all respects version of iSCSI Enterprise
|
||||
|
||||
@@ -13,4 +13,4 @@
|
||||
* GNU General Public License for more details.
|
||||
*/
|
||||
|
||||
#define ISCSI_VERSION_STRING "1.0.1.1/0.4.17r213"
|
||||
#define ISCSI_VERSION_STRING "1.0.1.2/0.4.17r213"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
Target driver for Qlogic 22xx/23xx Fibre Channel cards
|
||||
======================================================
|
||||
|
||||
Version 1.0.1.1, 14 August 2009
|
||||
Version 1.0.1.2, XX XXXXXX 2009
|
||||
-------------------------------
|
||||
|
||||
This driver has all required features and looks to be quite stable (for
|
||||
@@ -13,7 +13,7 @@ all necessary callbacks, but it's still capable to work as initiator
|
||||
only. Mode, when a host acts as the initiator and the target
|
||||
simultaneously, is supported as well.
|
||||
|
||||
This version is compatible with SCST core version 1.0.1.1 and higher and
|
||||
This version is compatible with SCST core version 1.0.1.2 and higher and
|
||||
Linux kernel 2.6.26 and higher. If you need to use this driver on
|
||||
kernels prior 2.6.26, you should apply qla_ini_pre-2.6.26.patch.
|
||||
|
||||
|
||||
@@ -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, 1, 0)
|
||||
#define Q2T_VERSION_STRING "1.0.1.1"
|
||||
#define Q2T_VERSION_CODE Q2T_VERSION(1, 0, 1, 2)
|
||||
#define Q2T_VERSION_STRING "1.0.1.2"
|
||||
|
||||
#define Q2T_MAX_CDB_LEN 16
|
||||
#define Q2T_TIMEOUT 10 /* in seconds */
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
Generic SCSI target mid-level for Linux (SCST)
|
||||
==============================================
|
||||
|
||||
Version 1.0.1.1, 14 August 2009
|
||||
Version 1.0.1.2 XX XXXXXX 2009
|
||||
-------------------------------
|
||||
|
||||
SCST is designed to provide unified, consistent interface between SCSI
|
||||
|
||||
+2
-2
@@ -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 0x01000101
|
||||
#define SCST_VERSION_CODE 0x01000102
|
||||
#define SCST_VERSION(a, b, c, d) (((a) << 24) + ((b) << 16) + ((c) << 8) + d)
|
||||
#define SCST_VERSION_STRING "1.0.1.1"
|
||||
#define SCST_VERSION_STRING "1.0.1.2"
|
||||
#define SCST_INTERFACE_VERSION \
|
||||
SCST_VERSION_STRING "$Revision$" SCST_CONST_VERSION
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
|
||||
#define DEV_USER_NAME "scst_user"
|
||||
#define DEV_USER_PATH "/dev/"
|
||||
#define DEV_USER_VERSION_NAME "1.0.1.1"
|
||||
#define DEV_USER_VERSION_NAME "1.0.1.2"
|
||||
#define DEV_USER_VERSION \
|
||||
DEV_USER_VERSION_NAME "$Revision$" SCST_CONST_VERSION
|
||||
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
User space FILEIO handler
|
||||
=========================
|
||||
|
||||
Version 1.0.1.1, 14 August 2009
|
||||
Version 1.0.1.2, XX XXXXXX 2009
|
||||
-------------------------------
|
||||
|
||||
User space program fileio_tgt uses interface of SCST's scst_user dev
|
||||
|
||||
+1
-1
@@ -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.1"
|
||||
#define VERSION_STR "1.0.1.2"
|
||||
#define THREADS 7
|
||||
|
||||
struct vdisk_dev dev;
|
||||
|
||||
Reference in New Issue
Block a user