<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 03:30:04 UTC 2024

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary append 'field=key&field=summary' to the URL of your request.
-->
<rss version="0.92" >
<channel>
    <title>Whamcloud Community JIRA</title>
    <link>https://jira.whamcloud.com</link>
    <description>This file is an XML representation of an issue</description>
    <language>en-us</language>    <build-info>
        <version>9.4.14</version>
        <build-number>940014</build-number>
        <build-date>05-12-2023</build-date>
    </build-info>


<item>
            <title>[LU-16796] Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)</title>
                <link>https://jira.whamcloud.com/browse/LU-16796</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;&#160;&lt;/p&gt;

&lt;p&gt;For Example.&lt;/p&gt;
&lt;div class=&quot;preformatted panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;preformattedContent panelContent&quot;&gt;
&lt;pre&gt;struct ptlrpc_sec { &#160; &#160; &#160;
....
atomic_t ps_refcount; &#160;  
};
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;Which is called as...&lt;/p&gt;
&lt;div class=&quot;preformatted panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;preformattedContent panelContent&quot;&gt;
&lt;pre&gt;LASSERT_ATOMIC_ZERO(&amp;amp;sec-&amp;gt;ps_refcount);&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;Now becomes&lt;/p&gt;
&lt;div class=&quot;preformatted panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;preformattedContent panelContent&quot;&gt;
&lt;pre&gt;struct ptlrpc_sec { &#160; &#160; &#160;
....
struct kref ps_refcount;
};
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;and every thing should follow to support the above.&lt;/p&gt;

&lt;p&gt;&#160;&lt;/p&gt;

&lt;p&gt;Currently these are under active use:&lt;/p&gt;
&lt;div class=&quot;preformatted panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;preformattedContent panelContent&quot;&gt;
&lt;pre&gt;LASSERT_ATOMIC_GT
LASSERT_ATOMIC_GT_LT
LASSERT_ATOMIC_ZERO
LASSERT_ATOMIC_POS&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</description>
                <environment></environment>
        <key id="75921">LU-16796</key>
            <summary>Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)</summary>
                <type id="4" iconUrl="https://jira.whamcloud.com/secure/viewavatar?size=xsmall&amp;avatarId=11310&amp;avatarType=issuetype">Improvement</type>
                                            <priority id="4" iconUrl="https://jira.whamcloud.com/images/icons/priorities/minor.svg">Minor</priority>
                        <status id="1" iconUrl="https://jira.whamcloud.com/images/icons/statuses/open.png" description="The issue is open and ready for the assignee to start work on it.">Open</status>
                    <statusCategory id="2" key="new" colorName="default"/>
                                    <resolution id="-1">Unresolved</resolution>
                                        <assignee username="arshad512">Arshad Hussain</assignee>
                                    <reporter username="arshad512">Arshad Hussain</reporter>
                        <labels>
                            <label>lug23dd</label>
                    </labels>
                <created>Thu, 4 May 2023 13:19:06 +0000</created>
                <updated>Sun, 4 Feb 2024 08:30:11 +0000</updated>
                                                                                <due></due>
                            <votes>0</votes>
                                    <watches>4</watches>
                                                                            <comments>
                            <comment id="371314" author="simmonsja" created="Thu, 4 May 2023 13:44:56 +0000"  >&lt;p&gt;Sorry by reference counters I mean refcount API in refcount.h&lt;/p&gt;</comment>
                            <comment id="371327" author="paf0186" created="Thu, 4 May 2023 16:49:27 +0000"  >&lt;p&gt;That seems to be what Arshad is describing here?&lt;/p&gt;</comment>
                            <comment id="371354" author="arshad512" created="Thu, 4 May 2023 21:01:52 +0000"  >&lt;p&gt;Patrick, Even I missunderstood. I spoke to James and what he meant was &quot;refcount_t&quot; (Variant of atomic_t specialized for reference counts. (&lt;a href=&quot;https://github.com/torvalds/linux/blob/master/include/linux/refcount.h))&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/torvalds/linux/blob/master/include/linux/refcount.h))&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Now the change becomes&lt;/p&gt;
&lt;div class=&quot;preformatted panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;preformattedContent panelContent&quot;&gt;
&lt;pre&gt;struct ptlrpc_sec { &#160; &#160; &#160;
.... 
refcount_t ps_refcount;
...
};
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;&#160;&lt;/p&gt;</comment>
                            <comment id="371415" author="gerrit" created="Fri, 5 May 2023 17:08:22 +0000"  >&lt;p&gt;&quot;Arshad Hussain &amp;lt;arshad.hussain@aeoncomputing.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50870&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50870&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; libcfs: Remove unsed LASSERT_ATOMIC_* macros&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 5ca051d9d110416d30207b449028a77d49c9ed84&lt;/p&gt;</comment>
                            <comment id="371477" author="gerrit" created="Sun, 7 May 2023 19:35:26 +0000"  >&lt;p&gt;&quot;Arshad Hussain &amp;lt;arshad.hussain@aeoncomputing.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50881&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50881&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; libcfs: Remove referance to LASSERT_ATOMIC_POS&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 50411c28f5bd154410f9f50d9783fa44dd70b4f3&lt;/p&gt;</comment>
                            <comment id="372379" author="gerrit" created="Tue, 16 May 2023 03:14:04 +0000"  >&lt;p&gt;&quot;Arshad Hussain &amp;lt;arshad.hussain@aeoncomputing.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/51004&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/51004&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; libcfs: Remove reference to LASSERT_ATOMIC_ZERO&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 3a0276d302aef777f0db8451ed69ded2b18251f5&lt;/p&gt;</comment>
                            <comment id="372837" author="gerrit" created="Fri, 19 May 2023 07:10:18 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50870/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50870/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; libcfs: Remove unsed LASSERT_ATOMIC_* macros&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: f875d0c714b548553dc3249576e01bb7efa2247b&lt;/p&gt;</comment>
                            <comment id="373741" author="gerrit" created="Mon, 29 May 2023 07:40:20 +0000"  >&lt;p&gt;&quot;Arshad Hussain &amp;lt;arshad.hussain@aeoncomputing.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/51157&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/51157&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; libcfs: Remove reference to LASSERT_ATOMIC_GT_LT&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 0ddc98cf5835f021e51d6bd1374d5ab1a0817dad&lt;/p&gt;</comment>
                            <comment id="374029" author="gerrit" created="Wed, 31 May 2023 19:14:43 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50881/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50881/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; libcfs: Remove reference to LASSERT_ATOMIC_POS&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 165433bb4ced42560ff816ca34b74d410c158907&lt;/p&gt;</comment>
                            <comment id="374106" author="gerrit" created="Thu, 1 Jun 2023 07:50:57 +0000"  >&lt;p&gt;&quot;Arshad Hussain &amp;lt;arshad.hussain@aeoncomputing.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/51189&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/51189&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; libcfs: Remove reference to LASSERT_ATOMIC_GT&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 5e40a6ce98cef6169e60d58cf02d9bd79a800b26&lt;/p&gt;</comment>
                            <comment id="378042" author="gerrit" created="Sat, 8 Jul 2023 22:35:56 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/51189/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/51189/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; libcfs: Remove reference to LASSERT_ATOMIC_GT&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: acdc2c8bb7aaf8d193619291b996c5b290c68213&lt;/p&gt;</comment>
                            <comment id="379354" author="gerrit" created="Wed, 19 Jul 2023 16:44:55 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/51157/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/51157/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; libcfs: Remove reference to LASSERT_ATOMIC_GT_LT&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 5cc0c6b2630e955ee8a2e5c00f9837729f69c8f8&lt;/p&gt;</comment>
                            <comment id="379793" author="gerrit" created="Sun, 23 Jul 2023 05:49:33 +0000"  >&lt;p&gt;&quot;Arshad Hussain &amp;lt;arshad.hussain@aeoncomputing.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/51747&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/51747&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; obdclass: Change struct jobid_pid_map to use refcount_t&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 0fbb9376a37afa0b873f86d27f828de7d440cc21&lt;/p&gt;</comment>
                            <comment id="380456" author="gerrit" created="Fri, 28 Jul 2023 05:07:47 +0000"  >&lt;p&gt;&quot;Arshad Hussain &amp;lt;arshad.hussain@aeoncomputing.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/51794&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/51794&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; ptlrpc: Change struct ptlrpc_svc_ctx to use kref&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 69d48ec3f966a9e23766bc1c70c1eaf6887766d9&lt;/p&gt;</comment>
                            <comment id="380668" author="gerrit" created="Mon, 31 Jul 2023 09:02:06 +0000"  >&lt;p&gt;&quot;Arshad Hussain &amp;lt;arshad.hussain@aeoncomputing.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/51811&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/51811&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; ptlrpc: Change struct ls_device to use kref&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 655749c7e9a3dc01cd8b95bf2d028b51e61d83e6&lt;/p&gt;</comment>
                            <comment id="380840" author="gerrit" created="Tue, 1 Aug 2023 06:15:03 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/51004/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/51004/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; libcfs: Remove reference to LASSERT_ATOMIC_ZERO&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: d48ddf585cd2dd93092b3d67f1d38d5125505c04&lt;/p&gt;</comment>
                            <comment id="380844" author="gerrit" created="Tue, 1 Aug 2023 06:15:57 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/51747/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/51747/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; obdclass: Change struct jobid_pid_map to use refcount_t&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 616e2c9e34384604027508488e55bf93635b3098&lt;/p&gt;</comment>
                            <comment id="381189" author="gerrit" created="Thu, 3 Aug 2023 10:32:20 +0000"  >&lt;p&gt;&quot;Arshad Hussain &amp;lt;arshad.hussain@aeoncomputing.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/51864&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/51864&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; ptlrpc: Change struct lsi_mounts to use kref&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 06cbd722efa8edbe455ca448a65ee4e733e50961&lt;/p&gt;</comment>
                            <comment id="381550" author="gerrit" created="Mon, 7 Aug 2023 08:19:44 +0000"  >&lt;p&gt;&quot;Arshad Hussain &amp;lt;arshad.hussain@aeoncomputing.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/51881&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/51881&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; osc: Change struct osc_object to use kref&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 5cfda4da6bbb68bda15b55a55749d67ed04a5392&lt;/p&gt;</comment>
                            <comment id="382073" author="gerrit" created="Fri, 11 Aug 2023 02:47:32 +0000"  >&lt;p&gt;&quot;Arshad Hussain &amp;lt;arshad.hussain@aeoncomputing.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/51922&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/51922&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; target: Change struct top_multiple_thandle to use kref&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: d1b47f904581950675bce4d1db0ccd422e1c9386&lt;/p&gt;</comment>
                            <comment id="382290" author="gerrit" created="Mon, 14 Aug 2023 07:00:07 +0000"  >&lt;p&gt;&quot;Arshad Hussain &amp;lt;arshad.hussain@aeoncomputing.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/51938&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/51938&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; libcfs: Change struct cfs_hash to use kref&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 36b7bfab2fc9e7bd599ecf97b8107ae28ef2079f&lt;/p&gt;</comment>
                            <comment id="383514" author="gerrit" created="Thu, 24 Aug 2023 04:34:54 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/51811/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/51811/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; ptlrpc: Change struct ls_device to use kref&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 33bd9d4068c9d9b5f01b94346f0eaf976198c861&lt;/p&gt;</comment>
                            <comment id="383516" author="gerrit" created="Thu, 24 Aug 2023 04:35:44 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/51864/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/51864/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; ptlrpc: Change struct lsi_mounts to use kref&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: eca2ee5c25412b2bed4f417a859009fd26e94b7f&lt;/p&gt;</comment>
                            <comment id="383518" author="gerrit" created="Thu, 24 Aug 2023 04:36:04 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/51922/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/51922/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; target: Change struct top_multiple_thandle to use kref&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 99fb9376388e04d4fe713766e03dbb26f20bdc52&lt;/p&gt;</comment>
                            <comment id="383520" author="gerrit" created="Thu, 24 Aug 2023 04:36:21 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/51938/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/51938/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; libcfs: Change struct cfs_hash to use kref&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: e04d7fc2913c73097b7d20f05d4e896fa9e95f6b&lt;/p&gt;</comment>
                            <comment id="383866" author="gerrit" created="Mon, 28 Aug 2023 05:03:31 +0000"  >&lt;p&gt;&quot;Arshad Hussain &amp;lt;arshad.hussain@aeoncomputing.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52122&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52122&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; libcfs: Change struct pool_desc to use kref&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 007af9a93c2b62c2e7fd63345039f2fc421a7a10&lt;/p&gt;</comment>
                            <comment id="383883" author="gerrit" created="Mon, 28 Aug 2023 09:42:11 +0000"  >&lt;p&gt;&quot;Arshad Hussain &amp;lt;arshad.hussain@aeoncomputing.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52127&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52127&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; libcfs: Change struct qmt_pool_info to use kref&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 524beb0b4a9d122a2e700ed7352e9bfba467169d&lt;/p&gt;</comment>
                            <comment id="384025" author="gerrit" created="Tue, 29 Aug 2023 07:05:03 +0000"  >&lt;p&gt;&quot;Arshad Hussain &amp;lt;arshad.hussain@aeoncomputing.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52148&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52148&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; mdt: Change struct cdt_agent_req to use kref&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: bd21ea3020d6295360985b617903684fd27b4175&lt;/p&gt;</comment>
                            <comment id="384042" author="gerrit" created="Tue, 29 Aug 2023 09:33:14 +0000"  >&lt;p&gt;&quot;Arshad Hussain &amp;lt;arshad.hussain@aeoncomputing.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52153&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52153&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; mdt: Change struct cdt_agent_record_loc to use kref&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: a799835dae5699f5c08c256cd604b9f70020a316&lt;/p&gt;</comment>
                            <comment id="384180" author="gerrit" created="Wed, 30 Aug 2023 06:31:16 +0000"  >&lt;p&gt;&quot;Arshad Hussain &amp;lt;arshad.hussain@aeoncomputing.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52173&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52173&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; target: Change struct barrier_instance to use kref&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 00ffdcc6b41803d1daf1eace9415f62e63c3a1e6&lt;/p&gt;</comment>
                            <comment id="384206" author="gerrit" created="Wed, 30 Aug 2023 10:43:28 +0000"  >&lt;p&gt;&quot;Arshad Hussain &amp;lt;arshad.hussain@aeoncomputing.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52179&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52179&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; obd: Change struct obd_device to use kref&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 0af14640b6b8c3c300c40074c1bdfdb022a895a0&lt;/p&gt;</comment>
                            <comment id="384907" author="gerrit" created="Wed, 6 Sep 2023 06:23:35 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52148/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52148/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; mdt: Change struct cdt_agent_req to use kref&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 9e597a09510c2f7bbc98ab0ce2aca2fe21a9ab45&lt;/p&gt;</comment>
                            <comment id="385592" author="gerrit" created="Tue, 12 Sep 2023 11:11:10 +0000"  >&lt;p&gt;&quot;Arshad Hussain &amp;lt;arshad.hussain@aeoncomputing.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52345&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52345&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; misc: Convert atomic_t to refcount_t(0)&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: e85e316da732d2544730d10e7d0c9320713d9e85&lt;/p&gt;</comment>
                            <comment id="385717" author="gerrit" created="Wed, 13 Sep 2023 04:06:39 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52153/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52153/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; mdt: Change struct cdt_agent_record_loc to use kref&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: a7b8675ec68687f97fc9d7b486c2e3481d579a4e&lt;/p&gt;</comment>
                            <comment id="385718" author="gerrit" created="Wed, 13 Sep 2023 04:06:51 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52179/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52179/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; obd: Change struct obd_device to use kref&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: de1c549814cdf5b9989f29b754cb0f94860b1223&lt;/p&gt;</comment>
                            <comment id="389348" author="gerrit" created="Mon, 16 Oct 2023 05:48:13 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52173/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52173/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; target: Change struct barrier_instance to use kref&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 2b3371d5ee52c0fd915d0713c365a1cc53f51265&lt;/p&gt;</comment>
                            <comment id="389559" author="gerrit" created="Tue, 17 Oct 2023 08:28:22 +0000"  >&lt;p&gt;&quot;Arshad Hussain &amp;lt;arshad.hussain@aeoncomputing.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52722&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52722&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; ofd: Change struct ofd_seq to use refcount_t&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 411552443fbc86647320e61f83aadc3ce3f8aff7&lt;/p&gt;</comment>
                            <comment id="389574" author="gerrit" created="Tue, 17 Oct 2023 10:39:11 +0000"  >&lt;p&gt;&quot;Arshad Hussain &amp;lt;arshad.hussain@aeoncomputing.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52723&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52723&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; ofd: Change struct ldlm_namespace to use refcount_t&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: d732c5d8b1d3b33726fcf1dc309fffec645d305b&lt;/p&gt;</comment>
                            <comment id="390206" author="gerrit" created="Mon, 23 Oct 2023 09:31:45 +0000"  >&lt;p&gt;&quot;Arshad Hussain &amp;lt;arshad.hussain@aeoncomputing.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52799&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52799&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; target: Change struct job_stat to use kref&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 7c5f6ad117df6fc122d89b4ba9dff83ffedd26cf&lt;/p&gt;</comment>
                            <comment id="390329" author="gerrit" created="Tue, 24 Oct 2023 09:02:42 +0000"  >&lt;p&gt;&quot;Arshad Hussain &amp;lt;arshad.hussain@aeoncomputing.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52811&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52811&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; lfsck: Change lfsck_assistant_object to use kref&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 7d091f848d9ed46fba46c9e53d8067ec15f6d640&lt;/p&gt;</comment>
                            <comment id="390340" author="gerrit" created="Tue, 24 Oct 2023 11:53:03 +0000"  >&lt;p&gt;&quot;Arshad Hussain &amp;lt;arshad.hussain@aeoncomputing.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52813&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52813&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; mgc: Change config_llog_data to use refcount_t&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: e010eb67453994bf77fdcf8e70b37aa7e6b1f1a0&lt;/p&gt;</comment>
                            <comment id="392313" author="gerrit" created="Wed, 8 Nov 2023 22:04:40 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52722/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52722/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; ofd: Change struct ofd_seq to use refcount_t&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 1759ae751aae8830e38faaeea1248667f5aac1aa&lt;/p&gt;</comment>
                            <comment id="392317" author="gerrit" created="Wed, 8 Nov 2023 22:05:52 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52799/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52799/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; target: Change struct job_stat to use kref&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: d7e3e7c1047b2e7412beadf9cd55c767b65ab4ab&lt;/p&gt;</comment>
                            <comment id="392318" author="gerrit" created="Wed, 8 Nov 2023 22:06:04 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52811/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52811/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; lfsck: Change lfsck_assistant_object to use kref&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 37a50f74da0c8d352d7bbe83bd1f7aeb08988714&lt;/p&gt;</comment>
                            <comment id="393512" author="gerrit" created="Sat, 18 Nov 2023 21:45:33 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52813/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52813/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; mgc: Change config_llog_data to use refcount_t&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 71760113e7207772bbd60a5372a6f2483d9e24b2&lt;/p&gt;</comment>
                            <comment id="396393" author="gerrit" created="Tue, 12 Dec 2023 08:35:39 +0000"  >&lt;p&gt;&quot;Arshad Hussain &amp;lt;arshad.hussain@aeoncomputing.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53416&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53416&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; ldlm: Change struct ldlm_resource to use refcount_t&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 66e92c6b5a2fe8f2ab42d41be9c0c2c8fe0b7734&lt;/p&gt;</comment>
                            <comment id="396444" author="gerrit" created="Tue, 12 Dec 2023 16:32:38 +0000"  >&lt;p&gt;&quot;Arshad Hussain &amp;lt;arshad.hussain@aeoncomputing.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53422&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53422&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; lfsck: Change lfsck_layout_slave_target to use kref&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 89954af1e01a2c20020e28cd51a2e80fbbe68d16&lt;/p&gt;</comment>
                            <comment id="396569" author="gerrit" created="Wed, 13 Dec 2023 09:30:05 +0000"  >&lt;p&gt;&quot;Arshad Hussain &amp;lt;arshad.hussain@aeoncomputing.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53438&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53438&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; lnet: Change sfw_session to use refcount_t&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: ee73e194010a1ae41c2a22c67ed2ba438df0aa86&lt;/p&gt;</comment>
                            <comment id="396767" author="gerrit" created="Thu, 14 Dec 2023 06:33:32 +0000"  >&lt;p&gt;&quot;Arshad Hussain &amp;lt;arshad.hussain@aeoncomputing.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53457&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53457&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; lnet: Change struct lnet_delay_rule to use kref&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 307878125e180fd3aa4c149beace9dbc9228b40e&lt;/p&gt;</comment>
                            <comment id="396788" author="gerrit" created="Thu, 14 Dec 2023 11:33:24 +0000"  >&lt;p&gt;&quot;Arshad Hussain &amp;lt;arshad.hussain@aeoncomputing.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53459&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53459&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; ptlrpc: Change struct ptlrpc_request_set to use kref&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 0e11b86e8e7e8dc49a2f05da5d955945913786b4&lt;/p&gt;</comment>
                            <comment id="397533" author="gerrit" created="Wed, 20 Dec 2023 01:45:33 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52122/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52122/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; lov: Change struct pool_desc to use kref&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: ff22bc6aff258577993b08ca3c938870a4b0ea25&lt;/p&gt;</comment>
                            <comment id="402553" author="gerrit" created="Sun, 4 Feb 2024 08:29:57 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53416/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53416/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; ldlm: Change struct ldlm_resource to use refcount_t&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 7375cd6da6329e4d4a4bfb600d4fc9552b3c4c6f&lt;/p&gt;</comment>
                            <comment id="402554" author="gerrit" created="Sun, 4 Feb 2024 08:30:11 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53438/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53438/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16796&quot; title=&quot;Replace LASSERT_ATOMIC_* (atomic_t) with reference counters (refcount)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16796&quot;&gt;LU-16796&lt;/a&gt; lnet: Change sfw_session to use refcount_t&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 82385d6e2248a1351721b8b6337d47353c9ccc26&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10011">
                    <name>Related</name>
                                            <outwardlinks description="is related to ">
                                        <issuelink>
            <issuekey id="47758">LU-9859</issuekey>
        </issuelink>
                            </outwardlinks>
                                                        </issuelinktype>
                    </issuelinks>
                <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                                                                            <customfield id="customfield_10890" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10390" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|i03klj:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10090" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>9223372036854775807</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_10060" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                        <customfieldname>Severity</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10022"><![CDATA[3]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                        </customfields>
    </item>
</channel>
</rss>