<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 02:25:43 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-9383] ost-pools test_24: Stripe count -1 not on /mnt/lustre/d24.ost-pools/dir4/f24.ost-pools0:2</title>
                <link>https://jira.whamcloud.com/browse/LU-9383</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;This issue was created by maloo for John Hammond &amp;lt;john.hammond@intel.com&amp;gt;&lt;/p&gt;

&lt;p&gt;This issue relates to the following test suite run: &lt;a href=&quot;https://testing.hpdd.intel.com/test_sets/7cf06cee-260f-11e7-9de9-5254006e85c2&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://testing.hpdd.intel.com/test_sets/7cf06cee-260f-11e7-9de9-5254006e85c2&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;The sub-test test_24 failed with the following error:&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;Stripe count -1 not on /mnt/lustre/d24.ost-pools/dir4/f24.ost-pools0:2
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;It looks like /.../dir4 is inheriting lov stripe count -1 from the FS root and the test session has OSTCOUNT=2 so the file is created with the correct stripe count but the subtest is checking that -1 == 2 which fails.&lt;/p&gt;

&lt;p&gt;Info required for matching: ost-pools 24&lt;/p&gt;</description>
                <environment></environment>
        <key id="45644">LU-9383</key>
            <summary>ost-pools test_24: Stripe count -1 not on /mnt/lustre/d24.ost-pools/dir4/f24.ost-pools0:2</summary>
                <type id="1" iconUrl="https://jira.whamcloud.com/secure/viewavatar?size=xsmall&amp;avatarId=11303&amp;avatarType=issuetype">Bug</type>
                                            <priority id="2" iconUrl="https://jira.whamcloud.com/images/icons/priorities/critical.svg">Critical</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="jhammond">John Hammond</assignee>
                                    <reporter username="maloo">Maloo</reporter>
                        <labels>
                            <label>easy</label>
                    </labels>
                <created>Fri, 21 Apr 2017 14:07:38 +0000</created>
                <updated>Tue, 2 May 2017 22:55:58 +0000</updated>
                            <resolved>Sat, 22 Apr 2017 12:21:59 +0000</resolved>
                                                    <fixVersion>Lustre 2.10.0</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>5</watches>
                                                                            <comments>
                            <comment id="193011" author="jhammond" created="Fri, 21 Apr 2017 14:11:06 +0000"  >&lt;p&gt;Probably introduced by the following change to sanityn.sh:&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;commit 8b8bc6eee05758cec346f1f9aeed92f3334d8cf3
Author:     Ashish Purkar &amp;lt;ashish.purkar@seagate.com&amp;gt;
AuthorDate: Thu Feb 25 20:55:47 2016 -0800
Commit:     Oleg Drokin &amp;lt;oleg.drokin@intel.com&amp;gt;
CommitDate: Wed Apr 19 04:45:34 2017 +0000

    LU-7819 tests: fix checkfiemap for stripecount &amp;gt; 1
    
    If sanityn test_71 is ran with stripecount &amp;gt; 1, it fails
    with &quot;error while ioctl 95&quot; i.e. EOPNOTSUPP.
    
    FIEMAP_FLAG_DEVICE_ORDER flag must be set while issuing
    FS_IOC_FIEMAP ioctl.
    
    New test case 71b to check fiemap for stripe count &amp;gt; 1
    Renamed original test_71 to 71a

+test_71b() {
+       local server_version=$(lustre_version_code $SINGLEMDS)
+
+       [[ $server_version -lt $(version_code 2.1.6) ]] &amp;amp;&amp;amp;
+               skip &quot;Need MDS version at least 2.1.6&quot; &amp;amp;&amp;amp; return
+
+       # Patch not applied to 2.2 and 2.3 branches
+       [[ $server_version -ge $(version_code 2.2.0) ]] &amp;amp;&amp;amp;
+       [[ $server_version -lt $(version_code 2.4.0) ]] &amp;amp;&amp;amp;
+               skip &quot;Need MDS version earlier than 2.2.0 or at least 2.4.0&quot; &amp;amp;&amp;amp;
+                       return
+       [[ $OSTCOUNT -ge 2 ]] || { skip &quot;need at least 2 osts&quot;; return; }
+
+       checkfiemap --test ||
+               { skip &quot;error $?: checkfiemap failed&quot; &amp;amp;&amp;amp; return; }
+
+       $LFS setstripe -c -1 $DIR1 || error &quot;setstripe failed&quot;
+       dd if=/dev/urandom of=$DIR1/$tfile bs=40K count=1
+       [ &quot;$(facet_fstype ost$(($($GETSTRIPE -i $DIR1/$tfile) + 1)))&quot; = \
+               &quot;zfs&quot; ] &amp;amp;&amp;amp;
+               skip &quot;ORI-366/LU-1941: FIEMAP unimplemented on ZFS&quot; &amp;amp;&amp;amp; return 0
+       checkfiemap $DIR1/$tfile 40960 || error &quot;checkfiemap failed&quot;
+}
+run_test 71b &quot;check fiemap support for stripecount &amp;gt; 1&quot;
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;This subtest should be using a subdir of the root.&lt;/p&gt;</comment>
                            <comment id="193014" author="gerrit" created="Fri, 21 Apr 2017 14:17:58 +0000"  >&lt;p&gt;John L. Hammond (john.hammond@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/26771&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/26771&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9383&quot; title=&quot;ost-pools test_24: Stripe count -1 not on /mnt/lustre/d24.ost-pools/dir4/f24.ost-pools0:2&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9383&quot;&gt;&lt;del&gt;LU-9383&lt;/del&gt;&lt;/a&gt; test: use a subdir in sanityn test_71b()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 6f4aaca267d1f6613dc88356c6b03b24e2958902&lt;/p&gt;</comment>
                            <comment id="193066" author="bogl" created="Fri, 21 Apr 2017 19:03:07 +0000"  >&lt;p&gt;another on master:&lt;br/&gt;
&lt;a href=&quot;https://testing.hpdd.intel.com/test_sets/4304c198-26ae-11e7-b742-5254006e85c2&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://testing.hpdd.intel.com/test_sets/4304c198-26ae-11e7-b742-5254006e85c2&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="193099" author="gerrit" created="Sat, 22 Apr 2017 01:10:21 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/26771/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/26771/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9383&quot; title=&quot;ost-pools test_24: Stripe count -1 not on /mnt/lustre/d24.ost-pools/dir4/f24.ost-pools0:2&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9383&quot;&gt;&lt;del&gt;LU-9383&lt;/del&gt;&lt;/a&gt; test: use a subdir in sanityn test_71b()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 2870ed7687d40520f1d94b0e7d66507450a6a506&lt;/p&gt;</comment>
                            <comment id="193106" author="pjones" created="Sat, 22 Apr 2017 12:21:59 +0000"  >&lt;p&gt;Landed for 2.10&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10011">
                    <name>Related</name>
                                            <outwardlinks description="is related to ">
                                        <issuelink>
            <issuekey id="34992">LU-7819</issuekey>
        </issuelink>
                            </outwardlinks>
                                                        </issuelinktype>
                    </issuelinks>
                <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                                                                            <customfield id="customfield_10890" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10390" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hzzawf:</customfieldvalue>

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

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