<?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 Kconfig</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>a7f7f624 - treewide: replace &apos;---help---&apos; in Kconfig files with &apos;help&apos;</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/infiniband/ulp/isert/Kconfig#a7f7f624</link>
        <description>treewide: replace &apos;---help---&apos; in Kconfig files with &apos;help&apos;Since commit 84af7a6194e4 (&quot;checkpatch: kconfig: prefer &apos;help&apos; over&apos;---help---&apos;&quot;), the number of &apos;---help---&apos; has been graduallydecreasing, but there are still more than 2400 instances.This commit finishes the conversion. While I touched the lines,I also fixed the indentation.There are a variety of indentation styles found.  a) 4 spaces + &apos;---help---&apos;  b) 7 spaces + &apos;---help---&apos;  c) 8 spaces + &apos;---help---&apos;  d) 1 space + 1 tab + &apos;---help---&apos;  e) 1 tab + &apos;---help---&apos;    (correct indentation)  f) 1 tab + 1 space + &apos;---help---&apos;  g) 1 tab + 2 spaces + &apos;---help---&apos;In order to convert all of them to 1 tab + &apos;help&apos;, I ran thefollowing commend:  $ find . -name &apos;Kconfig*&apos; | xargs sed -i &apos;s/^[[:space:]]*---help---/\thelp/&apos;Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/infiniband/ulp/isert/Kconfig</description>
        <pubDate>Sat, 13 Jun 2020 16:50:22 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;masahiroy@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>ec8f24b7 - treewide: Add SPDX license identifier - Makefile/Kconfig</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/infiniband/ulp/isert/Kconfig#ec8f24b7</link>
        <description>treewide: Add SPDX license identifier - Makefile/KconfigAdd SPDX license identifiers to all Make/Kconfig files which: - Have no license information of any formThese files fall under the project license, GPL v2 only. The resulting SPDXlicense identifier is:  GPL-2.0-onlySigned-off-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/infiniband/ulp/isert/Kconfig</description>
        <pubDate>Sun, 19 May 2019 12:07:45 +0000</pubDate>
        <dc:creator>Thomas Gleixner &lt;tglx@linutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>8c88126b - treewide: Fix typo in Kconfig</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/infiniband/ulp/isert/Kconfig#8c88126b</link>
        <description>treewide: Fix typo in KconfigCorrect spelling typo in Kconfig.Signed-off-by: Masanari Iida &lt;standby24x7@gmail.com&gt;Acked-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;Signed-off-by: Jiri Kosina &lt;jkosina@suse.cz&gt;

            List of files:
            /linux-6.15/drivers/infiniband/ulp/isert/Kconfig</description>
        <pubDate>Sun, 29 Sep 2013 11:54:15 +0000</pubDate>
        <dc:creator>Masanari Iida &lt;standby24x7@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>b8d26b3b - iser-target: Add iSCSI Extensions for RDMA (iSER) target driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/infiniband/ulp/isert/Kconfig#b8d26b3b</link>
        <description>iser-target: Add iSCSI Extensions for RDMA (iSER) target driverThis patch adds support for iSCSI Extensions for RDMA target mode,and includes CQ pooling per isert_device context distributed acrossmultiple active iser target sessions.It also uses cmwq process context for RX / TX ib_post_cq() pollingvia isert_cq_desc-&gt;cq_[rx,tx]_work invoked by isert_cq_[rx,tx]_callback()hardIRQ context callbacks.v5 changes:- Use ISER_RECV_DATA_SEG_LEN instead of hardcoded value in ISER_RX_PAD_SIZE (Or)- Fix make W=1 warnings (Or)- Add missing depends on NET &amp;&amp; INFINIBAND_ADDR_TRANS in Kconfig (Randy + Or)- Make isert_device_find_by_ib_dev() return proper ERR_PTR (Wei Yongjun)- Properly setup iscsi_np-&gt;np_sockaddr in isert_setup_np() (Shlomi + nab)- Add special case for early ISCSI_OP_SCSI_CMD exception handling (nab)v4 changes:- Mark isert_cq_rx_work as static (Or)- Drop unnecessary ib_dma_sync_single_for_cpu + ib_dma_sync_single_for_device  calls for isert_cmd-&gt;sense_buf_dma from isert_put_response (Or)- Use 12288 for ISER_RX_PAD_SIZE base to save extra page per  struct iser_rx_desc (Or + nab)- Drop now unnecessary isert_rx_desc usage, and convert RX users to  iser_rx_desc (Or + nab)- Move isert_[alloc,free]_rx_descriptors() ahead of  isert_create_device_ib_res() usage (nab)- Mark isert_cq_[rx,tx]_callback() + prototypes as static- Fix &apos;warning: &apos;ret&apos; may be used uninitialized&apos; warning for  isert_create_device_ib_res on powerpc allmodconfig (fengguang + nab)- Fix &apos;warning: &apos;ret&apos; may be used uninitialized&apos; warning for  isert_connect_request on i386 allyesconfig (fengguang + nab)- Fix pr_debug conversion specification in isert_rx_completion()  (fengguang + nab)- Drop unnecessary isert_conn-&gt;conn_cm_id != NULL check in  isert_connect_release causing the build warning:  &quot;variable dereferenced before check &apos;isert_conn-&gt;conn_cm_id&apos;&quot;- Fix isert_lid + isert_np leak in isert_setup_np failure path- Add isert_conn-&gt;conn_wait_comp_err usage in isert_free_conn()  for isert_cq_comp_err completion path- Add isert_conn-&gt;logout_posted bit to determine decrement of  isert_conn-&gt;post_send_buf_count from logout response completion- Always set ISER_CONN_DOWN from isert_disconnect_work() callbackv3 changes:- Convert to use per isert_cq_desc-&gt;cq_[rx,tx]_work + drop tasklets (Or + nab)- Move IB_EVENT_QP_LAST_WQE_REACHED warn into correct  isert_qp_event_callback (Or)- Drop unnecessary IB_ACCESS_REMOTE_* access flag usage in  isert_create_device_ib_res (Or)- Add common isert_init_send_wr(), and convert isert_put_* calls (Or)- Move to verbs+core logic to single ib_isert.[c,h]  (Or + nab)- Add kmem_cache isert_cmd_cache usage for descriptor allocation (nab)- Move common ib_post_send() logic used by isert_put_*() to  isert_post_response() (nab)- Add isert_put_reject call in isert_response_queue() for posting  ISCSI_REJECT response. (nab)- Add ISTATE_SEND_REJECT checking in isert_do_control_comp. (nab)v2 changes:- Drop unused ISERT_ADDR_ROUTE_TIMEOUT define- Add rdma_notify() call for IB_EVENT_COMM_EST in isert_qp_event_callback()- Make isert_query_device() less verbose- Drop unused RDMA_CM_EVENT_ADDR_ERROR and RDMA_CM_EVENT_ROUTE_ERROR  cases from isert_cma_handler()- Drop unused rdma/ib_fmr_pool.h include- Update isert_conn_setup_qp() to assign cq based upon least used- Add isert_create_device_ib_res() to setup PD, CQs and MRs for each  underlying struct ib_device, instead of using per isert_conn resources.- Add isert_free_device_ib_res() to release PD, CQs and MRs for each  underlying struct ib_device.- Add isert_device_find_by_ib_dev()- Change isert_connect_request() to drop PD, CQs and MRs allocation,  and use isert_device_find_by_ib_dev() instead.- Add isert_device_try_release()- Change isert_connect_release() to decrement cq_active_qps, and drop  PD, CQs and MRs resource release.- Update isert_connect_release() to call isert_device_try_release()- Make isert_create_device_ib_res() determine device-&gt;cqs_used based  upon num_online_cpus()- Drop misleading isert_dump_ib_wc() usage- Drop unused rdma/ib_fmr_pool.h include- Use proper xfer_len for login PDUs in isert_rx_completion()- Add isert_release_cmd() usage- Change isert_alloc_cmd() to setup iscsi_cmd.release_cmd() pointer- Change isert_put_cmd() to perform per iscsi_opcode specific release  logic- Add isert_unmap_cmd() call for ISCSI_OP_SCSI_CMD from isert_put_cmd()- Change isert_send_completion() to call  atomic_dec(&amp;isert_conn-&gt;post_send_buf_count)  based upon per iscsi_opcode logic- Drop ISTATE_REMOVE processing from isert_immediate_queue()- Drop ISTATE_SEND_DATAIN processing from isert_response_queue()- Drop ISTATE_SEND_STATUS processing from isert_response_queue()- Drop iscsit_transport-&gt;iscsit_unmap_cmd() and -&gt;iscsit_free_cmd()- Convert iser_cq_tx_tasklet() to use struct isert_cq_desc pooling logic- Convert isert_cq_tx_callback() to use struct isert_cq_desc pooling  logic- Convert iser_cq_rx_tasklet() to use struct isert_cq_desc pooling logic- Convert isert_cq_rx_callback() to use struct isert_cq_desc pooling  logic- Add explict iscsit_stop_dataout_timer() call to  isert_do_rdma_read_comp()- Use isert_get_dataout() for iscsit_transport-&gt;iscsit_get_dataout()  caller- Drop ISTATE_SEND_R2T processing from isert_immediate_queue()- Drop unused rdma/ib_fmr_pool.h include- Drop isert_cmd-&gt;cmd_kref in favor of se_cmd-&gt;cmd_kref usage- Add struct isert_device in order to support multiple EQs + CQ pooling- Add struct isert_cq_desc- Drop tasklets and cqs from isert_conn- Bump ISERT_MAX_CQ to 64- Various minor checkpatch fixesSigned-off-by: Or Gerlitz &lt;ogerlitz@mellanox.com&gt;Signed-off-by: Nicholas Bellinger &lt;nab@linux-iscsi.org&gt;

            List of files:
            /linux-6.15/drivers/infiniband/ulp/isert/Kconfig</description>
        <pubDate>Thu, 07 Mar 2013 08:56:19 +0000</pubDate>
        <dc:creator>Nicholas Bellinger &lt;nab@linux-iscsi.org&gt;</dc:creator>
    </item>
</channel>
</rss>
