Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757723AbYLJTB6 (ORCPT ); Wed, 10 Dec 2008 14:01:58 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1757500AbYLJTBi (ORCPT ); Wed, 10 Dec 2008 14:01:38 -0500 Received: from moutng.kundenserver.de ([212.227.17.8]:53751 "EHLO moutng.kundenserver.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756864AbYLJTBg (ORCPT ); Wed, 10 Dec 2008 14:01:36 -0500 Message-ID: <49401205.8010207@vlnb.net> Date: Wed, 10 Dec 2008 22:01:25 +0300 From: Vladislav Bolkhovitin User-Agent: Thunderbird 2.0.0.9 (X11/20071115) MIME-Version: 1.0 To: linux-scsi@vger.kernel.org CC: James Bottomley , Andrew Morton , FUJITA Tomonori , Mike Christie , Jeff Garzik , Boaz Harrosh , Linus Torvalds , linux-kernel@vger.kernel.org, scst-devel@lists.sourceforge.net, Bart Van Assche , "Nicholas A. Bellinger" , netdev@vger.kernel.org Subject: [PATCH][RFC 21/23]: iSCSI target driver References: <494009D7.4020602@vlnb.net> In-Reply-To: <494009D7.4020602@vlnb.net> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Provags-ID: V01U2FsdGVkX18q+3fp/9LAEY0kginCyy8iiZj5UwdSXavhUCr JB6/ojL44lIWwd+ZUjLq6+yI3+Z8obiecxZhg/As1FoPh9luDA VOtOdhfxa7kNYwQqOpP+g== Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2036 Lines: 44 This patch contains iSCSI-SCST target driver. This driver is a heavily modified forked with all respects IET (http://iscsitarget.sourceforge.net). Modifications were aimed to make a clearer, more reviewable and maintainable code as well as to fix many problems and make many improvements. See http://scst.sourceforge.net/target_iscsi.html for more details. It has split user/kernel space architecture, where all management, sessions creation, parameters negotiation, etc. made in user space and data are transferred in the kernel space. Such architecture for iSCSI processing was many times acknowledged as the right one. Particularly, in-kernel iSCSI initiator (open-iscsi) has such architecture. Signed-off-by: Vladislav Bolkhovitin --- drivers/scst/iscsi-scst/Kconfig | 25 drivers/scst/iscsi-scst/Makefile | 6 drivers/scst/iscsi-scst/config.c | 597 +++++++ drivers/scst/iscsi-scst/conn.c | 488 +++++ drivers/scst/iscsi-scst/digest.c | 221 ++ drivers/scst/iscsi-scst/digest.h | 31 drivers/scst/iscsi-scst/event.c | 116 + drivers/scst/iscsi-scst/iscsi.c | 3066 ++++++++++++++++++++++++++++++++++++ drivers/scst/iscsi-scst/iscsi.h | 577 ++++++ drivers/scst/iscsi-scst/iscsi_dbg.h | 73 drivers/scst/iscsi-scst/iscsi_hdr.h | 517 ++++++ drivers/scst/iscsi-scst/nthread.c | 1522 +++++++++++++++++ drivers/scst/iscsi-scst/param.c | 263 +++ drivers/scst/iscsi-scst/session.c | 210 ++ drivers/scst/iscsi-scst/target.c | 306 +++ include/scst/iscsi_scst.h | 156 + include/scst/iscsi_scst_ver.h | 16 17 files changed, 8190 insertions(+) The patch is too big to be submitted inline. You can find it in http://scst.sourceforge.net/patches/iscsi-scst.diff -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/