File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 43
43
44
44
#include "iscsi_tcp.h"
45
45
46
+ #define ISCSI_TCP_VERSION "1.0-574"
47
+
46
48
MODULE_AUTHOR ("Dmitry Yusupov <dmitry_yus@yahoo.com>, "
47
49
"Alex Aizman <itn780@yahoo.com>" );
48
50
MODULE_DESCRIPTION ("iSCSI/TCP data-path" );
49
51
MODULE_LICENSE ("GPL" );
50
- MODULE_VERSION ("0:4.445" );
52
+ MODULE_VERSION (ISCSI_TCP_VERSION );
51
53
/* #define DEBUG_TCP */
52
54
#define DEBUG_ASSERT
53
55
@@ -2448,8 +2450,8 @@ static void iscsi_tcp_session_destroy(struct iscsi_cls_session *cls_session)
2448
2450
}
2449
2451
2450
2452
static struct scsi_host_template iscsi_sht = {
2451
- .name = "iSCSI Initiator over TCP/IP, v. "
2452
- ISCSI_VERSION_STR ,
2453
+ .name = "iSCSI Initiator over TCP/IP, v"
2454
+ ISCSI_TCP_VERSION ,
2453
2455
.queuecommand = iscsi_queuecommand ,
2454
2456
.change_queue_depth = iscsi_change_queue_depth ,
2455
2457
.can_queue = ISCSI_XMIT_CMDS_MAX - 1 ,
Original file line number Diff line number Diff line change 21
21
#ifndef ISCSI_PROTO_H
22
22
#define ISCSI_PROTO_H
23
23
24
- #define ISCSI_VERSION_STR "0.3"
25
- #define ISCSI_DATE_STR "22-Apr-2005"
26
24
#define ISCSI_DRAFT20_VERSION 0x00
27
25
28
26
/* default iSCSI listen port for incoming connections */
You can’t perform that action at this time.
0 commit comments