iscsi_tcp.c (a02001086bbfb4da35d1228bebc2f1b442db455f) iscsi_tcp.c (c40ecc12cfdb630332198a04e2832ae8218a61f1)
1/*
2 * iSCSI Initiator over TCP/IP Data-Path
3 *
4 * Copyright (C) 2004 Dmitry Yusupov
5 * Copyright (C) 2004 Alex Aizman
6 * Copyright (C) 2005 - 2006 Mike Christie
7 * Copyright (C) 2006 Red Hat, Inc. All rights reserved.
8 * maintained by open-iscsi@googlegroups.com

--- 952 unchanged lines hidden (view full) ---

961 .eh_device_reset_handler= iscsi_eh_device_reset,
962 .eh_target_reset_handler = iscsi_eh_recover_target,
963 .use_clustering = DISABLE_CLUSTERING,
964 .slave_alloc = iscsi_sw_tcp_slave_alloc,
965 .slave_configure = iscsi_sw_tcp_slave_configure,
966 .target_alloc = iscsi_target_alloc,
967 .proc_name = "iscsi_tcp",
968 .this_id = -1,
1/*
2 * iSCSI Initiator over TCP/IP Data-Path
3 *
4 * Copyright (C) 2004 Dmitry Yusupov
5 * Copyright (C) 2004 Alex Aizman
6 * Copyright (C) 2005 - 2006 Mike Christie
7 * Copyright (C) 2006 Red Hat, Inc. All rights reserved.
8 * maintained by open-iscsi@googlegroups.com

--- 952 unchanged lines hidden (view full) ---

961 .eh_device_reset_handler= iscsi_eh_device_reset,
962 .eh_target_reset_handler = iscsi_eh_recover_target,
963 .use_clustering = DISABLE_CLUSTERING,
964 .slave_alloc = iscsi_sw_tcp_slave_alloc,
965 .slave_configure = iscsi_sw_tcp_slave_configure,
966 .target_alloc = iscsi_target_alloc,
967 .proc_name = "iscsi_tcp",
968 .this_id = -1,
969 .track_queue_depth = 1,
969};
970
971static struct iscsi_transport iscsi_sw_tcp_transport = {
972 .owner = THIS_MODULE,
973 .name = "tcp",
974 .caps = CAP_RECOVERY_L0 | CAP_MULTI_R2T | CAP_HDRDGST
975 | CAP_DATADGST,
976 /* session management */

--- 53 unchanged lines hidden ---
970};
971
972static struct iscsi_transport iscsi_sw_tcp_transport = {
973 .owner = THIS_MODULE,
974 .name = "tcp",
975 .caps = CAP_RECOVERY_L0 | CAP_MULTI_R2T | CAP_HDRDGST
976 | CAP_DATADGST,
977 /* session management */

--- 53 unchanged lines hidden ---