Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 33566
b: refs/heads/master
c: f4246b3
h: refs/heads/master
v: v3
  • Loading branch information
Mike Christie authored and James Bottomley committed Jul 28, 2006
1 parent f4cff70 commit 78c6797
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f3ff0c3627df90aa28be98803b10289bb348e4e6
refs/heads/master: f4246b33c774bb4330eb6286beed6d3c9f4373c4
6 changes: 1 addition & 5 deletions trunk/drivers/scsi/iscsi_tcp.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,10 @@

#include "iscsi_tcp.h"

#define ISCSI_TCP_VERSION "1.0-595"

MODULE_AUTHOR("Dmitry Yusupov <dmitry_yus@yahoo.com>, "
"Alex Aizman <itn780@yahoo.com>");
MODULE_DESCRIPTION("iSCSI/TCP data-path");
MODULE_LICENSE("GPL");
MODULE_VERSION(ISCSI_TCP_VERSION);
/* #define DEBUG_TCP */
#define DEBUG_ASSERT

Expand Down Expand Up @@ -2317,8 +2314,7 @@ static void iscsi_tcp_session_destroy(struct iscsi_cls_session *cls_session)
}

static struct scsi_host_template iscsi_sht = {
.name = "iSCSI Initiator over TCP/IP, v"
ISCSI_TCP_VERSION,
.name = "iSCSI Initiator over TCP/IP",
.queuecommand = iscsi_queuecommand,
.change_queue_depth = iscsi_change_queue_depth,
.can_queue = ISCSI_XMIT_CMDS_MAX - 1,
Expand Down
5 changes: 5 additions & 0 deletions trunk/drivers/scsi/scsi_transport_iscsi.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
#define ISCSI_SESSION_ATTRS 11
#define ISCSI_CONN_ATTRS 11
#define ISCSI_HOST_ATTRS 0
#define ISCSI_TRANSPORT_VERSION "1.1-646"

struct iscsi_internal {
int daemon_pid;
Expand Down Expand Up @@ -1613,6 +1614,9 @@ static __init int iscsi_transport_init(void)
{
int err;

printk(KERN_INFO "Loading iSCSI transport class v%s.",
ISCSI_TRANSPORT_VERSION);

err = class_register(&iscsi_transport_class);
if (err)
return err;
Expand Down Expand Up @@ -1678,3 +1682,4 @@ MODULE_AUTHOR("Mike Christie <michaelc@cs.wisc.edu>, "
"Alex Aizman <itn780@yahoo.com>");
MODULE_DESCRIPTION("iSCSI Transport Interface");
MODULE_LICENSE("GPL");
MODULE_VERSION(ISCSI_TRANSPORT_VERSION);

0 comments on commit 78c6797

Please sign in to comment.