<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 01:07:34 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-492] Test failure on sanity-quota test_29</title>
                <link>https://jira.whamcloud.com/browse/LU-492</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;This issue was created by maloo for bobijam &amp;lt;bobijam@whamcloud.com&amp;gt;&lt;/p&gt;

&lt;p&gt;This issue relates to the following test suite run: &lt;a href=&quot;https://maloo.whamcloud.com/test_sets/ba4bfe42-a856-11e0-bd2a-52540025f9af&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://maloo.whamcloud.com/test_sets/ba4bfe42-a856-11e0-bd2a-52540025f9af&lt;/a&gt;.&lt;/p&gt;</description>
                <environment></environment>
        <key id="11304">LU-492</key>
            <summary>Test failure on sanity-quota test_29</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="bobijam">Zhenyu Xu</assignee>
                                    <reporter username="maloo">Maloo</reporter>
                        <labels>
                    </labels>
                <created>Thu, 7 Jul 2011 02:37:09 +0000</created>
                <updated>Mon, 23 Apr 2012 21:31:12 +0000</updated>
                            <resolved>Fri, 8 Jul 2011 14:07:36 +0000</resolved>
                                                    <fixVersion>Lustre 2.1.0</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>4</watches>
                                                                            <comments>
                            <comment id="17357" author="bobijam" created="Thu, 7 Jul 2011 03:56:29 +0000"  >&lt;p&gt;the test set client at_max to 10 seconds and sleeps 20 seconds expecting quotactl rpc timeout and exit lfs setquota command.&lt;/p&gt;

&lt;p&gt;but from client log&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;21:41:13:Lustre: 15526:0:(client.c:1775:ptlrpc_expire_one_request()) @@@ Request x1373648715776149 sent from lustre-MDT0000-mdc-ffff81006251e400 to NID 10.10.4.72@tcp has timed out for slow reply: &lt;span class=&quot;error&quot;&gt;&amp;#91;sent 1310013628&amp;#93;&lt;/span&gt; &lt;span class=&quot;error&quot;&gt;&amp;#91;real_sent 1310013628&amp;#93;&lt;/span&gt; &lt;span class=&quot;error&quot;&gt;&amp;#91;current 1310013672&amp;#93;&lt;/span&gt; &lt;span class=&quot;error&quot;&gt;&amp;#91;deadline 44s&amp;#93;&lt;/span&gt; &lt;span class=&quot;error&quot;&gt;&amp;#91;delay 0s&amp;#93;&lt;/span&gt;  req@ffff810049e06c00 x1373648715776149/t0(0) o-1-&amp;gt;lustre-MDT0000_UUID@10.10.4.72@tcp:12/10 lens 304/304 e 0 to 1 dl 1310013672 ref 2 fl Rpc:XN/ffffffff/ffffffff rc 0/-1&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;which shows the rpc is timed out for 44 seconds. This causes the failure.&lt;/p&gt;</comment>
                            <comment id="17359" author="bobijam" created="Thu, 7 Jul 2011 05:47:02 +0000"  >&lt;p&gt;client set request deadline in ptl_send_rpc()&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;        /* We give the server rq_timeout secs to process the req, and
           add the network latency for our local timeout. */
        request-&amp;gt;rq_deadline = request-&amp;gt;rq_sent + request-&amp;gt;rq_timeout +
                ptlrpc_at_get_net_latency(request);
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;where rq_timeout is determined by server&apos;s request process time, in ptlrpc_at_set_req_timeout()&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;                at = &amp;amp;req-&amp;gt;rq_import-&amp;gt;imp_at;
                idx = import_at_get_index(req-&amp;gt;rq_import,
                                          req-&amp;gt;rq_request_portal);
                serv_est = at_get(&amp;amp;at-&amp;gt;iat_service_estimate[idx]);
                req-&amp;gt;rq_timeout = at_est2timeout(serv_est);
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;and at_est2timeout()&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;        /* add an arbitrary minimum: 125% +5 sec */
        return (val + (val &amp;gt;&amp;gt; 2) + 5);
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;so the test should sleep (10*1.25+5) + 10 ~= 28 seconds&lt;/p&gt;
</comment>
                            <comment id="17363" author="niu" created="Thu, 7 Jul 2011 06:27:30 +0000"  >&lt;p&gt;Seems the test is not we expected, the script set fail_loc to OBD_FAIL_MDS_QUOTACTL_NET, but I didn&apos;t find where we check the OBD_FAIL_MDS_QUOTACTL_NET in lustre code, it might be removed by someone mistakenly?&lt;/p&gt;</comment>
                            <comment id="17365" author="bobijam" created="Thu, 7 Jul 2011 06:29:22 +0000"  >&lt;p&gt;patch tracking at &lt;a href=&quot;http://review.whamcloud.com/1069&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/1069&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="17367" author="bobijam" created="Thu, 7 Jul 2011 06:37:21 +0000"  >&lt;p&gt;niu,&lt;/p&gt;

&lt;p&gt;please check out mdt_mds_ops[] and in it we defines&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;DEF_MDT_HNDL_F(0,                         QUOTACTL,     mdt_quotactl_handle)
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;it will be expanded to &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;DEF_HNDL(MDS, GETATTR, _NET, 0, QUOTACTL, mdt_quotactl_handle, &amp;amp;RQF_MDS_QUOTACTL)&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;and further expanded to &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;[MDS_QUOTACTL - MDS_QUOTACTL_GETATTR] = {                          \
        .mh_name    = QUOTACTL,                                             \
        .mh_fail_id = OBD_FAIL_MDS_QUOTACTL_NET,       \
        .mh_opc     = MDS_QUOTACTL,                              \
        .mh_flags   = 0,                                            \
        .mh_act     = mdt_quotactl_handle,                                               \
        .mh_fmt     = &amp;amp;RQF_MDS_QUOTACTL                                               \
}
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;and in mdt_req_handle(), the fail_loc is checked as follows&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;        if (OBD_FAIL_CHECK_ORSET(h-&amp;gt;mh_fail_id, OBD_FAIL_ONCE))
                RETURN(0);
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</comment>
                            <comment id="17368" author="niu" created="Thu, 7 Jul 2011 06:40:20 +0000"  >&lt;p&gt;ah, I see, thank you.&lt;/p&gt;</comment>
                            <comment id="17462" author="hudson" created="Fri, 8 Jul 2011 14:05:42 +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/197/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,inkernel #197&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-492&quot; title=&quot;Test failure on sanity-quota test_29&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-492&quot;&gt;&lt;del&gt;LU-492&lt;/del&gt;&lt;/a&gt; fix sanity-quota test_29&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=ef803602bf2ee9ed6aabb09aafe23fe036e7b8b2&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;ef803602bf2ee9ed6aabb09aafe23fe036e7b8b2&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/tests/sanity-quota.sh&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="17464" author="pjones" created="Fri, 8 Jul 2011 14:07:36 +0000"  >&lt;p&gt;Patch landed for 2.1&lt;/p&gt;</comment>
                            <comment id="17466" author="hudson" created="Fri, 8 Jul 2011 14:11:10 +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/197/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,ofa #197&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-492&quot; title=&quot;Test failure on sanity-quota test_29&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-492&quot;&gt;&lt;del&gt;LU-492&lt;/del&gt;&lt;/a&gt; fix sanity-quota test_29&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=ef803602bf2ee9ed6aabb09aafe23fe036e7b8b2&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;ef803602bf2ee9ed6aabb09aafe23fe036e7b8b2&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/tests/sanity-quota.sh&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="17468" author="hudson" created="Fri, 8 Jul 2011 14:11: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=i686,build_type=client,distro=el6,ib_stack=inkernel/197/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el6,inkernel #197&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-492&quot; title=&quot;Test failure on sanity-quota test_29&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-492&quot;&gt;&lt;del&gt;LU-492&lt;/del&gt;&lt;/a&gt; fix sanity-quota test_29&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=ef803602bf2ee9ed6aabb09aafe23fe036e7b8b2&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;ef803602bf2ee9ed6aabb09aafe23fe036e7b8b2&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/tests/sanity-quota.sh&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="17470" author="hudson" created="Fri, 8 Jul 2011 14:13: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=x86_64,build_type=server,distro=el6,ib_stack=inkernel/197/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el6,inkernel #197&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-492&quot; title=&quot;Test failure on sanity-quota test_29&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-492&quot;&gt;&lt;del&gt;LU-492&lt;/del&gt;&lt;/a&gt; fix sanity-quota test_29&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=ef803602bf2ee9ed6aabb09aafe23fe036e7b8b2&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;ef803602bf2ee9ed6aabb09aafe23fe036e7b8b2&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/tests/sanity-quota.sh&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="17472" author="hudson" created="Fri, 8 Jul 2011 14:15:26 +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=sles11,ib_stack=inkernel/197/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,sles11,inkernel #197&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-492&quot; title=&quot;Test failure on sanity-quota test_29&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-492&quot;&gt;&lt;del&gt;LU-492&lt;/del&gt;&lt;/a&gt; fix sanity-quota test_29&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=ef803602bf2ee9ed6aabb09aafe23fe036e7b8b2&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;ef803602bf2ee9ed6aabb09aafe23fe036e7b8b2&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/tests/sanity-quota.sh&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="17474" author="hudson" created="Fri, 8 Jul 2011 14:17:30 +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/197/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el6,inkernel #197&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-492&quot; title=&quot;Test failure on sanity-quota test_29&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-492&quot;&gt;&lt;del&gt;LU-492&lt;/del&gt;&lt;/a&gt; fix sanity-quota test_29&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=ef803602bf2ee9ed6aabb09aafe23fe036e7b8b2&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;ef803602bf2ee9ed6aabb09aafe23fe036e7b8b2&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/tests/sanity-quota.sh&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="17476" author="hudson" created="Fri, 8 Jul 2011 14:17:39 +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/197/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,inkernel #197&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-492&quot; title=&quot;Test failure on sanity-quota test_29&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-492&quot;&gt;&lt;del&gt;LU-492&lt;/del&gt;&lt;/a&gt; fix sanity-quota test_29&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=ef803602bf2ee9ed6aabb09aafe23fe036e7b8b2&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;ef803602bf2ee9ed6aabb09aafe23fe036e7b8b2&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/tests/sanity-quota.sh&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="17478" author="hudson" created="Fri, 8 Jul 2011 14:18:11 +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/197/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,inkernel #197&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-492&quot; title=&quot;Test failure on sanity-quota test_29&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-492&quot;&gt;&lt;del&gt;LU-492&lt;/del&gt;&lt;/a&gt; fix sanity-quota test_29&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=ef803602bf2ee9ed6aabb09aafe23fe036e7b8b2&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;ef803602bf2ee9ed6aabb09aafe23fe036e7b8b2&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/tests/sanity-quota.sh&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="17480" author="hudson" created="Fri, 8 Jul 2011 14:18: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=i686,build_type=client,distro=el5,ib_stack=ofa/197/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,ofa #197&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-492&quot; title=&quot;Test failure on sanity-quota test_29&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-492&quot;&gt;&lt;del&gt;LU-492&lt;/del&gt;&lt;/a&gt; fix sanity-quota test_29&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=ef803602bf2ee9ed6aabb09aafe23fe036e7b8b2&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;ef803602bf2ee9ed6aabb09aafe23fe036e7b8b2&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/tests/sanity-quota.sh&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="17482" author="hudson" created="Fri, 8 Jul 2011 14:21:32 +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/197/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,ubuntu1004,inkernel #197&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-492&quot; title=&quot;Test failure on sanity-quota test_29&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-492&quot;&gt;&lt;del&gt;LU-492&lt;/del&gt;&lt;/a&gt; fix sanity-quota test_29&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=ef803602bf2ee9ed6aabb09aafe23fe036e7b8b2&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;ef803602bf2ee9ed6aabb09aafe23fe036e7b8b2&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/tests/sanity-quota.sh&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="17485" author="hudson" created="Fri, 8 Jul 2011 14:23:50 +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/197/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el6,inkernel #197&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-492&quot; title=&quot;Test failure on sanity-quota test_29&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-492&quot;&gt;&lt;del&gt;LU-492&lt;/del&gt;&lt;/a&gt; fix sanity-quota test_29&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=ef803602bf2ee9ed6aabb09aafe23fe036e7b8b2&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;ef803602bf2ee9ed6aabb09aafe23fe036e7b8b2&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/tests/sanity-quota.sh&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="17487" author="hudson" created="Fri, 8 Jul 2011 14:40:48 +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/197/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,inkernel #197&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-492&quot; title=&quot;Test failure on sanity-quota test_29&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-492&quot;&gt;&lt;del&gt;LU-492&lt;/del&gt;&lt;/a&gt; fix sanity-quota test_29&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=ef803602bf2ee9ed6aabb09aafe23fe036e7b8b2&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;ef803602bf2ee9ed6aabb09aafe23fe036e7b8b2&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/tests/sanity-quota.sh&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="17489" author="hudson" created="Fri, 8 Jul 2011 14:45:04 +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/197/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,ofa #197&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-492&quot; title=&quot;Test failure on sanity-quota test_29&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-492&quot;&gt;&lt;del&gt;LU-492&lt;/del&gt;&lt;/a&gt; fix sanity-quota test_29&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=ef803602bf2ee9ed6aabb09aafe23fe036e7b8b2&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;ef803602bf2ee9ed6aabb09aafe23fe036e7b8b2&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/tests/sanity-quota.sh&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="17494" author="hudson" created="Fri, 8 Jul 2011 15:28: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=x86_64,build_type=server,distro=el5,ib_stack=ofa/197/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,ofa #197&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-492&quot; title=&quot;Test failure on sanity-quota test_29&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-492&quot;&gt;&lt;del&gt;LU-492&lt;/del&gt;&lt;/a&gt; fix sanity-quota test_29&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=ef803602bf2ee9ed6aabb09aafe23fe036e7b8b2&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;ef803602bf2ee9ed6aabb09aafe23fe036e7b8b2&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/tests/sanity-quota.sh&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="35408" author="jaylan" created="Mon, 23 Apr 2012 21:27:55 +0000"  >&lt;p&gt;I am running 2.1.1&lt;br/&gt;
(see &lt;a href=&quot;https://github.com/jlan/lustre-nas/tree/nas-2.1.1&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://github.com/jlan/lustre-nas/tree/nas-2.1.1&lt;/a&gt;)&lt;br/&gt;
at both server and client ends. It contains the fix of this ticket.&lt;/p&gt;

&lt;p&gt;However, it consistenly failed in my 2.1.1 server + 2.1.1 client test environment.&lt;/p&gt;

&lt;p&gt;test_29()&lt;br/&gt;
{&lt;br/&gt;
    ...&lt;/p&gt;
&lt;ol&gt;
	&lt;li&gt;actually send a RPC to make service at_current confined within at_max&lt;br/&gt;
$LFS setquota -u $TSTUSR -b 0 -B $BLK_LIMIT -i 0 -I 0 $DIR || error &quot;should succeed&quot;&lt;br/&gt;
    &amp;lt;=== succeeded&lt;/li&gt;
&lt;/ol&gt;


&lt;p&gt;#define OBD_FAIL_MDS_QUOTACTL_NET 0x12e&lt;br/&gt;
lustre_fail mds 0x12e&lt;br/&gt;
   &amp;lt;==== fine&lt;/p&gt;

&lt;p&gt;$LFS setquota -u $TSTUSR -b 0 -B $BLK_LIMIT -i 0 -I 0 $DIR &amp;amp; pid=$!&lt;br/&gt;
   &amp;lt;==== &quot;setquota failed: Transport endpoint is not connected&quot;&lt;/p&gt;

&lt;p&gt;echo &quot;sleeping for 10 * 1.25 + 5 + 10 seconds&quot;&lt;br/&gt;
sleep 28&lt;br/&gt;
ps -p $pid &amp;amp;&amp;amp; error &quot;lfs hadn&apos;t finished by timeout&quot;&lt;br/&gt;
   &amp;lt;==== the process still alive. Die later due to timeout.&lt;br/&gt;
...&lt;/p&gt;


&lt;p&gt;Is &quot;setquota failed: Transport endpoint is not connected&quot; error expected?&lt;br/&gt;
Was that the result of &quot;lustre_fail mds 0x12e&quot;?&lt;/p&gt;

&lt;p&gt;I tried a &quot;sleep 40&quot; (instead of &quot;sleep 28&quot; after that, and the lfs &lt;br/&gt;
command timed out before the check and the test passed. It seems&lt;br/&gt;
the sleep formula &quot;10 * 1.25 + 5 + 10 seconds&quot; is not long enough?&lt;/p&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|hzv8un:</customfieldvalue>

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