mirror of
https://github.com/SCST-project/scst.git
synced 2026-05-30 02:10:18 +00:00
b93f56a246f3ef514c508c63960dd9a1d41d55a2
........ r6873 | vlnb | 2016-04-20 19:19:25 -0700 (Wed, 20 Apr 2016) | 3 lines Some more cleanups ........ r6874 | bvassche | 2016-04-25 11:36:00 -0700 (Mon, 25 Apr 2016) | 2 lines scst_vdisk: Fix a regression introduced by r6873 ........ r6875 | bvassche | 2016-04-25 21:13:42 -0700 (Mon, 25 Apr 2016) | 5 lines scst: Move kref_get_unless_zero() definition to <scst/backport.h> This patch is a slightly modified version of a patch supplied by Israel Rukshin <israelr@mellanox.com>. ........ r6876 | bvassche | 2016-04-26 07:12:17 -0700 (Tue, 26 Apr 2016) | 12 lines isert: fix double free of a fake request A nop that is sent from the scst is treated as a fake request. When a fake request is allocated we release it immediately, so it's wrong to release it also on a completion error (isert_pdu_err). This commit fix a NULL dereference bug when receiving completion with error on this nop. Signed-off-by: Israel Rukshin <israelr@mellanox.com> Signed-off-by: Ariel Nahum <arieln@mellanox.com> ........ r6877 | bvassche | 2016-04-26 07:12:47 -0700 (Tue, 26 Apr 2016) | 9 lines isert: wait for RDMA CM event to complete before destroy resources There is a race between RDMACM event handler and isert_conn_free. The event handler use the connection resources and isert_conn_free destroy them. This commit fix multiple NULL dereference bugs. Signed-off-by: Israel Rukshin <israelr@mellanox.com> ........ r6878 | bvassche | 2016-04-26 07:13:13 -0700 (Tue, 26 Apr 2016) | 8 lines isert: clean tmo timer when freeing the connection The tmo timer is set when allocating a new connection. We need to release it in case it didn't execute yet. Else timer execution will lead to a NULL dereference bug on conn. Signed-off-by: Israel Rukshin <israelr@mellanox.com> ........ r6879 | bvassche | 2016-04-26 07:13:33 -0700 (Tue, 26 Apr 2016) | 10 lines isert: fix race between teardown flow and connect flow It is possible to get ESTABLISHED RDMACM event while the connection is already started teardown flow (i.e. addr change). At teardown the refcount is reduced to zero and we start releasing the connection. In established event We need to check conn is not in teardown flow by checking its ref count is not 0. Signed-off-by: Israel Rukshin <israelr@mellanox.com> ........ r6882 | bvassche | 2016-05-01 15:41:20 -0700 (Sun, 01 May 2016) | 4 lines scst_sysfs, LUN replacement: Initialize 'read_only' before using it See also r6834. ........ r6884 | vlnb | 2016-05-03 19:47:33 -0700 (Tue, 03 May 2016) | 5 lines scst_vdisk: extend vend_specific_id to 128 bytes From Adrian Saul <Adrian.Saul@tpgtelecom.com.au> ........ r6886 | vlnb | 2016-05-05 18:53:30 -0700 (Thu, 05 May 2016) | 6 lines scst, EXPERIMENTAL: improve commands CPU affinity Now commands on the fast path processed by the same thread throughout all its lifetime. ........ r6887 | vlnb | 2016-05-05 19:20:41 -0700 (Thu, 05 May 2016) | 5 lines cleanup: remove support of old kernels without cancel_delayed_work_sync Otherwise we can not use scst_mutex on works ........ r6888 | vlnb | 2016-05-05 20:51:21 -0700 (Thu, 05 May 2016) | 5 lines scst: follow up to r6886 Change local and more global queue priority ratio to 2:1 ........ r6890 | vlnb | 2016-05-06 17:49:43 -0700 (Fri, 06 May 2016) | 5 lines scst: add possibility of polling + few minor doc cleanups See README diff for more details ........ r6891 | bvassche | 2016-05-06 21:30:46 -0700 (Fri, 06 May 2016) | 1 line scst, iscsi-scst, scstadmin: Spell successful and unsuccessful correctly ........ git-svn-id: http://svn.code.sf.net/p/scst/svn/branches/3.1.x@6895 d57e44dd-8a1f-0410-8b47-8ef2f437770f
Overview ======== This is the SCST development repository. It contains not a single project SCST as one can think, but a number of them, which are divided as the following: 1. SCST core in scst/ subdirectory 2. Administration utility for SCST core scstadmin in scstadmin/ 3. Target drivers in own subdirectories qla2x00t/, iscsi-scst/, etc. 4. User space programs in usr/ subdirectory, like fileio_tgt. 5. Some various docs in doc/ subdirectory. Those subprojects are in most cases independent from each other, although some of them depend from the SCST core. They put in the single repository only to simplify their development, they are released independently. Thus, use "make all" only if you really need to build everything. Otherwise build only what you need, like for iSCSI-SCST: make scst scst_install iscsi iscsi_install For more information about each subproject see their README files. QLogic target driver ==================== QLogic target driver qla2x00t is the old driver, forked from qla2xxx several years ago. It is very stable, well tested and actively used in many production setups. The ultimate goal is to have the mainstream (git) QLogic target driver to be the main and the only QLogic target driver, but, unfortunately, this driver not yet reached level of quality and maturity of qla2x00t. We with QLogic are working toward it. You can find the latest version of the git driver in git://git.qlogic.com/scst-qla2xxx.git. It is maintained by QLogic, hence located in the QLogic's git. To integrate it into the SCST build tree you need: 1. Clone the QLogic git tree somewhere in your system. 2. Create in the SCST root, i.e. this directory, a subdirectory with name qla2x00t_git 3. Optional for the in-tree build: symlink drivers/scsi/qla2xxx subdirectory in the cloned git tree to the qla2x00t_git subdirectory Thats all. Now common and QLA specific root Makefile targets "magically" start working with the new driver. For detail instructions how to setup QLA target build environment see its README or HOWTO. Run either "make all" to build the SCST core and all target drivers with in-tree QLogic drivers, or the following command with standalone QLogic drivers: BUILD_2X_MODULE=y CONFIG_SCSI_QLA_FC=y CONFIG_SCSI_QLA2XXX_TARGET=y make all In presence of qla2x00t_git subdirectory you can still build the qla2x00t using qla_old* root Makefile targets. Vladislav Bolkhovitin <vst@vlnb.net>, http://scst.sourceforge.net
Description
Languages
C
90.1%
Perl
4.2%
Shell
1.8%
HTML
1.7%
Makefile
1.2%
Other
0.9%