<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 01:03:58 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-122] Revert bug 21122 since it causes deadlock</title>
                <link>https://jira.whamcloud.com/browse/LU-122</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;Recently I found a deadlock issue when I was running one of my tests. After analysing the log, I realized the deadlock issue was imported by bug 21122. Then I have to rethink about the patch and try to figure out the root cause. Finally I came up with a new fix.&lt;/p&gt;

&lt;p&gt;Let me describe the deadlock a little bit(in the before patched code):&lt;br/&gt;
1. the page fault process would like to hold the page lock and call cl_unuse in cl_io_loop, cl_unuse will try to lock cl_lock mutex to do its job;&lt;br/&gt;
2. meanwhile, if the cl_lock is being cancelled, the mutex of cl_lock has already been held and the pages covered by this lock will be evicted, so it will try to grab the page lock;&lt;br/&gt;
3. deadlock.&lt;/p&gt;

&lt;p&gt;Let&apos;s go back to dig the root cause of bug 21122:&lt;br/&gt;
From the log, we can see that the faulting page is actually covered by two locks, says lock A and lock B. lock B is being cancelled while lock A is queued by page fault process(this is why lock B won&apos;t be matched). However, because a drawback in the cl_lock_page_out function:&lt;/p&gt;

&lt;p&gt;   cl_lock_at_page(env, lock-&amp;gt;cll_descr.cld_obj,&lt;br/&gt;
                                        page, lock, 0, 0);&lt;/p&gt;

&lt;p&gt;where the last two parameters were set to 0, which means to not match the CANCELPEND locks. Unfortunately the lock A is marked to CANCELPEND because it blocks another lock. This causes the faulting page is being truncated. Then another page fault happens and the vmpage with same offset is created. This is why duplicated cl_pages were created and hit the assertion.&lt;/p&gt;

&lt;p&gt;So in the new fix, I just revert the patch of bug 21122, and change the parameters of cl_lock_at_page to (..., 1, 0). Hopefully this will save our life.&lt;/p&gt;

&lt;p&gt;Is this tricky?&lt;/p&gt;</description>
                <environment></environment>
        <key id="10435">LU-122</key>
            <summary>Revert bug 21122 since it causes deadlock</summary>
                <type id="1" iconUrl="https://jira.whamcloud.com/secure/viewavatar?size=xsmall&amp;avatarId=11303&amp;avatarType=issuetype">Bug</type>
                                            <priority id="1" iconUrl="https://jira.whamcloud.com/images/icons/priorities/blocker.svg">Blocker</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="jay">Jinshan Xiong</assignee>
                                    <reporter username="jay">Jinshan Xiong</reporter>
                        <labels>
                    </labels>
                <created>Thu, 10 Mar 2011 22:30:06 +0000</created>
                <updated>Tue, 28 Jun 2011 19:50:18 +0000</updated>
                            <resolved>Mon, 25 Apr 2011 10:55:08 +0000</resolved>
                                    <version>Lustre 2.0.0</version>
                                    <fixVersion>Lustre 2.1.0</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>6</watches>
                                                                            <comments>
                            <comment id="11021" author="hudson" created="Fri, 11 Mar 2011 11:35:13 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/reviews-centos5/432/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;reviews-centos5 #432&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-122&quot; title=&quot;Revert bug 21122 since it causes deadlock&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-122&quot;&gt;&lt;del&gt;LU-122&lt;/del&gt;&lt;/a&gt; Revert the patch on bug 21122 and come up with a new fix&lt;/p&gt;

&lt;p&gt;Jinshan Xiong : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=e2d57e76eaba3a975043a3e5b9eb920e8d9cec77&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;e2d57e76eaba3a975043a3e5b9eb920e8d9cec77&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/llite_mmap.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/cl_lock.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/vvp_io.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/cl_page.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="11043" author="hudson" created="Sat, 12 Mar 2011 17:28:23 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/reviews-centos5/440/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;reviews-centos5 #440&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-122&quot; title=&quot;Revert bug 21122 since it causes deadlock&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-122&quot;&gt;&lt;del&gt;LU-122&lt;/del&gt;&lt;/a&gt; Revert the patch on bug 21122 and come up with a new fix&lt;/p&gt;

&lt;p&gt;Jinshan Xiong : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=e2d57e76eaba3a975043a3e5b9eb920e8d9cec77&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;e2d57e76eaba3a975043a3e5b9eb920e8d9cec77&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/cl_lock.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/vvp_io.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/cl_page.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_mmap.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="11108" author="pjones" created="Tue, 15 Mar 2011 09:26:55 +0000"  >&lt;p&gt;Cliff&lt;/p&gt;

&lt;p&gt;Can you please add this patch to the queue to test on Hyperion?&lt;/p&gt;

&lt;p&gt;Thanks&lt;/p&gt;

&lt;p&gt;Peter&lt;/p&gt;</comment>
                            <comment id="11169" author="hudson" created="Wed, 16 Mar 2011 13:48:13 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/reviews-centos5/489/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;reviews-centos5 #489&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-122&quot; title=&quot;Revert bug 21122 since it causes deadlock&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-122&quot;&gt;&lt;del&gt;LU-122&lt;/del&gt;&lt;/a&gt; Revert the patch on bug 21122 and come up with a new fix&lt;/p&gt;

&lt;p&gt;Jinshan Xiong : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=398fbf1a08b45a2292322a4e8396af5b623fbe31&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;398fbf1a08b45a2292322a4e8396af5b623fbe31&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/cl_lock.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/vvp_io.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/cl_page.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_mmap.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="11170" author="hudson" created="Wed, 16 Mar 2011 14:03:22 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/reviews-centos5/490/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;reviews-centos5 #490&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-122&quot; title=&quot;Revert bug 21122 since it causes deadlock&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-122&quot;&gt;&lt;del&gt;LU-122&lt;/del&gt;&lt;/a&gt; Revert the patch on bug 21122 and come up with a new fix&lt;/p&gt;

&lt;p&gt;Jinshan Xiong : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=026964d4ccae351e7aa5561fae976f6fe3fc2c55&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;026964d4ccae351e7aa5561fae976f6fe3fc2c55&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/vvp_io.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_mmap.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/cl_lock.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="11189" author="cliffw" created="Thu, 17 Mar 2011 12:50:24 +0000"  >&lt;p&gt;I will be testing builds #490 and #210 (client) on Hyperion, should be running today&lt;/p&gt;</comment>
                            <comment id="11245" author="green" created="Fri, 18 Mar 2011 20:44:52 +0000"  >&lt;p&gt;Would have been great if you added your findings about the bug here as well, not just in patch description in gerrit.&lt;/p&gt;

&lt;p&gt;I wonder is your issue rhel5 specific and clears in rhel6 all by itself?&lt;br/&gt;
I actually preferred the way we had it after patch in 21122 wrt page locking, so that we don&apos;t need to get locked page, unlock it and then lock again. Can we fix this in any other way and still retain the page locked if we got it locked?&lt;/p&gt;</comment>
                            <comment id="11246" author="jay" created="Fri, 18 Mar 2011 21:24:58 +0000"  >&lt;p&gt;I think the deadlock would happen to both rhel5 and rhel6.&lt;/p&gt;

&lt;p&gt;WRT the page locking, I think anyway we have to return an unlocked page in vvp_io_fault_start, otherwise it would cause deadlock. But we may make vvp_io_kernel_fault to return a locked page(we still have to do this tricky check in filemap_nopage case since it returns an unlocked page) and then unlock it in vvp_io_fault_start. It&apos;s acceptable to me if you think it will be much better.&lt;/p&gt;</comment>
                            <comment id="11377" author="hudson" created="Fri, 25 Mar 2011 09:47:01 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/reviews-centos5/570/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;reviews-centos5 #570&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-122&quot; title=&quot;Revert bug 21122 since it causes deadlock&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-122&quot;&gt;&lt;del&gt;LU-122&lt;/del&gt;&lt;/a&gt; Revert the patch on bug 21122 and come up with a new fix&lt;/p&gt;

&lt;p&gt;Jinshan Xiong : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=cd180a0ef35d87cd4e64d71db8f52d3916b7afae&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;cd180a0ef35d87cd4e64d71db8f52d3916b7afae&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/cl_lock.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/vvp_io.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_mmap.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="11811" author="hudson" created="Fri, 1 Apr 2011 13:20:24 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/reviews-centos5/636/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;reviews-centos5 #636&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-122&quot; title=&quot;Revert bug 21122 since it causes deadlock&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-122&quot;&gt;&lt;del&gt;LU-122&lt;/del&gt;&lt;/a&gt; Revert the patch on bug 21122 and come up with a new fix&lt;/p&gt;

&lt;p&gt;Jinshan Xiong : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=a91a2a4fdd7550f08ae3b00f58f9eeec3ac3777b&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;a91a2a4fdd7550f08ae3b00f58f9eeec3ac3777b&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/vvp_io.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_mmap.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/cl_lock.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="11820" author="hudson" created="Fri, 1 Apr 2011 13:57:09 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://eric.lab.whamcloud.com:8080/images/16x16/red.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://eric.lab.whamcloud.com:8080/job/lustre-reviews/./build_type=server,distro=el6/51/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; server,el6 #51&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-122&quot; title=&quot;Revert bug 21122 since it causes deadlock&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-122&quot;&gt;&lt;del&gt;LU-122&lt;/del&gt;&lt;/a&gt; Revert the patch on bug 21122 and come up with a new fix&lt;/p&gt;

&lt;p&gt;Jinshan Xiong : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=a91a2a4fdd7550f08ae3b00f58f9eeec3ac3777b&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;a91a2a4fdd7550f08ae3b00f58f9eeec3ac3777b&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/vvp_io.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_mmap.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/cl_lock.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="11823" author="hudson" created="Fri, 1 Apr 2011 14:11:25 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://eric.lab.whamcloud.com:8080/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://eric.lab.whamcloud.com:8080/job/lustre-reviews/./build_type=client,distro=el5/51/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,el5 #51&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-122&quot; title=&quot;Revert bug 21122 since it causes deadlock&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-122&quot;&gt;&lt;del&gt;LU-122&lt;/del&gt;&lt;/a&gt; Revert the patch on bug 21122 and come up with a new fix&lt;/p&gt;

&lt;p&gt;Jinshan Xiong : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=a91a2a4fdd7550f08ae3b00f58f9eeec3ac3777b&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;a91a2a4fdd7550f08ae3b00f58f9eeec3ac3777b&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/cl_lock.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_mmap.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/vvp_io.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="11825" author="hudson" created="Fri, 1 Apr 2011 14:15:21 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://eric.lab.whamcloud.com:8080/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://eric.lab.whamcloud.com:8080/job/lustre-reviews/./build_type=client,distro=el6/51/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,el6 #51&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-122&quot; title=&quot;Revert bug 21122 since it causes deadlock&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-122&quot;&gt;&lt;del&gt;LU-122&lt;/del&gt;&lt;/a&gt; Revert the patch on bug 21122 and come up with a new fix&lt;/p&gt;

&lt;p&gt;Jinshan Xiong : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=a91a2a4fdd7550f08ae3b00f58f9eeec3ac3777b&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;a91a2a4fdd7550f08ae3b00f58f9eeec3ac3777b&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/vvp_io.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_mmap.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/cl_lock.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="11828" author="hudson" created="Fri, 1 Apr 2011 14:35:29 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://eric.lab.whamcloud.com:8080/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://eric.lab.whamcloud.com:8080/job/lustre-reviews/./build_type=server,distro=el5/51/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; server,el5 #51&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-122&quot; title=&quot;Revert bug 21122 since it causes deadlock&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-122&quot;&gt;&lt;del&gt;LU-122&lt;/del&gt;&lt;/a&gt; Revert the patch on bug 21122 and come up with a new fix&lt;/p&gt;

&lt;p&gt;Jinshan Xiong : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=a91a2a4fdd7550f08ae3b00f58f9eeec3ac3777b&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;a91a2a4fdd7550f08ae3b00f58f9eeec3ac3777b&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/llite_mmap.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/cl_lock.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/vvp_io.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12498" author="pjones" created="Thu, 7 Apr 2011 06:51:11 +0000"  >&lt;p&gt;Update from Bull &quot;Fix delivered, no new occurrence of the bug so far! &quot;&lt;/p&gt;</comment>
                            <comment id="13181" author="pjones" created="Thu, 21 Apr 2011 07:12:19 +0000"  >&lt;p&gt;Still no reoccurences at CEA running with the patch&lt;/p&gt;</comment>
                            <comment id="13271" author="hudson" created="Mon, 25 Apr 2011 10:47:49 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el5,ib_stack=ofa/43/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,ofa #43&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-122&quot; title=&quot;Revert bug 21122 since it causes deadlock&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-122&quot;&gt;&lt;del&gt;LU-122&lt;/del&gt;&lt;/a&gt; Revert the patch on bug 21122 and come up with a new fix&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=32b2ddf168b846ccf8c83329728905f6c5c8bbcb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;32b2ddf168b846ccf8c83329728905f6c5c8bbcb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/cl_lock.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_mmap.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/vvp_io.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="13273" author="hudson" created="Mon, 25 Apr 2011 10:49:09 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=ubuntu1004,ib_stack=inkernel/43/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,ubuntu1004,inkernel #43&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-122&quot; title=&quot;Revert bug 21122 since it causes deadlock&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-122&quot;&gt;&lt;del&gt;LU-122&lt;/del&gt;&lt;/a&gt; Revert the patch on bug 21122 and come up with a new fix&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=32b2ddf168b846ccf8c83329728905f6c5c8bbcb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;32b2ddf168b846ccf8c83329728905f6c5c8bbcb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/cl_lock.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_mmap.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/vvp_io.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="13275" author="hudson" created="Mon, 25 Apr 2011 10:49:45 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el6,ib_stack=inkernel/43/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el6,inkernel #43&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-122&quot; title=&quot;Revert bug 21122 since it causes deadlock&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-122&quot;&gt;&lt;del&gt;LU-122&lt;/del&gt;&lt;/a&gt; Revert the patch on bug 21122 and come up with a new fix&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=32b2ddf168b846ccf8c83329728905f6c5c8bbcb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;32b2ddf168b846ccf8c83329728905f6c5c8bbcb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/llite_mmap.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/vvp_io.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/cl_lock.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="13277" author="hudson" created="Mon, 25 Apr 2011 10:50:35 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el6,ib_stack=inkernel/43/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el6,inkernel #43&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-122&quot; title=&quot;Revert bug 21122 since it causes deadlock&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-122&quot;&gt;&lt;del&gt;LU-122&lt;/del&gt;&lt;/a&gt; Revert the patch on bug 21122 and come up with a new fix&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=32b2ddf168b846ccf8c83329728905f6c5c8bbcb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;32b2ddf168b846ccf8c83329728905f6c5c8bbcb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/vvp_io.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/cl_lock.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_mmap.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="13279" author="hudson" created="Mon, 25 Apr 2011 10:53:01 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el5,ib_stack=inkernel/43/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,inkernel #43&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-122&quot; title=&quot;Revert bug 21122 since it causes deadlock&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-122&quot;&gt;&lt;del&gt;LU-122&lt;/del&gt;&lt;/a&gt; Revert the patch on bug 21122 and come up with a new fix&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=32b2ddf168b846ccf8c83329728905f6c5c8bbcb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;32b2ddf168b846ccf8c83329728905f6c5c8bbcb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/vvp_io.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_mmap.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/cl_lock.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="13281" author="pjones" created="Mon, 25 Apr 2011 10:55:08 +0000"  >&lt;p&gt;Patch landed for 2.1. Please reopen if any further work needed&lt;/p&gt;</comment>
                            <comment id="13282" author="hudson" created="Mon, 25 Apr 2011 11:01:15 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el5,ib_stack=inkernel/43/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,inkernel #43&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-122&quot; title=&quot;Revert bug 21122 since it causes deadlock&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-122&quot;&gt;&lt;del&gt;LU-122&lt;/del&gt;&lt;/a&gt; Revert the patch on bug 21122 and come up with a new fix&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=32b2ddf168b846ccf8c83329728905f6c5c8bbcb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;32b2ddf168b846ccf8c83329728905f6c5c8bbcb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/cl_lock.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/vvp_io.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_mmap.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="13285" author="hudson" created="Mon, 25 Apr 2011 11:06:28 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el6,ib_stack=inkernel/43/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el6,inkernel #43&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-122&quot; title=&quot;Revert bug 21122 since it causes deadlock&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-122&quot;&gt;&lt;del&gt;LU-122&lt;/del&gt;&lt;/a&gt; Revert the patch on bug 21122 and come up with a new fix&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=32b2ddf168b846ccf8c83329728905f6c5c8bbcb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;32b2ddf168b846ccf8c83329728905f6c5c8bbcb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/cl_lock.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_mmap.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/vvp_io.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="13287" author="hudson" created="Mon, 25 Apr 2011 11:06:53 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=ubuntu1004,ib_stack=ofa/43/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,ubuntu1004,ofa #43&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-122&quot; title=&quot;Revert bug 21122 since it causes deadlock&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-122&quot;&gt;&lt;del&gt;LU-122&lt;/del&gt;&lt;/a&gt; Revert the patch on bug 21122 and come up with a new fix&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=32b2ddf168b846ccf8c83329728905f6c5c8bbcb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;32b2ddf168b846ccf8c83329728905f6c5c8bbcb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/cl_lock.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_mmap.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/vvp_io.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="13289" author="hudson" created="Mon, 25 Apr 2011 11:10:24 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el5,ib_stack=ofa/43/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,ofa #43&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-122&quot; title=&quot;Revert bug 21122 since it causes deadlock&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-122&quot;&gt;&lt;del&gt;LU-122&lt;/del&gt;&lt;/a&gt; Revert the patch on bug 21122 and come up with a new fix&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=32b2ddf168b846ccf8c83329728905f6c5c8bbcb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;32b2ddf168b846ccf8c83329728905f6c5c8bbcb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/cl_lock.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/vvp_io.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_mmap.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="13291" author="hudson" created="Mon, 25 Apr 2011 11:13:47 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el5,ib_stack=ofa/43/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,ofa #43&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-122&quot; title=&quot;Revert bug 21122 since it causes deadlock&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-122&quot;&gt;&lt;del&gt;LU-122&lt;/del&gt;&lt;/a&gt; Revert the patch on bug 21122 and come up with a new fix&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=32b2ddf168b846ccf8c83329728905f6c5c8bbcb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;32b2ddf168b846ccf8c83329728905f6c5c8bbcb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/llite_mmap.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/cl_lock.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/vvp_io.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="13293" author="hudson" created="Mon, 25 Apr 2011 11:21:35 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el5,ib_stack=inkernel/43/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,inkernel #43&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-122&quot; title=&quot;Revert bug 21122 since it causes deadlock&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-122&quot;&gt;&lt;del&gt;LU-122&lt;/del&gt;&lt;/a&gt; Revert the patch on bug 21122 and come up with a new fix&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=32b2ddf168b846ccf8c83329728905f6c5c8bbcb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;32b2ddf168b846ccf8c83329728905f6c5c8bbcb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/llite_mmap.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/cl_lock.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/vvp_io.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="13295" author="hudson" created="Mon, 25 Apr 2011 11:30:45 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el5,ib_stack=ofa/43/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,ofa #43&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-122&quot; title=&quot;Revert bug 21122 since it causes deadlock&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-122&quot;&gt;&lt;del&gt;LU-122&lt;/del&gt;&lt;/a&gt; Revert the patch on bug 21122 and come up with a new fix&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=32b2ddf168b846ccf8c83329728905f6c5c8bbcb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;32b2ddf168b846ccf8c83329728905f6c5c8bbcb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/cl_lock.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/vvp_io.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_mmap.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="13297" author="hudson" created="Mon, 25 Apr 2011 11:46:23 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el5,ib_stack=inkernel/43/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,inkernel #43&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-122&quot; title=&quot;Revert bug 21122 since it causes deadlock&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-122&quot;&gt;&lt;del&gt;LU-122&lt;/del&gt;&lt;/a&gt; Revert the patch on bug 21122 and come up with a new fix&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=32b2ddf168b846ccf8c83329728905f6c5c8bbcb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;32b2ddf168b846ccf8c83329728905f6c5c8bbcb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/cl_lock.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_mmap.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/vvp_io.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="13299" author="hudson" created="Mon, 25 Apr 2011 12:57:16 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el6,ib_stack=inkernel/43/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el6,inkernel #43&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-122&quot; title=&quot;Revert bug 21122 since it causes deadlock&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-122&quot;&gt;&lt;del&gt;LU-122&lt;/del&gt;&lt;/a&gt; Revert the patch on bug 21122 and come up with a new fix&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=32b2ddf168b846ccf8c83329728905f6c5c8bbcb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;32b2ddf168b846ccf8c83329728905f6c5c8bbcb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/vvp_io.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_mmap.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/cl_lock.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="13359" author="hudson" created="Wed, 27 Apr 2011 06:47:19 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el5,ib_stack=inkernel/45/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,inkernel #45&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-122&quot; title=&quot;Revert bug 21122 since it causes deadlock&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-122&quot;&gt;&lt;del&gt;LU-122&lt;/del&gt;&lt;/a&gt; Revert the patch on bug 21122 and come up with a new fix&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=32b2ddf168b846ccf8c83329728905f6c5c8bbcb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;32b2ddf168b846ccf8c83329728905f6c5c8bbcb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/llite_mmap.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/cl_lock.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/vvp_io.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="13362" author="hudson" created="Wed, 27 Apr 2011 07:08:29 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el5,ib_stack=ofa/45/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,ofa #45&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-122&quot; title=&quot;Revert bug 21122 since it causes deadlock&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-122&quot;&gt;&lt;del&gt;LU-122&lt;/del&gt;&lt;/a&gt; Revert the patch on bug 21122 and come up with a new fix&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=32b2ddf168b846ccf8c83329728905f6c5c8bbcb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;32b2ddf168b846ccf8c83329728905f6c5c8bbcb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/vvp_io.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_mmap.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/cl_lock.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="13366" author="hudson" created="Wed, 27 Apr 2011 07:24:13 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el5,ib_stack=ofa/45/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,ofa #45&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-122&quot; title=&quot;Revert bug 21122 since it causes deadlock&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-122&quot;&gt;&lt;del&gt;LU-122&lt;/del&gt;&lt;/a&gt; Revert the patch on bug 21122 and come up with a new fix&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=32b2ddf168b846ccf8c83329728905f6c5c8bbcb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;32b2ddf168b846ccf8c83329728905f6c5c8bbcb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/llite_mmap.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/cl_lock.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/vvp_io.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="13372" author="hudson" created="Wed, 27 Apr 2011 07:39:51 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el5,ib_stack=inkernel/45/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,inkernel #45&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-122&quot; title=&quot;Revert bug 21122 since it causes deadlock&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-122&quot;&gt;&lt;del&gt;LU-122&lt;/del&gt;&lt;/a&gt; Revert the patch on bug 21122 and come up with a new fix&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=32b2ddf168b846ccf8c83329728905f6c5c8bbcb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;32b2ddf168b846ccf8c83329728905f6c5c8bbcb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/llite_mmap.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/vvp_io.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/cl_lock.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="17150" author="hudson" created="Tue, 28 Jun 2011 19:50:18 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/hydra-server/./arch=x86_64,distro=el5/12/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;hydra-server &#187; x86_64,el5 #12&lt;/a&gt;&lt;br/&gt;
     Initial &apos;events&apos; interface (&lt;a href=&quot;https://jira.whamcloud.com/browse/LU-104&quot; title=&quot;Lustre grants flock exclusive locks on two file descriptors for the same  file&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-104&quot;&gt;&lt;del&gt;LU-104&lt;/del&gt;&lt;/a&gt;, &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-122&quot; title=&quot;Revert bug 21122 since it causes deadlock&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-122&quot;&gt;&lt;del&gt;LU-122&lt;/del&gt;&lt;/a&gt;)&lt;/p&gt;

&lt;p&gt;john : &lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;monitor/lib/lustre_audit.py&lt;/li&gt;
	&lt;li&gt;monitor/static/images/dialog-error.png&lt;/li&gt;
	&lt;li&gt;settings.py&lt;/li&gt;
	&lt;li&gt;monitor/urls.py&lt;/li&gt;
	&lt;li&gt;monitor/views.py&lt;/li&gt;
	&lt;li&gt;monitor/static/css/base.css&lt;/li&gt;
	&lt;li&gt;monitor/templates/events.html&lt;/li&gt;
	&lt;li&gt;monitor/models.py&lt;/li&gt;
	&lt;li&gt;monitor/bin/hydra-debug.py&lt;/li&gt;
	&lt;li&gt;monitor/static/images/dialog-warning.png&lt;/li&gt;
	&lt;li&gt;monitor/templates/base.html&lt;/li&gt;
	&lt;li&gt;monitor/static/images/dialog-information.png&lt;/li&gt;
&lt;/ul&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>21122.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_10390" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hzv9f3:</customfieldvalue>

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