<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 01:11:10 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-868] Add early reply and netlatency into the timeout of waiting next replay. </title>
                <link>https://jira.whamcloud.com/browse/LU-868</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;In current handle_recovery_req, when setting the timeout for waiting next replay&lt;/p&gt;

&lt;p&gt; to = lustre_msg_get_timeout(req-&amp;gt;rq_reqmsg);&lt;br/&gt;
 extend_recovery_timer(class_exp2obd(req-&amp;gt;rq_export), to);&lt;/p&gt;

&lt;p&gt;It did not consider the netlatency and early reply might extend the req timeout on client side, which might cause some replay tests failed like replay-dual 9, 10. &lt;/p&gt;</description>
                <environment></environment>
        <key id="12502">LU-868</key>
            <summary>Add early reply and netlatency into the timeout of waiting next replay. </summary>
                <type id="4" iconUrl="https://jira.whamcloud.com/secure/viewavatar?size=xsmall&amp;avatarId=11310&amp;avatarType=issuetype">Improvement</type>
                                            <priority id="4" iconUrl="https://jira.whamcloud.com/images/icons/priorities/minor.svg">Minor</priority>
                        <status id="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="di.wang">Di Wang</assignee>
                                    <reporter username="di.wang">Di Wang</reporter>
                        <labels>
                    </labels>
                <created>Sun, 20 Nov 2011 23:06:04 +0000</created>
                <updated>Fri, 3 Jun 2016 07:51:40 +0000</updated>
                            <resolved>Fri, 3 Jun 2016 07:51:40 +0000</resolved>
                                                    <fixVersion>Lustre 2.2.0</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>0</watches>
                                                                            <comments>
                            <comment id="23293" author="jay" created="Tue, 22 Nov 2011 18:32:24 +0000"  >&lt;p&gt;There exists a quite similar scenario at: &lt;a href=&quot;https://maloo.whamcloud.com/test_sets/eb23c4ba-1510-11e1-b669-52540025f9af&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://maloo.whamcloud.com/test_sets/eb23c4ba-1510-11e1-b669-52540025f9af&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The failure on patch set 2 is quite similar to &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-868&quot; title=&quot;Add early reply and netlatency into the timeout of waiting next replay. &quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-868&quot;&gt;&lt;del&gt;LU-868&lt;/del&gt;&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;0. server started recovery window at: 1321951273.840132, and recovery timeout was set to 60s;&lt;br/&gt;
1. client replayed the open request at 1321951273.829810, with timeout value to 60 seconds;&lt;br/&gt;
2. server received this request at 1321951273.840592, and reply was dropped at 1321951273.845728;&lt;br/&gt;
3. server evicted this client at 1321951333.841817 because it couldn&apos;t finish recovery in time;&lt;br/&gt;
4. the replaying request was expired on the client side at 1321951334.831938;&lt;/p&gt;

&lt;p&gt;It looks like that it&apos;s not enough to extend the recovery window by rq_timeout only. We should add RECONNECT time as well so that it has enough time for the client to reconnect and replay again. Another question is why rq_timeout of replaying request was set to 60 seconds, I think it should be much shorter.&lt;/p&gt;</comment>
                            <comment id="23400" author="tappro" created="Thu, 24 Nov 2011 12:22:17 +0000"  >&lt;p&gt;I&apos;d agree that reconnect time is good to have included but it should be also added to the initial recovery timeout then. As for 60s timeout, this can be due to network latency, I recall from discussion with Eric that it is normal to have delays up to 60s, e.g. with routers. In current situation the recovery time in 60s looks more unnatural than request timeout, it is just too short.&lt;/p&gt;</comment>
                            <comment id="23402" author="tappro" created="Thu, 24 Nov 2011 12:31:57 +0000"  >&lt;p&gt;The check_and_start_recovery_timer() looks pretty reasonable but at the end it has:&lt;/p&gt;

&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;1487         service_time -= obd-&amp;gt;obd_recovery_timeout;
1488         &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (service_time &amp;gt; 0)
1489                 extend_recovery_timer(obd, service_time);
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;I think that Maloo issue you are referring was before your fixes for extend_recovery_timer(), so I suspect that can cause not correct total recovery time making it smaller, what do you think?&lt;/p&gt;
</comment>
                            <comment id="26383" author="hudson" created="Wed, 11 Jan 2012 12:37:27 +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/lustre-master/./arch=x86_64,build_type=server,distro=el5,ib_stack=ofa/422/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,ofa #422&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-868&quot; title=&quot;Add early reply and netlatency into the timeout of waiting next replay. &quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-868&quot;&gt;&lt;del&gt;LU-868&lt;/del&gt;&lt;/a&gt; ptlrpc: Fix the timeout for waiting next replay (Revision 06f41b84901ad3bb4901b51a24e1553f9eeb6f1c)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&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=06f41b84901ad3bb4901b51a24e1553f9eeb6f1c&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;06f41b84901ad3bb4901b51a24e1553f9eeb6f1c&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/client.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="26384" author="hudson" created="Wed, 11 Jan 2012 12:39:07 +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/lustre-master/./arch=x86_64,build_type=client,distro=el6,ib_stack=inkernel/422/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el6,inkernel #422&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-868&quot; title=&quot;Add early reply and netlatency into the timeout of waiting next replay. &quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-868&quot;&gt;&lt;del&gt;LU-868&lt;/del&gt;&lt;/a&gt; ptlrpc: Fix the timeout for waiting next replay (Revision 06f41b84901ad3bb4901b51a24e1553f9eeb6f1c)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&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=06f41b84901ad3bb4901b51a24e1553f9eeb6f1c&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;06f41b84901ad3bb4901b51a24e1553f9eeb6f1c&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/client.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="26385" author="hudson" created="Wed, 11 Jan 2012 12:42:49 +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/lustre-master/./arch=x86_64,build_type=client,distro=el5,ib_stack=inkernel/422/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,inkernel #422&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-868&quot; title=&quot;Add early reply and netlatency into the timeout of waiting next replay. &quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-868&quot;&gt;&lt;del&gt;LU-868&lt;/del&gt;&lt;/a&gt; ptlrpc: Fix the timeout for waiting next replay (Revision 06f41b84901ad3bb4901b51a24e1553f9eeb6f1c)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&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=06f41b84901ad3bb4901b51a24e1553f9eeb6f1c&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;06f41b84901ad3bb4901b51a24e1553f9eeb6f1c&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/client.c&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lib.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="26386" author="hudson" created="Wed, 11 Jan 2012 12:42:50 +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/lustre-master/./arch=i686,build_type=server,distro=el6,ib_stack=inkernel/422/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el6,inkernel #422&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-868&quot; title=&quot;Add early reply and netlatency into the timeout of waiting next replay. &quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-868&quot;&gt;&lt;del&gt;LU-868&lt;/del&gt;&lt;/a&gt; ptlrpc: Fix the timeout for waiting next replay (Revision 06f41b84901ad3bb4901b51a24e1553f9eeb6f1c)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&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=06f41b84901ad3bb4901b51a24e1553f9eeb6f1c&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;06f41b84901ad3bb4901b51a24e1553f9eeb6f1c&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/client.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="26387" author="hudson" created="Wed, 11 Jan 2012 12:46:09 +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/lustre-master/./arch=x86_64,build_type=client,distro=sles11,ib_stack=inkernel/422/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,sles11,inkernel #422&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-868&quot; title=&quot;Add early reply and netlatency into the timeout of waiting next replay. &quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-868&quot;&gt;&lt;del&gt;LU-868&lt;/del&gt;&lt;/a&gt; ptlrpc: Fix the timeout for waiting next replay (Revision 06f41b84901ad3bb4901b51a24e1553f9eeb6f1c)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&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=06f41b84901ad3bb4901b51a24e1553f9eeb6f1c&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;06f41b84901ad3bb4901b51a24e1553f9eeb6f1c&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/client.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lib.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="26388" author="hudson" created="Wed, 11 Jan 2012 12:48:12 +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/lustre-master/./arch=x86_64,build_type=client,distro=el5,ib_stack=ofa/422/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,ofa #422&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-868&quot; title=&quot;Add early reply and netlatency into the timeout of waiting next replay. &quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-868&quot;&gt;&lt;del&gt;LU-868&lt;/del&gt;&lt;/a&gt; ptlrpc: Fix the timeout for waiting next replay (Revision 06f41b84901ad3bb4901b51a24e1553f9eeb6f1c)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&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=06f41b84901ad3bb4901b51a24e1553f9eeb6f1c&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;06f41b84901ad3bb4901b51a24e1553f9eeb6f1c&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/client.c&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="26389" author="hudson" created="Wed, 11 Jan 2012 12:49:33 +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/lustre-master/./arch=x86_64,build_type=server,distro=el5,ib_stack=inkernel/422/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,inkernel #422&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-868&quot; title=&quot;Add early reply and netlatency into the timeout of waiting next replay. &quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-868&quot;&gt;&lt;del&gt;LU-868&lt;/del&gt;&lt;/a&gt; ptlrpc: Fix the timeout for waiting next replay (Revision 06f41b84901ad3bb4901b51a24e1553f9eeb6f1c)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&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=06f41b84901ad3bb4901b51a24e1553f9eeb6f1c&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;06f41b84901ad3bb4901b51a24e1553f9eeb6f1c&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/client.c&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lib.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="26390" author="hudson" created="Wed, 11 Jan 2012 12:50:07 +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/lustre-master/./arch=x86_64,build_type=client,distro=ubuntu1004,ib_stack=inkernel/422/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,ubuntu1004,inkernel #422&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-868&quot; title=&quot;Add early reply and netlatency into the timeout of waiting next replay. &quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-868&quot;&gt;&lt;del&gt;LU-868&lt;/del&gt;&lt;/a&gt; ptlrpc: Fix the timeout for waiting next replay (Revision 06f41b84901ad3bb4901b51a24e1553f9eeb6f1c)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&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=06f41b84901ad3bb4901b51a24e1553f9eeb6f1c&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;06f41b84901ad3bb4901b51a24e1553f9eeb6f1c&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/client.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lib.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="26391" author="hudson" created="Wed, 11 Jan 2012 12:53:27 +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/lustre-master/./arch=i686,build_type=client,distro=el6,ib_stack=inkernel/422/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el6,inkernel #422&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-868&quot; title=&quot;Add early reply and netlatency into the timeout of waiting next replay. &quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-868&quot;&gt;&lt;del&gt;LU-868&lt;/del&gt;&lt;/a&gt; ptlrpc: Fix the timeout for waiting next replay (Revision 06f41b84901ad3bb4901b51a24e1553f9eeb6f1c)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&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=06f41b84901ad3bb4901b51a24e1553f9eeb6f1c&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;06f41b84901ad3bb4901b51a24e1553f9eeb6f1c&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/client.c&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lib.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="26392" author="hudson" created="Wed, 11 Jan 2012 12:54:43 +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/lustre-master/./arch=x86_64,build_type=server,distro=el6,ib_stack=inkernel/422/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el6,inkernel #422&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-868&quot; title=&quot;Add early reply and netlatency into the timeout of waiting next replay. &quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-868&quot;&gt;&lt;del&gt;LU-868&lt;/del&gt;&lt;/a&gt; ptlrpc: Fix the timeout for waiting next replay (Revision 06f41b84901ad3bb4901b51a24e1553f9eeb6f1c)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&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=06f41b84901ad3bb4901b51a24e1553f9eeb6f1c&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;06f41b84901ad3bb4901b51a24e1553f9eeb6f1c&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/client.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="26393" author="hudson" created="Wed, 11 Jan 2012 13:16:14 +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/lustre-master/./arch=i686,build_type=server,distro=el5,ib_stack=ofa/422/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,ofa #422&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-868&quot; title=&quot;Add early reply and netlatency into the timeout of waiting next replay. &quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-868&quot;&gt;&lt;del&gt;LU-868&lt;/del&gt;&lt;/a&gt; ptlrpc: Fix the timeout for waiting next replay (Revision 06f41b84901ad3bb4901b51a24e1553f9eeb6f1c)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&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=06f41b84901ad3bb4901b51a24e1553f9eeb6f1c&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;06f41b84901ad3bb4901b51a24e1553f9eeb6f1c&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/client.c&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lib.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="26394" author="hudson" created="Wed, 11 Jan 2012 13:20: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/lustre-master/./arch=i686,build_type=server,distro=el5,ib_stack=inkernel/422/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,inkernel #422&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-868&quot; title=&quot;Add early reply and netlatency into the timeout of waiting next replay. &quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-868&quot;&gt;&lt;del&gt;LU-868&lt;/del&gt;&lt;/a&gt; ptlrpc: Fix the timeout for waiting next replay (Revision 06f41b84901ad3bb4901b51a24e1553f9eeb6f1c)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&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=06f41b84901ad3bb4901b51a24e1553f9eeb6f1c&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;06f41b84901ad3bb4901b51a24e1553f9eeb6f1c&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/client.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="26395" author="hudson" created="Wed, 11 Jan 2012 13:32: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/lustre-master/./arch=i686,build_type=client,distro=el5,ib_stack=inkernel/422/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,inkernel #422&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-868&quot; title=&quot;Add early reply and netlatency into the timeout of waiting next replay. &quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-868&quot;&gt;&lt;del&gt;LU-868&lt;/del&gt;&lt;/a&gt; ptlrpc: Fix the timeout for waiting next replay (Revision 06f41b84901ad3bb4901b51a24e1553f9eeb6f1c)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&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=06f41b84901ad3bb4901b51a24e1553f9eeb6f1c&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;06f41b84901ad3bb4901b51a24e1553f9eeb6f1c&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/client.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="26396" author="hudson" created="Wed, 11 Jan 2012 13:38:10 +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/lustre-master/./arch=i686,build_type=client,distro=el5,ib_stack=ofa/422/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,ofa #422&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-868&quot; title=&quot;Add early reply and netlatency into the timeout of waiting next replay. &quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-868&quot;&gt;&lt;del&gt;LU-868&lt;/del&gt;&lt;/a&gt; ptlrpc: Fix the timeout for waiting next replay (Revision 06f41b84901ad3bb4901b51a24e1553f9eeb6f1c)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&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=06f41b84901ad3bb4901b51a24e1553f9eeb6f1c&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;06f41b84901ad3bb4901b51a24e1553f9eeb6f1c&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/client.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                    </comments>
                    <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                                                                            <customfield id="customfield_10890" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10390" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hzv7mv:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10090" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>4771</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                </customfields>
    </item>
</channel>
</rss>