<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>075a5d35 - scsi: target: Add virtual remote target</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/target/Makefile#075a5d35</link>
        <description>scsi: target: Add virtual remote targetCreate virtual remote target module.This can be used to see a whole ACL/LUN/TPG configuration from all nodes instorage cluster.  For example, it permits setting up remote ports in ALUAport groups. To report all ports in a cluster in REPORT TARGET PORT GROUPcommand.Suggested-by: Konstantin Shelekhin &lt;k.shelekhin@yadro.com&gt;Signed-off-by: Dmitry Bogdanov &lt;d.bogdanov@yadro.com&gt;Link: https://lore.kernel.org/r/20230313181110.20566-13-d.bogdanov@yadro.comReviewed-by: Mike Christie &lt;michael.christie@oracle.com&gt;Signed-off-by: Martin K. Petersen &lt;martin.petersen@oracle.com&gt;

            List of files:
            /linux-6.15/drivers/target/Makefile</description>
        <pubDate>Mon, 13 Mar 2023 18:11:10 +0000</pubDate>
        <dc:creator>Dmitry Bogdanov &lt;d.bogdanov@yadro.com&gt;</dc:creator>
    </item>
<item>
        <title>b2441318 - License cleanup: add SPDX GPL-2.0 license identifier to files with no license</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/target/Makefile#b2441318</link>
        <description>License cleanup: add SPDX GPL-2.0 license identifier to files with no licenseMany source files in the tree are missing licensing information, whichmakes it harder for compliance tools to determine the correct license.By default all files without license information are under the defaultlicense of the kernel, which is GPL version 2.Update the files which contain no license information with the &apos;GPL-2.0&apos;SPDX license identifier.  The SPDX identifier is a legally bindingshorthand, which can be used instead of the full boiler plate text.This patch is based on work done by Thomas Gleixner and Kate Stewart andPhilippe Ombredanne.How this work was done:Patches were generated and checked against linux-4.14-rc6 for a subset ofthe use cases: - file had no licensing information it it. - file was a */uapi/* one with no licensing information in it, - file was a */uapi/* one with existing licensing information,Further patches will be generated in subsequent months to fix up caseswhere non-standard license headers were used, and references to licensehad to be inferred by heuristics based on keywords.The analysis to determine which SPDX License Identifier to be applied toa file was done in a spreadsheet of side by side results from of theoutput of two independent scanners (ScanCode &amp; Windriver) producing SPDXtag:value files created by Philippe Ombredanne.  Philippe prepared thebase worksheet, and did an initial spot review of a few 1000 files.The 4.13 kernel was the starting point of the analysis with 60,537 filesassessed.  Kate Stewart did a file by file comparison of the scannerresults in the spreadsheet to determine which SPDX license identifier(s)to be applied to the file. She confirmed any determination that was notimmediately clear with lawyers working with the Linux Foundation.Criteria used to select files for SPDX license identifier tagging was: - Files considered eligible had to be source code files. - Make and config files were included as candidates if they contained &gt;5   lines of source - File already had some variant of a license header in it (even if &lt;5   lines).All documentation files were explicitly excluded.The following heuristics were used to determine which SPDX licenseidentifiers to apply. - when both scanners couldn&apos;t find any license traces, file was   considered to have no license information in it, and the top level   COPYING file license applied.   For non */uapi/* files that summary was:   SPDX license identifier                            # files   ---------------------------------------------------|-------   GPL-2.0                                              11139   and resulted in the first patch in this series.   If that file was a */uapi/* path one, it was &quot;GPL-2.0 WITH   Linux-syscall-note&quot; otherwise it was &quot;GPL-2.0&quot;.  Results of that was:   SPDX license identifier                            # files   ---------------------------------------------------|-------   GPL-2.0 WITH Linux-syscall-note                        930   and resulted in the second patch in this series. - if a file had some form of licensing information in it, and was one   of the */uapi/* ones, it was denoted with the Linux-syscall-note if   any GPL family license was found in the file or had no licensing in   it (per prior point).  Results summary:   SPDX license identifier                            # files   ---------------------------------------------------|------   GPL-2.0 WITH Linux-syscall-note                       270   GPL-2.0+ WITH Linux-syscall-note                      169   ((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause)    21   ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause)    17   LGPL-2.1+ WITH Linux-syscall-note                      15   GPL-1.0+ WITH Linux-syscall-note                       14   ((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause)    5   LGPL-2.0+ WITH Linux-syscall-note                       4   LGPL-2.1 WITH Linux-syscall-note                        3   ((GPL-2.0 WITH Linux-syscall-note) OR MIT)              3   ((GPL-2.0 WITH Linux-syscall-note) AND MIT)             1   and that resulted in the third patch in this series. - when the two scanners agreed on the detected license(s), that became   the concluded license(s). - when there was disagreement between the two scanners (one detected a   license but the other didn&apos;t, or they both detected different   licenses) a manual inspection of the file occurred. - In most cases a manual inspection of the information in the file   resulted in a clear resolution of the license that should apply (and   which scanner probably needed to revisit its heuristics). - When it was not immediately clear, the license identifier was   confirmed with lawyers working with the Linux Foundation. - If there was any question as to the appropriate license identifier,   the file was flagged for further research and to be revisited later   in time.In total, over 70 hours of logged manual review was done on thespreadsheet to determine the SPDX license identifiers to apply to thesource files by Kate, Philippe, Thomas and, in some cases, confirmationby lawyers working with the Linux Foundation.Kate also obtained a third independent scan of the 4.13 code base fromFOSSology, and compared selected files where the other two scannersdisagreed against that SPDX file, to see if there was new insights.  TheWindriver scanner is based on an older version of FOSSology in part, sothey are related.Thomas did random spot checks in about 500 files from the spreadsheetsfor the uapi headers and agreed with SPDX license identifier in thefiles he inspected. For the non-uapi files Thomas did random spot checksin about 15000 files.In initial set of patches against 4.14-rc6, 3 files were found to havecopy/paste license identifier errors, and have been fixed to reflect thecorrect identifier.Additionally Philippe spent 10 hours this week doing a detailed manualinspection and review of the 12,461 patched files from the initial patchversion early this week with: - a full scancode scan run, collecting the matched texts, detected   license ids and scores - reviewing anything where there was a license detected (about 500+   files) to ensure that the applied SPDX license was correct - reviewing anything where there was no detection but the patch license   was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied   SPDX license was correctThis produced a worksheet with 20 files needing minor correction.  Thisworksheet was then exported into 3 different .csv files for thedifferent types of files to be modified.These .csv files were then reviewed by Greg.  Thomas wrote a script toparse the csv files and add the proper SPDX tag to the file, in theformat that the file expected.  This script was further refined by Gregbased on the output to detect more types of files automatically and todistinguish between header and source .c files (which need differentcomment types.)  Finally Greg ran the script using the .csv files togenerate the patches.Reviewed-by: Kate Stewart &lt;kstewart@linuxfoundation.org&gt;Reviewed-by: Philippe Ombredanne &lt;pombredanne@nexb.com&gt;Reviewed-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/target/Makefile</description>
        <pubDate>Wed, 01 Nov 2017 14:07:57 +0000</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>68d4cef3 - target: Put TCMU under a new config option</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/target/Makefile#68d4cef3</link>
        <description>target: Put TCMU under a new config optionConceptually version 2 should be viewed as an entirely new, incompatibleversion of TCMU, so emphasize this by changing the config option andKconfig text.Signed-off-by: Andy Grover &lt;agrover@redhat.com&gt;Signed-off-by: Nicholas Bellinger &lt;nab@linux-iscsi.org&gt;

            List of files:
            /linux-6.15/drivers/target/Makefile</description>
        <pubDate>Wed, 15 Apr 2015 00:30:05 +0000</pubDate>
        <dc:creator>Andy Grover &lt;agrover@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>7c9e7a6f - target: Add a user-passthrough backstore</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/target/Makefile#7c9e7a6f</link>
        <description>target: Add a user-passthrough backstoreAdd a LIO storage engine that presents commands to userspace for execution.This would allow more complex backstores to be implemented out-of-kernel,and also make experimentation a-la FUSE (but at the SCSI level -- &quot;SUSE&quot;?)possible.It uses a mmap()able UIO device per LUN to share a command ring and dataarea. The commands are raw SCSI CDBs and iovs for in/out data. The commandring is also reused for returning scsi command status and optional sensedata.This implementation is based on Shaohua Li&apos;s earlier version but heavilymodified. Differences include:* Shared memory allocated by kernel, not locked-down user pages* Single ring for command request and response* Offsets instead of embedded pointers* Generic SCSI CDB passthrough instead of per-cmd specialization in ring  format.* Uses UIO device instead of anon_file passed in mailbox.* Optional in-kernel handling of some commands.The main reason for these differences is to permit greater resiliencyif the user process dies or hangs.Things not yet implemented (on purpose):* Zero copy. The data area is flexible enough to allow page flipping or  backend-allocated pages to be used by fabrics, but it&apos;s not clear these  are performance wins. Can come later.* Out-of-order command completion by userspace. Possible to add by just  allowing userspace to change cmd_id in rsp cmd entries, but currently  not supported.* No locks between kernel cmd submission and completion routines. Sounds  like it&apos;s possible, but this can come later.* Sparse allocation of mmaped area. Current code vmallocs the whole thing.  If the mapped area was larger and not fully mapped then the driver would  have more freedom to change cmd and data area sizes based on demand.Current code open issues:* The use of idrs may be overkill -- we maybe can replace them with a  simple counter to generate cmd_ids, and a hash table to get a cmd_id&apos;s  associated pointer.* Use of a free-running counter for cmd ring instead of explicit modulo  math. This would require power-of-2 cmd ring size.(Add kconfig depends NET - Randy)Signed-off-by: Andy Grover &lt;agrover@redhat.com&gt;Signed-off-by: Nicholas Bellinger &lt;nab@linux-iscsi.org&gt;

            List of files:
            /linux-6.15/drivers/target/Makefile</description>
        <pubDate>Wed, 01 Oct 2014 23:07:05 +0000</pubDate>
        <dc:creator>Andy Grover &lt;agrover@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>cbf031f4 - target: Add support for EXTENDED_COPY copy offload emulation</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/target/Makefile#cbf031f4</link>
        <description>target: Add support for EXTENDED_COPY copy offload emulationThis patch adds support for EXTENDED_COPY emulation from SPC-3, thatenables full copy offload target support within both a single virtualbackend device, and across multiple virtual backend devices.  It alsofunctions independent of target fabric, and supports copy offloadacross multiple target fabric ports.This implemenation supports both EXTENDED_COPY PUSH and PULL modelsof operation, so the actual CDB may be received on either source ordesination logical unit.For Target Descriptors, it currently supports the NAA IEEE RegisteredExtended designator (type 0xe4), which allows the reference of targetports to occur independent of fabric type using EVPD 0x83 WWNs.For Segment Descriptors, it currently supports copy from block toblock (0x02) mode.It also honors any present SCSI reservations of the destination targetport.  Note that only Supports No List Identifier (SNLID=1) mode issupported.Also included is basic RECEIVE_COPY_RESULTS with service action typeOPERATING PARAMETERS (0x03) required for SNLID=1 operation.v3 changes:  - Fix incorrect return type in target_do_receive_copy_results()    (Fengguang)v2 changes:  - Use target_alloc_sgl() instead of transport_generic_get_mem()  - Convert debug output to use pr_debug()  - Convert target_xcopy_parse_target_descriptors() NAA IEEN WWN    dump to use 0x%16phN format specification  - Drop unnecessary xcopy_pt_cmd-&gt;xpt_passthrough_wsem, and    associated usage in xcopy_pt_write_pending() and    target_xcopy_issue_pt_cmd()  - Add check for unsupported EXTENDED_COPY(LID4) service action    bits in target_do_xcopy()Cc: Christoph Hellwig &lt;hch@lst.de&gt;Cc: Hannes Reinecke &lt;hare@suse.de&gt;Cc: Martin Petersen &lt;martin.petersen@oracle.com&gt;Cc: Chris Mason &lt;chris.mason@fusionio.com&gt;Cc: Roland Dreier &lt;roland@purestorage.com&gt;Cc: Zach Brown &lt;zab@redhat.com&gt;Cc: James Bottomley &lt;JBottomley@Parallels.com&gt;Cc: Nicholas Bellinger &lt;nab@linux-iscsi.org&gt;Signed-off-by: Nicholas Bellinger &lt;nab@daterainc.com&gt;

            List of files:
            /linux-6.15/drivers/target/Makefile</description>
        <pubDate>Tue, 20 Aug 2013 22:38:55 +0000</pubDate>
        <dc:creator>Nicholas Bellinger &lt;nab@daterainc.com&gt;</dc:creator>
    </item>
<item>
        <title>1fd032ee - target: move code for CDB emulation</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/target/Makefile#1fd032ee</link>
        <description>target: move code for CDB emulationMove the existing code in target_core_cdb.c into the files for the commandsets that the emulations implement.(roland + nab: Squash patch: Fix range calculation in WRITE SAME emulation when num blocks == 0s)Signed-off-by: Christoph Hellwig &lt;hch@lst.de&gt;Signed-off-by: Nicholas Bellinger &lt;nab@linux-iscsi.org&gt;

            List of files:
            /linux-6.15/drivers/target/Makefile</description>
        <pubDate>Sun, 20 May 2012 15:59:15 +0000</pubDate>
        <dc:creator>Christoph Hellwig &lt;hch@infradead.org&gt;</dc:creator>
    </item>
<item>
        <title>d6e0175c - target: add a parse_cdb method to the backend drivers</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/target/Makefile#d6e0175c</link>
        <description>target: add a parse_cdb method to the backend driversInstead of trying to handle all SCSI command sets in one function(transport_generic_cmd_sequencer) call out to the backend driver to performthis functionality.  For pSCSI a copy of the existing code is used, but forall virtual backends we can use a new parse_sbc_cdb helper is used toprovide a simple SBC emulation.For now this setups means a fair amount of duplication between pSCSI and theSBC library, but patches later in this series will sort out that problem.(nab: Fix up build failure in target_core_pscsi.c)Signed-off-by: Christoph Hellwig &lt;hch@lst.de&gt;Signed-off-by: Nicholas Bellinger &lt;nab@linux-iscsi.org&gt;

            List of files:
            /linux-6.15/drivers/target/Makefile</description>
        <pubDate>Sun, 20 May 2012 15:59:14 +0000</pubDate>
        <dc:creator>Christoph Hellwig &lt;hch@infradead.org&gt;</dc:creator>
    </item>
<item>
        <title>88455ec4 - target: split parsing of SPC commands into a separate helper</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/target/Makefile#88455ec4</link>
        <description>target: split parsing of SPC commands into a separate helper(nab: Add EXPORT_SYMBOL usage for spc_parse_cdb)Signed-off-by: Christoph Hellwig &lt;hch@lst.de&gt;Signed-off-by: Nicholas Bellinger &lt;nab@linux-iscsi.org&gt;

            List of files:
            /linux-6.15/drivers/target/Makefile</description>
        <pubDate>Sun, 20 May 2012 15:59:13 +0000</pubDate>
        <dc:creator>Christoph Hellwig &lt;hch@infradead.org&gt;</dc:creator>
    </item>
<item>
        <title>a511ce33 - sbp-target: Initial merge of firewire/ieee-1394 target mode support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/target/Makefile#a511ce33</link>
        <description>sbp-target: Initial merge of firewire/ieee-1394 target mode supportThe FireWire SBP-2 Target is a driver for using an IEEE-1394 connectionas a SCSI transport. This module uses the SCSI Target framework toexpose LUNs to other machines attached to a FireWire bus, in effectacting as a FireWire hard disk similar to FireWire Target Disk modeon many Apple computers.This commit contains the squashed pull from Chris Boot&apos;s SBP-2-Target:      https://github.com/bootc/Linux-SBP-2-Target.git patch-v3firewire-sbp-target: Add sbp_base.h headerfirewire-sbp-target: Add sbp_configfs.cfirewire-sbp-target: Add sbp_fabric.{c,h}firewire-sbp-target: Add sbp_management_agent.{c,h}firewire-sbp-target: Add sbp_login.{c,h}firewire-sbp-target: Add sbp_target_agent.{c,h}firewire-sbp-target: Add sbp_scsi_cmnd.{c,h}firewire-sbp-target: Add to target Kconfig and MakefileAlso add bootc&apos;s entry to the MAINTAINERS file.  Great work Chris !!Signed-off-by: Chris Boot &lt;bootc@bootc.net&gt;Acked-by: Stefan Richter &lt;stefanr@s5r6.in-berlin.de&gt;Cc: Andy Grover &lt;agrover@redhat.com&gt;Cc: Clemens Ladisch &lt;clemens@ladisch.de&gt;Signed-off-by: Nicholas Bellinger &lt;nab@linux-iscsi.org&gt;

            List of files:
            /linux-6.15/drivers/target/Makefile</description>
        <pubDate>Sun, 15 Apr 2012 00:50:35 +0000</pubDate>
        <dc:creator>Chris Boot &lt;bootc@bootc.net&gt;</dc:creator>
    </item>
<item>
        <title>b937d270 - target: remove the -&gt;transport_split_cdb callback in se_cmd</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/target/Makefile#b937d270</link>
        <description>target: remove the -&gt;transport_split_cdb callback in se_cmdAdd a switch statement implementing the CDB LBA/len update directlyin target_get_task_cdb and remove the old -&gt;transport_split_cdbcallback and all its implementations.Signed-off-by: Christoph Hellwig &lt;hch@lst.de&gt;Signed-off-by: Nicholas Bellinger &lt;nab@linux-iscsi.org&gt;

            List of files:
            /linux-6.15/drivers/target/Makefile</description>
        <pubDate>Wed, 12 Oct 2011 15:09:13 +0000</pubDate>
        <dc:creator>Christoph Hellwig &lt;hch@infradead.org&gt;</dc:creator>
    </item>
<item>
        <title>e48354ce - iscsi-target: Add iSCSI fabric support for target v4.1</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/target/Makefile#e48354ce</link>
        <description>iscsi-target: Add iSCSI fabric support for target v4.1The Linux-iSCSI.org target module is a full featured in-kernelsoftware implementation of iSCSI target mode (RFC-3720) for thecurrent WIP mainline target v4.1 infrastructure code for the v3.1kernel.  More information can be found here:http://linux-iscsi.org/wiki/ISCSIThis includes support for:   * RFC-3720 defined request / response state machines and support for     all defined iSCSI operation codes from Section 10.2.1.2 using libiscsi     include/scsi/iscsi_proto.h PDU definitions   * Target v4.1 compatible control plane using the generic layout in     target_core_fabric_configfs.c and fabric dependent attributes     within /sys/kernel/config/target/iscsi/ subdirectories.   * Target v4.1 compatible iSCSI statistics based on RFC-4544 (iSCSI MIBS)   * Support for IPv6 and IPv4 network portals in M:N mapping to TPGs   * iSCSI Error Recovery Hierarchy support   * Per iSCSI connection RX/TX thread pair scheduling affinity   * crc32c + crc32c_intel SSEv4 instruction offload support using libcrypto   * CHAP Authentication support using libcrypto   * Conversion to use internal SGl allocation with iscsit_alloc_buffs() -&gt;     transport_generic_map_mem_to_cmd()(nab: Fix iscsi_proto.h struct scsi_lun usage from linux-next in commit:      iscsi: Use struct scsi_lun in iscsi structs instead of u8[8])(nab: Fix 32-bit compile warnings)Reviewed-by: Christoph Hellwig &lt;hch@lst.de&gt;Reviewed-by: Andy Grover &lt;agrover@redhat.com&gt;Acked-by: Roland Dreier &lt;roland@kernel.org&gt;Signed-off-by: Nicholas A. Bellinger &lt;nab@linux-iscsi.org&gt;

            List of files:
            /linux-6.15/drivers/target/Makefile</description>
        <pubDate>Sat, 23 Jul 2011 06:43:04 +0000</pubDate>
        <dc:creator>Nicholas Bellinger &lt;nab@linux-iscsi.org&gt;</dc:creator>
    </item>
<item>
        <title>3699d92a - [SCSI] tcm_fc: Adding FC_FC4 provider (tcm_fc) for FCoE target (TCM - target core) support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/target/Makefile#3699d92a</link>
        <description>[SCSI] tcm_fc: Adding FC_FC4 provider (tcm_fc) for FCoE target (TCM - target core) supportThis is a comprehensive patch for FC-FC4 provider. tcm_fc is a FC-FC4provider which glues target core (TCM) with Fiber channel library(libfc). tcm_fc uses existing FC4 provider hooks from Fiber channellibrary. This Fiber channel library is used by FCoE (transport - FCover Ethernet) protocol driver as well.Combination of modules such as Fiber channel library, tcm_fc, TCMtarget core, and FCoE protocol driver enables functional FCoE target.This patch includes initial commit for tcm_fc plus additionalenhancement, bug fixes.This tcm_fc module essentially contains 3 entry points such as &quot;prli&quot;,&quot;prlo&quot;, &quot;recv&quot;.  When process login request (ELS_PRLI) request isreceived, Fiber channel library (libfc) module calls passive providers(FC-FC4, tcm_fc) (if any registered) &quot;prli&quot; function. Likewise whenLOGO request is received, &quot;prlo&quot; function of passive provider isinvoked by libfc.  For all other request (e.g. any read/write, taskmanagement, LUN inquiry commands), &quot;recv&quot; function of passiverprovider is invoked by libfc. Those passive providers &quot;prli, prlo,recv&quot; functions interact with TCM target core for requested operation.This module was primarily developed by &quot;Joe Eykholt&quot; and there weresignificant contributions from the people listed under signed-off.Signed-off-by: Joe Eykholt &lt;jeykholt@cisco.com&gt;Signed-off-by: Nicholas A. Bellinger &lt;nab@linux-iscsi.org&gt;Signed-off-by: Christoph Hellwig &lt;hch@lst.de&gt;Signed-off-by: Yi Zou &lt;yi.zou@intel.com&gt;Signed-off-by: Kiran Patil &lt;kiran.patil@intel.com&gt;Acked-by: Robert Love &lt;robert.w.love@intel.com&gt;Signed-off-by: James Bottomley &lt;jbottomley@parallels.com&gt;Signed-off-by: James Bottomley &lt;James.Bottomley@suse.de&gt;

            List of files:
            /linux-6.15/drivers/target/Makefile</description>
        <pubDate>Mon, 18 Apr 2011 23:24:14 +0000</pubDate>
        <dc:creator>Kiran Patil &lt;kiran.patil@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>3703b2c5 - [SCSI] tcm_loop: Add multi-fabric Linux/SCSI LLD fabric module</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/target/Makefile#3703b2c5</link>
        <description>[SCSI] tcm_loop: Add multi-fabric Linux/SCSI LLD fabric moduleThis patch adds the TCM_Loop Linux/SCSI LLD fabric module foraccessing TCM device backstores as locally accessable SCSI LUNs invirtual SAS, FC, and iSCSI Target ports using the generic fabricTransportID and Target Port WWN naming handlers from TCM&apos;starget_core_fabric_lib.c The TCM_Loop module uses the generic fabricconfigfs infratructure provided by target_core_fabric_configfs.c andadds a module dependent attribute for the creation/release of thevirtual I_T Nexus connected the TCM_Loop Target and Initiator Ports.TCM_Loop can also be used with scsi-generic and BSG drivers so thatSTGT userspace fabric modules, QEMU-KVM and other hypervisor SCSIpassthrough support can access TCM device backstore and control CDBemulation.For more information please see:http://linux-iscsi.org/wiki/Tcm_loop[jejb: fixed up checkpatch stuff]Signed-off-by: Nicholas A. Bellinger &lt;nab@linux-iscsi.org&gt;Reviewed-by: Christoph Hellwig &lt;hch@lst.de&gt;Signed-off-by: James Bottomley &lt;James.Bottomley@suse.de&gt;

            List of files:
            /linux-6.15/drivers/target/Makefile</description>
        <pubDate>Fri, 18 Mar 2011 22:39:17 +0000</pubDate>
        <dc:creator>Nicholas Bellinger &lt;nab@linux-iscsi.org&gt;</dc:creator>
    </item>
<item>
        <title>12d23384 - [SCSI] target: add initial statistics</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/target/Makefile#12d23384</link>
        <description>[SCSI] target: add initial statisticsThis patch adds a target_core_mib.c statistics conversion forbackend context struct se_subsystem_dev + struct se_device config_groupbased statistics in target_core_device.c using CONFIGFS_EATTR()based struct config_item_types from target_core_stat.c code.The conversion from backend /proc/scsi_target/mib/ context output to configfsdefault groups+attributes include scsi_dev, scsi_lu, and scsi_tgt_dev outputfrom within individual:	/sys/kernel/config/target/core/$HBA/DEV/The legacy procfs output now appear as individual configfs attributes under:*) $HBA/$DEV/statistics/scsi_dev:|-- indx|-- inst|-- ports`-- role*) $HBA/$DEV/statistics/scsi_lu:|-- creation_time|-- dev|-- dev_type|-- full_stat|-- hs_num_cmds|-- indx|-- inst|-- lu_name|-- lun|-- num_cmds|-- prod|-- read_mbytes|-- resets|-- rev|-- state_bit|-- status|-- vend`-- write_mbytes*) $HBA/$DEV/statistics/scsi_tgt_dev:|-- indx|-- inst|-- non_access_lus|-- num_lus|-- resets`-- statusThe conversion from backend /proc/scsi_target/mib/ context output to configfsdefault groups+attributes include scsi_port, scsi_tgt_port and scsi_transportoutput from within individual:	/sys/kernel/config/target/fabric/$WWN/tpgt_$TPGT/lun/lun_$LUN_ID/statistics/The legacy procfs output now appear as individual configfs attributes under:*) fabric/$WWN/tpgt_$TPGT/lun/lun_$LUN_ID/statistics/scsi_port|-- busy_count|-- dev|-- indx|-- inst`-- role*) fabric/$WWN/tpgt_$TPGT/lun/lun_$LUN_ID/statistics/scsi_tgt_port|-- dev|-- hs_in_cmds|-- in_cmds|-- indx|-- inst|-- name|-- port_index|-- read_mbytes`-- write_mbytes*) fabric/$WWN/tpgt_$TPGT/lun/lun_$LUN_ID/statistics/scsi_transport|-- dev_name|-- device|-- indx`-- instThe conversion from backend /proc/scsi_target/mib/ context output to configfsdefault groups+attributes include scsi_att_intr_port and scsi_auth_intr outputfrom within individual:	/sys/kernel/config/target/fabric/$WWN/tpgt_$TPGT/acls/$INITIATOR_WWN/lun_$LUN_ID/statistics/The legacy procfs output now appear as individual configfs attributes under:*) acls/$INITIATOR_WWN/lun_$LUN_ID/statistics/scsi_att_intr_port|-- dev|-- indx|-- inst|-- port|-- port_auth_indx`-- port_ident*) acls/$INITIATOR_WWN/lun_$LUN_ID/statistics/scsi_auth_intr|-- att_count|-- creation_time|-- dev|-- dev_or_port|-- hs_num_cmds|-- indx|-- inst|-- intr_name|-- map_indx|-- num_cmds|-- port|-- read_mbytes|-- row_status`-- write_mbytesAlso, this includes adding struct target_fabric_configfs_template-&gt;tfc_wwn_fabric_stats_cit and -&gt;tfc_tpg_nacl_stat_cit respectively foruse during target_core_fabric_configfs.c:target_fabric_setup_cits()Signed-off-by: Nicholas A. Bellinger &lt;nab@linux-iscsi.org&gt;Signed-off-by: James Bottomley &lt;James.Bottomley@suse.de&gt;

            List of files:
            /linux-6.15/drivers/target/Makefile</description>
        <pubDate>Mon, 14 Mar 2011 11:06:11 +0000</pubDate>
        <dc:creator>Nicholas Bellinger &lt;nab@linux-iscsi.org&gt;</dc:creator>
    </item>
<item>
        <title>5e8de4f3 - [SCSI] target: remove EXTRA_CFLAGS</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/target/Makefile#5e8de4f3</link>
        <description>[SCSI] target: remove EXTRA_CFLAGSAdd the current directory is superflous in general, and no includes indrivers/scsi are needed either.Signed-off-by: Christoph Hellwig &lt;hch@lst.de&gt;Signed-off-by: Nicholas A. Bellinger &lt;nab@linux-iscsi.org&gt;Signed-off-by: James Bottomley &lt;James.Bottomley@suse.de&gt;

            List of files:
            /linux-6.15/drivers/target/Makefile</description>
        <pubDate>Mon, 14 Mar 2011 11:05:58 +0000</pubDate>
        <dc:creator>Christoph Hellwig &lt;hch@lst.de&gt;</dc:creator>
    </item>
<item>
        <title>e89d15ee - [SCSI] target: Remove procfs based target_core_mib.c code</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/target/Makefile#e89d15ee</link>
        <description>[SCSI] target: Remove procfs based target_core_mib.c codeThis patch removes the legacy procfs based target_core_mib.c code,and moves the necessary scsi_index_tables functions and defines intotarget_core_transport.c and target_core_base.h code to allow existingfabric independent statistics to function.This includes the removal of a handful of &apos;atomic_t mib_ref_count&apos;counters used in struct se_node_acl, se_session and se_hba to preventremoval while using seq_list procfs walking logic.[jejb: fix up compile failures]Signed-off-by: Nicholas A. Bellinger &lt;nab@linux-iscsi.org&gt;Signed-off-by: James Bottomley &lt;James.Bottomley@suse.de&gt;

            List of files:
            /linux-6.15/drivers/target/Makefile</description>
        <pubDate>Wed, 09 Feb 2011 23:35:03 +0000</pubDate>
        <dc:creator>Nicholas Bellinger &lt;nab@linux-iscsi.org&gt;</dc:creator>
    </item>
<item>
        <title>c66ac9db - [SCSI] target: Add LIO target core v4.0.0-rc6</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/target/Makefile#c66ac9db</link>
        <description>[SCSI] target: Add LIO target core v4.0.0-rc6LIO target is a full featured in-kernel target framework with thefollowing feature set:High-performance, non-blocking, multithreaded architecture with SIMDsupport.Advanced SCSI feature set:    * Persistent Reservations (PRs)    * Asymmetric Logical Unit Assignment (ALUA)    * Protocol and intra-nexus multiplexing, load-balancing and failover (MC/S)    * Full Error Recovery (ERL=0,1,2)    * Active/active task migration and session continuation (ERL=2)    * Thin LUN provisioning (UNMAP and WRITE_SAMExx)Multiprotocol target pluginsStorage media independence:    * Virtualization of all storage media; transparent mapping of IO to LUNs    * No hard limits on number of LUNs per Target; maximum LUN size ~750 TB    * Backstores: SATA, SAS, SCSI, BluRay, DVD, FLASH, USB, ramdisk, etc.Standards compliance:    * Full compliance with IETF (RFC 3720)    * Full implementation of SPC-4 PRs and ALUASignificant code cleanups done by Christoph Hellwig.[jejb: fix up for new block bdev exclusive interface. Minor fixes from Randy Dunlap and Dan Carpenter.]Signed-off-by: Nicholas A. Bellinger &lt;nab@linux-iscsi.org&gt;Signed-off-by: James Bottomley &lt;James.Bottomley@suse.de&gt;

            List of files:
            /linux-6.15/drivers/target/Makefile</description>
        <pubDate>Fri, 17 Dec 2010 19:11:26 +0000</pubDate>
        <dc:creator>Nicholas Bellinger &lt;nab@linux-iscsi.org&gt;</dc:creator>
    </item>
</channel>
</rss>
