<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 01:11:32 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-903] Race condition while get_attr after cancel_lru_locks and sysctl drop_caches</title>
                <link>https://jira.whamcloud.com/browse/LU-903</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;Reproduction script is described in &lt;a href=&quot;https://bugzilla.lustre.org/show_bug.cgi?id=24555&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://bugzilla.lustre.org/show_bug.cgi?id=24555&lt;/a&gt;&lt;br/&gt;
After some analysis the next bug picture drown:&lt;/p&gt;

&lt;p&gt;1.&lt;br/&gt;
First thread makes lookup. Gets CR lock and terminates.&lt;br/&gt;
After that another thread a) make clear_lru cache b) sysctl that flush slab and another kernel&lt;br/&gt;
caches (dcache, icache, etc ...)&lt;/p&gt;

&lt;p&gt;This results that sequence &quot;shrink_dcache_memory -&amp;gt; &quot;foreach_dentry_lru&quot; -&amp;gt; prune_one_dentry -&amp;gt;&lt;br/&gt;
d_kill &lt;del&gt;&amp;gt; d_iput()&quot; is executed. After that  ll_clear_inode executed that NULLed lock&lt;/del&gt;&amp;gt;l_ast_data.&lt;/p&gt;

&lt;p&gt;2.&lt;br/&gt;
Some time after 1. another thread make get_attr on same inode. Gets another IBIT lock, but LOOKUP +&lt;br/&gt;
UPDATE.&lt;br/&gt;
Another client need  cancel this lock, but 2 BL AST race arised. Second lock can&apos;t cancel first&lt;br/&gt;
lock because optimization, that was sown bellow and fist lock can&apos;t be canceled because its&lt;br/&gt;
inode == NULL.&lt;/p&gt;

&lt;p&gt;Optimisation:&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;int ll_mdc_blocking_ast(struct ldlm_lock *lock, struct ldlm_lock_desc *desc,
                        void *data, int flag)
...
               if ((bits &amp;amp; MDS_INODELOCK_LOOKUP) &amp;amp;&amp;amp;
                    ll_have_md_lock(inode, MDS_INODELOCK_LOOKUP, LCK_MINMODE))
                        bits &amp;amp;= ~MDS_INODELOCK_LOOKUP;
                if ((bits &amp;amp; MDS_INODELOCK_UPDATE) &amp;amp;&amp;amp;
                    ll_have_md_lock(inode, MDS_INODELOCK_UPDATE, LCK_MINMODE))
                        bits &amp;amp;= ~MDS_INODELOCK_UPDATE;
                if ((bits &amp;amp; MDS_INODELOCK_OPEN) &amp;amp;&amp;amp;
                    ll_have_md_lock(inode, MDS_INODELOCK_OPEN, mode))
                        bits &amp;amp;= ~MDS_INODELOCK_OPEN;
...
if (inode-&amp;gt;i_sb-&amp;gt;s_root &amp;amp;&amp;amp;
        inode != inode-&amp;gt;i_sb-&amp;gt;s_root-&amp;gt;d_inode &amp;amp;&amp;amp;
        (bits &amp;amp; MDS_INODELOCK_LOOKUP))
        ll_unhash_aliases(inode);
iput(inode);
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</description>
                <environment>SLES11</environment>
        <key id="12617">LU-903</key>
            <summary>Race condition while get_attr after cancel_lru_locks and sysctl drop_caches</summary>
                <type id="1" iconUrl="https://jira.whamcloud.com/secure/viewavatar?size=xsmall&amp;avatarId=11303&amp;avatarType=issuetype">Bug</type>
                                            <priority id="4" iconUrl="https://jira.whamcloud.com/images/icons/priorities/minor.svg">Minor</priority>
                        <status id="5" iconUrl="https://jira.whamcloud.com/images/icons/statuses/resolved.png" description="A resolution has been taken, and it is awaiting verification by reporter. From here issues are either reopened, or are closed.">Resolved</status>
                    <statusCategory id="3" key="done" colorName="success"/>
                                    <resolution id="1">Fixed</resolution>
                                        <assignee username="keith">Keith Mannthey</assignee>
                                    <reporter username="artem_blagodarenko">Artem Blagodarenko</reporter>
                        <labels>
                            <label>dentry</label>
                            <label>patch</label>
                    </labels>
                <created>Thu, 8 Dec 2011 04:25:21 +0000</created>
                <updated>Tue, 17 Mar 2020 08:23:10 +0000</updated>
                            <resolved>Thu, 7 Mar 2013 00:10:12 +0000</resolved>
                                    <version>Lustre 2.4.0</version>
                    <version>Lustre 1.8.6</version>
                                    <fixVersion>Lustre 2.4.0</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>9</watches>
                                                                            <comments>
                            <comment id="27624" author="artem_blagodarenko" created="Mon, 30 Jan 2012 16:09:02 +0000"  >&lt;p&gt;Patch is in review board.&lt;br/&gt;
&lt;a href=&quot;http://review.whamcloud.com/#change,2054&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#change,2054&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="32870" author="artem_blagodarenko" created="Thu, 29 Mar 2012 17:37:09 +0000"  >&lt;p&gt;Second patch in set (2/2) in review board &lt;a href=&quot;http://review.whamcloud.com/2409&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/2409&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="33273" author="hudson" created="Mon, 2 Apr 2012 08:31:27 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://iu-build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://iu-build.whamcloud.com/job/lustre-reviews/./arch=x86_64,build_type=client,distro=sles11,ib_stack=inkernel/4631/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; x86_64,client,sles11,inkernel #4631&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-903&quot; title=&quot;Race condition while get_attr after cancel_lru_locks and sysctl drop_caches&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-903&quot;&gt;&lt;del&gt;LU-903&lt;/del&gt;&lt;/a&gt; ldlm: mdc lock inode reference moved to resource (Revision d94452871e7057e9bbaf1ba2025e2d54bef43ab0)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
artem_blagodarenko : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=d94452871e7057e9bbaf1ba2025e2d54bef43ab0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;d94452871e7057e9bbaf1ba2025e2d54bef43ab0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/super.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/llite_lib.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/dir.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/namei.c&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lock.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/dir.c&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lockd.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/namei.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_dlm.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="33274" author="hudson" created="Mon, 2 Apr 2012 08:40:12 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://iu-build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://iu-build.whamcloud.com/job/lustre-reviews/./arch=x86_64,build_type=client,distro=el5,ib_stack=inkernel/4631/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; x86_64,client,el5,inkernel #4631&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-903&quot; title=&quot;Race condition while get_attr after cancel_lru_locks and sysctl drop_caches&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-903&quot;&gt;&lt;del&gt;LU-903&lt;/del&gt;&lt;/a&gt; ldlm: mdc lock inode reference moved to resource (Revision d94452871e7057e9bbaf1ba2025e2d54bef43ab0)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
artem_blagodarenko : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=d94452871e7057e9bbaf1ba2025e2d54bef43ab0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;d94452871e7057e9bbaf1ba2025e2d54bef43ab0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/liblustre/super.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/namei.c&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lockd.c&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lock.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/namei.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_dlm.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/dir.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/llite_lib.h&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="33275" author="hudson" created="Mon, 2 Apr 2012 08:41:49 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://iu-build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://iu-build.whamcloud.com/job/lustre-reviews/./arch=i686,build_type=server,distro=el5,ib_stack=inkernel/4631/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; i686,server,el5,inkernel #4631&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-903&quot; title=&quot;Race condition while get_attr after cancel_lru_locks and sysctl drop_caches&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-903&quot;&gt;&lt;del&gt;LU-903&lt;/del&gt;&lt;/a&gt; ldlm: mdc lock inode reference moved to resource (Revision d94452871e7057e9bbaf1ba2025e2d54bef43ab0)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
artem_blagodarenko : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=d94452871e7057e9bbaf1ba2025e2d54bef43ab0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;d94452871e7057e9bbaf1ba2025e2d54bef43ab0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/llite_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lock.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/namei.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_dlm.h&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/dir.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lockd.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/super.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/llite_lib.h&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/namei.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/dir.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="33276" author="hudson" created="Mon, 2 Apr 2012 08:44:00 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://iu-build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://iu-build.whamcloud.com/job/lustre-reviews/./arch=x86_64,build_type=client,distro=el6,ib_stack=inkernel/4631/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; x86_64,client,el6,inkernel #4631&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-903&quot; title=&quot;Race condition while get_attr after cancel_lru_locks and sysctl drop_caches&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-903&quot;&gt;&lt;del&gt;LU-903&lt;/del&gt;&lt;/a&gt; ldlm: mdc lock inode reference moved to resource (Revision d94452871e7057e9bbaf1ba2025e2d54bef43ab0)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
artem_blagodarenko : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=d94452871e7057e9bbaf1ba2025e2d54bef43ab0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;d94452871e7057e9bbaf1ba2025e2d54bef43ab0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/llite_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lockd.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/llite_lib.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/dir.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/namei.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/super.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_dlm.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/namei.c&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lock.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="33277" author="hudson" created="Mon, 2 Apr 2012 08:44:34 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://iu-build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://iu-build.whamcloud.com/job/lustre-reviews/./arch=x86_64,build_type=server,distro=el6,ib_stack=inkernel/4631/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; x86_64,server,el6,inkernel #4631&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-903&quot; title=&quot;Race condition while get_attr after cancel_lru_locks and sysctl drop_caches&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-903&quot;&gt;&lt;del&gt;LU-903&lt;/del&gt;&lt;/a&gt; ldlm: mdc lock inode reference moved to resource (Revision d94452871e7057e9bbaf1ba2025e2d54bef43ab0)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
artem_blagodarenko : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=d94452871e7057e9bbaf1ba2025e2d54bef43ab0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;d94452871e7057e9bbaf1ba2025e2d54bef43ab0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre_dlm.h&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/llite_lib.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/dir.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/namei.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/dir.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/super.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lockd.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lock.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/namei.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="33278" author="hudson" created="Mon, 2 Apr 2012 08:45:36 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://iu-build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://iu-build.whamcloud.com/job/lustre-reviews/./arch=i686,build_type=client,distro=el6,ib_stack=inkernel/4631/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; i686,client,el6,inkernel #4631&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-903&quot; title=&quot;Race condition while get_attr after cancel_lru_locks and sysctl drop_caches&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-903&quot;&gt;&lt;del&gt;LU-903&lt;/del&gt;&lt;/a&gt; ldlm: mdc lock inode reference moved to resource (Revision d94452871e7057e9bbaf1ba2025e2d54bef43ab0)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
artem_blagodarenko : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=d94452871e7057e9bbaf1ba2025e2d54bef43ab0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;d94452871e7057e9bbaf1ba2025e2d54bef43ab0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdc/mdc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/llite_lib.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/namei.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/namei.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/super.c&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lock.c&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lockd.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_dlm.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/dir.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="33279" author="hudson" created="Mon, 2 Apr 2012 08:46:02 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://iu-build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://iu-build.whamcloud.com/job/lustre-reviews/./arch=i686,build_type=server,distro=el6,ib_stack=inkernel/4631/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; i686,server,el6,inkernel #4631&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-903&quot; title=&quot;Race condition while get_attr after cancel_lru_locks and sysctl drop_caches&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-903&quot;&gt;&lt;del&gt;LU-903&lt;/del&gt;&lt;/a&gt; ldlm: mdc lock inode reference moved to resource (Revision d94452871e7057e9bbaf1ba2025e2d54bef43ab0)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
artem_blagodarenko : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=d94452871e7057e9bbaf1ba2025e2d54bef43ab0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;d94452871e7057e9bbaf1ba2025e2d54bef43ab0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/liblustre/dir.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_dlm.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/namei.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/namei.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/super.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/llite_lib.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lock.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/dir.c&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lockd.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="33280" author="hudson" created="Mon, 2 Apr 2012 08:49:26 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://iu-build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://iu-build.whamcloud.com/job/lustre-reviews/./arch=x86_64,build_type=server,distro=el5,ib_stack=inkernel/4631/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; x86_64,server,el5,inkernel #4631&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-903&quot; title=&quot;Race condition while get_attr after cancel_lru_locks and sysctl drop_caches&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-903&quot;&gt;&lt;del&gt;LU-903&lt;/del&gt;&lt;/a&gt; ldlm: mdc lock inode reference moved to resource (Revision d94452871e7057e9bbaf1ba2025e2d54bef43ab0)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
artem_blagodarenko : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=d94452871e7057e9bbaf1ba2025e2d54bef43ab0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;d94452871e7057e9bbaf1ba2025e2d54bef43ab0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/namei.c&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lockd.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/llite_lib.h&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/namei.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lock.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/dir.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/super.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_dlm.h&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="33281" author="hudson" created="Mon, 2 Apr 2012 08:50:03 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://iu-build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://iu-build.whamcloud.com/job/lustre-reviews/./arch=i686,build_type=client,distro=el5,ib_stack=inkernel/4631/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; i686,client,el5,inkernel #4631&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-903&quot; title=&quot;Race condition while get_attr after cancel_lru_locks and sysctl drop_caches&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-903&quot;&gt;&lt;del&gt;LU-903&lt;/del&gt;&lt;/a&gt; ldlm: mdc lock inode reference moved to resource (Revision d94452871e7057e9bbaf1ba2025e2d54bef43ab0)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
artem_blagodarenko : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=d94452871e7057e9bbaf1ba2025e2d54bef43ab0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;d94452871e7057e9bbaf1ba2025e2d54bef43ab0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdc/mdc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lockd.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/namei.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_dlm.h&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/namei.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/llite_lib.h&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lock.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/dir.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/super.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="33282" author="hudson" created="Mon, 2 Apr 2012 08:50:08 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://iu-build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://iu-build.whamcloud.com/job/lustre-reviews/./arch=x86_64,build_type=client,distro=sles11,ib_stack=inkernel/4632/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; x86_64,client,sles11,inkernel #4632&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-903&quot; title=&quot;Race condition while get_attr after cancel_lru_locks and sysctl drop_caches&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-903&quot;&gt;&lt;del&gt;LU-903&lt;/del&gt;&lt;/a&gt; ldlm: inode references moved to resource for all locks (Revision 328ebce0e408ea08ca09265c36d216149e3aa92e)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
artem_blagodarenko : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=328ebce0e408ea08ca09265c36d216149e3aa92e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;328ebce0e408ea08ca09265c36d216149e3aa92e&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
	&lt;li&gt;lustre/include/obd.h&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/llite_lib.h&lt;/li&gt;
	&lt;li&gt;lustre/lov/lov_obd.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/namei.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/super.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/dir.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/rw.c&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/include/obd_class.h&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_mds.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="33285" author="hudson" created="Mon, 2 Apr 2012 08:56:50 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://iu-build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://iu-build.whamcloud.com/job/lustre-reviews/./arch=x86_64,build_type=client,distro=el5,ib_stack=inkernel/4632/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; x86_64,client,el5,inkernel #4632&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-903&quot; title=&quot;Race condition while get_attr after cancel_lru_locks and sysctl drop_caches&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-903&quot;&gt;&lt;del&gt;LU-903&lt;/del&gt;&lt;/a&gt; ldlm: inode references moved to resource for all locks (Revision 328ebce0e408ea08ca09265c36d216149e3aa92e)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
artem_blagodarenko : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=328ebce0e408ea08ca09265c36d216149e3aa92e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;328ebce0e408ea08ca09265c36d216149e3aa92e&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdc/mdc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/include/obd.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/super.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/namei.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/rw.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/llite_lib.h&lt;/li&gt;
	&lt;li&gt;lustre/lov/lov_obd.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_mds.h&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
	&lt;li&gt;lustre/include/obd_class.h&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="33286" author="hudson" created="Mon, 2 Apr 2012 08:57:12 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://iu-build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://iu-build.whamcloud.com/job/lustre-reviews/./arch=x86_64,build_type=client,distro=el6,ib_stack=inkernel/4632/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; x86_64,client,el6,inkernel #4632&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-903&quot; title=&quot;Race condition while get_attr after cancel_lru_locks and sysctl drop_caches&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-903&quot;&gt;&lt;del&gt;LU-903&lt;/del&gt;&lt;/a&gt; ldlm: inode references moved to resource for all locks (Revision 328ebce0e408ea08ca09265c36d216149e3aa92e)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
artem_blagodarenko : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=328ebce0e408ea08ca09265c36d216149e3aa92e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;328ebce0e408ea08ca09265c36d216149e3aa92e&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/include/obd.h&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/llite_lib.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/include/obd_class.h&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/dir.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_mds.h&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/namei.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/rw.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/super.c&lt;/li&gt;
	&lt;li&gt;lustre/lov/lov_obd.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="33287" author="hudson" created="Mon, 2 Apr 2012 08:57:15 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://iu-build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://iu-build.whamcloud.com/job/lustre-reviews/./arch=x86_64,build_type=server,distro=el6,ib_stack=inkernel/4632/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; x86_64,server,el6,inkernel #4632&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-903&quot; title=&quot;Race condition while get_attr after cancel_lru_locks and sysctl drop_caches&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-903&quot;&gt;&lt;del&gt;LU-903&lt;/del&gt;&lt;/a&gt; ldlm: inode references moved to resource for all locks (Revision 328ebce0e408ea08ca09265c36d216149e3aa92e)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
artem_blagodarenko : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=328ebce0e408ea08ca09265c36d216149e3aa92e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;328ebce0e408ea08ca09265c36d216149e3aa92e&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_mds.h&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/namei.c&lt;/li&gt;
	&lt;li&gt;lustre/include/obd.h&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/super.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/llite_lib.h&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/dir.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/include/obd_class.h&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/rw.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
	&lt;li&gt;lustre/lov/lov_obd.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_request.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="33288" author="hudson" created="Mon, 2 Apr 2012 08:57:57 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://iu-build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://iu-build.whamcloud.com/job/lustre-reviews/./arch=i686,build_type=client,distro=el6,ib_stack=inkernel/4632/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; i686,client,el6,inkernel #4632&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-903&quot; title=&quot;Race condition while get_attr after cancel_lru_locks and sysctl drop_caches&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-903&quot;&gt;&lt;del&gt;LU-903&lt;/del&gt;&lt;/a&gt; ldlm: inode references moved to resource for all locks (Revision 328ebce0e408ea08ca09265c36d216149e3aa92e)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
artem_blagodarenko : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=328ebce0e408ea08ca09265c36d216149e3aa92e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;328ebce0e408ea08ca09265c36d216149e3aa92e&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdc/mdc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/namei.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/include/obd.h&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/super.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_mds.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/lov/lov_obd.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/rw.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/dir.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/llite_lib.h&lt;/li&gt;
	&lt;li&gt;lustre/include/obd_class.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="33289" author="hudson" created="Mon, 2 Apr 2012 08:58:00 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://iu-build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://iu-build.whamcloud.com/job/lustre-reviews/./arch=i686,build_type=server,distro=el6,ib_stack=inkernel/4632/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; i686,server,el6,inkernel #4632&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-903&quot; title=&quot;Race condition while get_attr after cancel_lru_locks and sysctl drop_caches&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-903&quot;&gt;&lt;del&gt;LU-903&lt;/del&gt;&lt;/a&gt; ldlm: inode references moved to resource for all locks (Revision 328ebce0e408ea08ca09265c36d216149e3aa92e)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
artem_blagodarenko : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=328ebce0e408ea08ca09265c36d216149e3aa92e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;328ebce0e408ea08ca09265c36d216149e3aa92e&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/osc/osc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/include/obd.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/super.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
	&lt;li&gt;lustre/lov/lov_obd.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/include/obd_class.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/namei.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_mds.h&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/rw.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/dir.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/llite_lib.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="33290" author="hudson" created="Mon, 2 Apr 2012 08:59:20 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://iu-build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://iu-build.whamcloud.com/job/lustre-reviews/./arch=i686,build_type=server,distro=el5,ib_stack=inkernel/4632/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; i686,server,el5,inkernel #4632&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-903&quot; title=&quot;Race condition while get_attr after cancel_lru_locks and sysctl drop_caches&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-903&quot;&gt;&lt;del&gt;LU-903&lt;/del&gt;&lt;/a&gt; ldlm: inode references moved to resource for all locks (Revision 328ebce0e408ea08ca09265c36d216149e3aa92e)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
artem_blagodarenko : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=328ebce0e408ea08ca09265c36d216149e3aa92e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;328ebce0e408ea08ca09265c36d216149e3aa92e&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/osc/osc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/lov/lov_obd.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/dir.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/namei.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/super.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/llite_lib.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_mds.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/include/obd.h&lt;/li&gt;
	&lt;li&gt;lustre/include/obd_class.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/rw.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="33291" author="hudson" created="Mon, 2 Apr 2012 09:04:34 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://iu-build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://iu-build.whamcloud.com/job/lustre-reviews/./arch=x86_64,build_type=server,distro=el5,ib_stack=inkernel/4632/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; x86_64,server,el5,inkernel #4632&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-903&quot; title=&quot;Race condition while get_attr after cancel_lru_locks and sysctl drop_caches&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-903&quot;&gt;&lt;del&gt;LU-903&lt;/del&gt;&lt;/a&gt; ldlm: inode references moved to resource for all locks (Revision 328ebce0e408ea08ca09265c36d216149e3aa92e)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
artem_blagodarenko : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=328ebce0e408ea08ca09265c36d216149e3aa92e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;328ebce0e408ea08ca09265c36d216149e3aa92e&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/include/obd.h&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/namei.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_mds.h&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/dir.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/llite_lib.h&lt;/li&gt;
	&lt;li&gt;lustre/include/obd_class.h&lt;/li&gt;
	&lt;li&gt;lustre/lov/lov_obd.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/super.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/rw.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="33292" author="hudson" created="Mon, 2 Apr 2012 09:06:42 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://iu-build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://iu-build.whamcloud.com/job/lustre-reviews/./arch=i686,build_type=client,distro=el5,ib_stack=inkernel/4632/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; i686,client,el5,inkernel #4632&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-903&quot; title=&quot;Race condition while get_attr after cancel_lru_locks and sysctl drop_caches&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-903&quot;&gt;&lt;del&gt;LU-903&lt;/del&gt;&lt;/a&gt; ldlm: inode references moved to resource for all locks (Revision 328ebce0e408ea08ca09265c36d216149e3aa92e)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
artem_blagodarenko : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=328ebce0e408ea08ca09265c36d216149e3aa92e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;328ebce0e408ea08ca09265c36d216149e3aa92e&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_mds.h&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/rw.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/lov/lov_obd.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/dir.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/llite_lib.h&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/include/obd.h&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/super.c&lt;/li&gt;
	&lt;li&gt;lustre/liblustre/namei.c&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/include/obd_class.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_request.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="33577" author="adilger" created="Thu, 5 Apr 2012 17:27:52 +0000"  >&lt;p&gt;I&apos;m all in favour of moving the inode reference onto the resource instead of on the lock.  This patch should be landed to master first, not b1_8.  Please submit a version of this patch against the master branch.&lt;/p&gt;</comment>
                            <comment id="35958" author="artem_blagodarenko" created="Wed, 2 May 2012 10:10:21 +0000"  >&lt;p&gt;Patch for master is uploaded &lt;a href=&quot;http://review.whamcloud.com/2627&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/2627&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="40835" author="artem_blagodarenko" created="Tue, 19 Jun 2012 04:24:15 +0000"  >&lt;p&gt;The patch is reviewed. Is waiting for landing.&lt;/p&gt;</comment>
                            <comment id="46294" author="keith" created="Tue, 9 Oct 2012 20:09:50 +0000"  >&lt;p&gt;I have reviewed the latest version of the patch. &lt;/p&gt;</comment>
                            <comment id="48243" author="nrutman" created="Wed, 21 Nov 2012 18:24:13 +0000"  >&lt;p&gt;Xyratex-bug-id: &lt;a href=&quot;http://jira-nss.xy01.xyratex.com:8080/browse/MRP-269&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;MRP-269&lt;/a&gt;&lt;br/&gt;
Xyratex-bug-id: &lt;a href=&quot;http://jira-nss.xy01.xyratex.com:8080/browse/MRP-363&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;MRP-363&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="53477" author="spitzcor" created="Wed, 6 Mar 2013 16:38:05 +0000"  >&lt;p&gt;FYI, Cray has been using this patch for nearly a year.&lt;/p&gt;</comment>
                            <comment id="53499" author="pjones" created="Thu, 7 Mar 2013 00:10:12 +0000"  >&lt;p&gt;Landed for 2.4&lt;/p&gt;</comment>
                    </comments>
                    <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                    <customfield id="customfield_10020" key="com.atlassian.jira.plugin.system.customfieldtypes:float">
                        <customfieldname>Bugzilla ID</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>24555.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_10890" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_10040" key="com.atlassian.jira.plugin.system.customfieldtypes:labels">
                        <customfieldname>Epic</customfieldname>
                        <customfieldvalues>
                                        <label>metadata</label>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                <customfield id="customfield_10390" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hzv9wv:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10090" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>5140</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>