From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753801Ab1CAARo (ORCPT ); Mon, 28 Feb 2011 19:17:44 -0500 Received: from nm3-vm0.bullet.mail.sp2.yahoo.com ([98.139.90.230]:38873 "HELO nm3-vm0.bullet.mail.sp2.yahoo.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1753489Ab1CAARl (ORCPT ); Mon, 28 Feb 2011 19:17:41 -0500 X-Yahoo-Newman-Id: 340053.74195.bm@omp1025.mail.sp2.yahoo.com X-Yahoo-SMTP: fzDSGlOswBCWnIOrNw7KwwK1j9PqyNbe5PtLKiS4dDU.UNl_t6bdEZu9tTLW X-YMail-OSG: SxL5MIEVM1klSWleMht4H7pKwqE25v3ZzWdDa1uiNSu.Eav iZr_KPYGHFlA7rVcPF01Z8CVfpO8NfSdvdaeG07wIsTw3lZIWx6MYxfloH3g PYd4gNw20kvZe5fOuJJpOcLBTOgEscu11aQrBcOj8Qw.aZjmf6fdc_swpxaJ GL_5xb75yjYO_MCY8eMN4L.KJEJXaZFYJSCrd2LE6ySpCSAG_KLRV81bgZS8 9cB2byiGRTKhh5p_xAfth.ms60mlyCgVYx2LE7awUqFnP8luV.SR.mINHz8z 43W_oB5gMwnxV5ZM2q2jP._G6XyK8lGis4R8QgER9BmTik1xB3li6zDeXbWg 50vdyVsNV21FMs0UFnB0kEt9g7rbS484SmOPsrUiqrw-- X-Yahoo-Newman-Property: ymail-3 From: "Nicholas A. Bellinger" To: linux-scsi , linux-kernel , James Bottomley Cc: Christoph Hellwig , Mike Christie , Hannes Reinecke , FUJITA Tomonori , Joel Becker , Douglas Gilbert , Nicholas Bellinger Subject: [PATCH 0/5] target updates for scsi-post-merge .39 (round one, v2) Date: Mon, 28 Feb 2011 16:17:26 -0800 Message-Id: <1298938651-18784-1-git-send-email-nab@linux-iscsi.org> X-Mailer: git-send-email 1.5.6.5 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Nicholas Bellinger Hi James and Co, The following is the first round (v2) of target patches intended for .39 scsi-post-merge tree that introduces new target functionality and the first mainline TCM fabric module (TCM_Loop). Patches #1 -> #4 involve the addition of new ConfigFS context based statistics groups in target_core_stat.c following RFC-4455 to address the removal of the legacy ProcFS based target_core_mib.c in .38 code. Patch #5 adds the TCM_Loop virtual SCSI LLD module that was originally reviewed and intended for .38 code. This module currently supports high level port emulation for SAS, FC and iSCSI ProtoIdents. The changes from v1 -> v2 include address Christoph's comments for patch #5 for TCM_Loop included into lio-core-2.6.git/lio-4.1. Please be sure to apply this series on top the critical 'for-38-urgent' fix posted here: [PATCH-FOR-38] target: Fix t_transport_aborted handling in LUN_RESET + active I/O shutdown http://marc.info/?l=linux-scsi&m=129859551620778&w=2 as well as the 14 patch series for-39-misc-v2 posted recently here: [PATCH 00/14] target patches for .39 scsi-misc (v2) http://marc.info/?l=linux-scsi&m=129866341626173&w=2 This full series is also available directly from git here: git://git.kernel.org/pub/scm/linux/kernel/git/nab/scsi-post-merge-2.6.git for-39-post-merge-v2 Please review and apply, Thanks! Signed-off-by: Nicholas A. Bellinger Nicholas Bellinger (5): target: add initial device backend context target_core_stat.c code target: add initial fabric port context target_core_stat.c code target: add initial fabric MappedLUN context target_core_stat.c code target: Add fabric_stat_group for fabric module statistics default_group tcm_loop: Add multi-fabric Linux/SCSI LLD fabric module drivers/target/Kconfig | 2 + drivers/target/Makefile | 6 +- drivers/target/target_core_configfs.c | 76 +- drivers/target/target_core_fabric_configfs.c | 209 +++- drivers/target/target_core_stat.c | 1810 ++++++++++++++++++++++++ drivers/target/target_core_stat.h | 8 + drivers/target/tcm_loop/Kconfig | 11 + drivers/target/tcm_loop/Makefile | 5 + drivers/target/tcm_loop/tcm_loop_configfs.c | 643 +++++++++ drivers/target/tcm_loop/tcm_loop_core.h | 141 ++ drivers/target/tcm_loop/tcm_loop_fabric.c | 472 ++++++ drivers/target/tcm_loop/tcm_loop_fabric_scsi.c | 574 ++++++++ include/target/target_core_base.h | 35 +- include/target/target_core_configfs.h | 4 + 14 files changed, 3978 insertions(+), 18 deletions(-) create mode 100644 drivers/target/target_core_stat.c create mode 100644 drivers/target/target_core_stat.h create mode 100644 drivers/target/tcm_loop/Kconfig create mode 100644 drivers/target/tcm_loop/Makefile create mode 100644 drivers/target/tcm_loop/tcm_loop_configfs.c create mode 100644 drivers/target/tcm_loop/tcm_loop_core.h create mode 100644 drivers/target/tcm_loop/tcm_loop_fabric.c create mode 100644 drivers/target/tcm_loop/tcm_loop_fabric_scsi.c -- 1.7.4.1