From: Varun Prakash <varun@chelsio.com>
To: target-devel@vger.kernel.org, linux-scsi@vger.kernel.org
Cc: nab@linux-iscsi.org, swise@opengridcomputing.com,
kxie@chelsio.com, indranil@chelsio.com, varun@chelsio.com
Subject: [PATCH v3 00/13] Chelsio iSCSI target offload driver
Date: Wed, 20 Apr 2016 00:00:07 +0530 [thread overview]
Message-ID: <cover.1461088672.git.varun@chelsio.com> (raw)
This is v3 patch series for Chelsio iSCSI target offload
driver(cxgbit.ko).
cxgbit.ko registers with iSCSI target transport and
offloads multiple CPU intensive tasks to
Chelsio T5 adapters.
T5 adapters has following offload features for
iSCSI
-TCP/IP offload
-iSCSI PDU recovery by reassembling TCP segments.
-Header and Data Digest offload.
-iSCSI segmentation offload(ISO).
-Direct Data Placement(DDP).
-v3
- updated commit messages (Sagi).
- dropped alloc/free pdu patch (Sagi).
- added single callback to transmit iscsi pdus (Sagi).
- replaced conn->network_transport by
conn_transport->transport_type in text rsp patch(8/13).
-v2
- added hw offload transport type (Nicholas).
- added PDU alloc, free, xmit callbacks (Nicholas).
- created single patch for all cxgbit.ko files (Nicholas).
- merged definition and usage of int (*iscsit_validate_params)()
in a single patch (Christoph).
- merged definition and usage of void (*iscsit_release_cmd)()
in a single patch (Christoph).
- renamed void (*iscsit_rx_pdu)() to void (*iscsit_get_rx_pdu)() (Sagi).
- added dependency on INET in Kconfig (Arnd).
- added check for NULL sg in cxgbit_set_one_ppod() (Dan Carpenter).
Please review.
Thanks
Varun Prakash (13):
iscsi-target: add int (*iscsit_xmit_pdu)()
iscsi-target: add void (*iscsit_release_cmd)()
iscsi-target: add void (*iscsit_get_rx_pdu)()
iscsi-target: split iscsi_target_rx_thread()
iscsi-target: add int (*iscsit_validate_params)()
iscsi-target: add void (*iscsit_get_r2t_ttt)()
iscsi-target: move iscsit_thread_check_cpumask()
iscsi-target: use conn_transport->transport_type in text rsp
iscsi-target: add new offload transport type
iscsi-target: clear tx_thread_active
iscsi-target: call complete on conn_logout_comp
iscsi-target: export symbols
cxgbit: add files for cxgbit.ko
drivers/infiniband/ulp/isert/ib_isert.c | 10 +
drivers/target/iscsi/Kconfig | 2 +
drivers/target/iscsi/Makefile | 1 +
drivers/target/iscsi/cxgbit/Kconfig | 7 +
drivers/target/iscsi/cxgbit/Makefile | 6 +
drivers/target/iscsi/cxgbit/cxgbit.h | 353 ++++
drivers/target/iscsi/cxgbit/cxgbit_cm.c | 2086 +++++++++++++++++++++
drivers/target/iscsi/cxgbit/cxgbit_ddp.c | 325 ++++
drivers/target/iscsi/cxgbit/cxgbit_lro.h | 72 +
drivers/target/iscsi/cxgbit/cxgbit_main.c | 701 +++++++
drivers/target/iscsi/cxgbit/cxgbit_target.c | 1561 +++++++++++++++
drivers/target/iscsi/iscsi_target.c | 684 +++----
drivers/target/iscsi/iscsi_target_configfs.c | 76 +
drivers/target/iscsi/iscsi_target_datain_values.c | 1 +
drivers/target/iscsi/iscsi_target_login.c | 13 +-
drivers/target/iscsi/iscsi_target_nego.c | 1 +
drivers/target/iscsi/iscsi_target_parameters.c | 1 +
drivers/target/iscsi/iscsi_target_util.c | 5 +
include/target/iscsi/iscsi_target_core.h | 27 +
include/target/iscsi/iscsi_transport.h | 40 +
20 files changed, 5546 insertions(+), 426 deletions(-)
create mode 100644 drivers/target/iscsi/cxgbit/Kconfig
create mode 100644 drivers/target/iscsi/cxgbit/Makefile
create mode 100644 drivers/target/iscsi/cxgbit/cxgbit.h
create mode 100644 drivers/target/iscsi/cxgbit/cxgbit_cm.c
create mode 100644 drivers/target/iscsi/cxgbit/cxgbit_ddp.c
create mode 100644 drivers/target/iscsi/cxgbit/cxgbit_lro.h
create mode 100644 drivers/target/iscsi/cxgbit/cxgbit_main.c
create mode 100644 drivers/target/iscsi/cxgbit/cxgbit_target.c
--
2.0.2
next reply other threads:[~2016-04-19 18:30 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-04-19 18:30 Varun Prakash [this message]
2016-04-19 18:30 ` [PATCH v3 01/13] iscsi-target: add int (*iscsit_xmit_pdu)() Varun Prakash
2016-04-19 18:30 ` [PATCH v3 02/13] iscsi-target: add void (*iscsit_release_cmd)() Varun Prakash
2016-04-19 18:30 ` [PATCH v3 03/13] iscsi-target: add void (*iscsit_get_rx_pdu)() Varun Prakash
2016-08-09 3:19 ` Andy Grover
2016-08-13 16:56 ` Varun Prakash
2016-04-19 18:30 ` [PATCH v3 04/13] iscsi-target: split iscsi_target_rx_thread() Varun Prakash
2016-04-19 18:30 ` [PATCH v3 05/13] iscsi-target: add int (*iscsit_validate_params)() Varun Prakash
2016-04-19 18:30 ` [PATCH v3 06/13] iscsi-target: add void (*iscsit_get_r2t_ttt)() Varun Prakash
2016-04-19 18:30 ` [PATCH v3 07/13] iscsi-target: move iscsit_thread_check_cpumask() Varun Prakash
2016-04-19 18:30 ` [PATCH v3 08/13] iscsi-target: use conn_transport->transport_type in text rsp Varun Prakash
2016-04-19 18:30 ` [PATCH v3 09/13] iscsi-target: add new offload transport type Varun Prakash
2016-04-19 18:30 ` [PATCH v3 10/13] iscsi-target: clear tx_thread_active Varun Prakash
2016-04-19 18:30 ` [PATCH v3 11/13] iscsi-target: call complete on conn_logout_comp Varun Prakash
2016-04-19 18:30 ` [PATCH v3 12/13] iscsi-target: export symbols Varun Prakash
2016-04-19 18:30 ` [PATCH v3 13/13] cxgbit: add files for cxgbit.ko Varun Prakash
2016-04-30 15:54 ` Or Gerlitz
2016-05-18 11:45 ` Or Gerlitz
2016-05-24 6:40 ` Nicholas A. Bellinger
2016-05-25 15:04 ` Or Gerlitz
2016-05-25 17:40 ` Steve Wise
2016-05-25 20:41 ` Or Gerlitz
2016-05-26 4:55 ` Nicholas A. Bellinger
2016-05-26 18:58 ` Varun Prakash
2016-07-05 21:24 ` Or Gerlitz
2016-07-06 17:17 ` Varun Prakash
2016-07-07 7:54 ` Or Gerlitz
2016-07-08 18:03 ` Varun Prakash
2016-07-08 18:36 ` Steve Wise
2016-07-12 7:53 ` Or Gerlitz
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cover.1461088672.git.varun@chelsio.com \
--to=varun@chelsio.com \
--cc=indranil@chelsio.com \
--cc=kxie@chelsio.com \
--cc=linux-scsi@vger.kernel.org \
--cc=nab@linux-iscsi.org \
--cc=swise@opengridcomputing.com \
--cc=target-devel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).