<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 03:30:53 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-16894] The MDS should not limit the stripe count for a conflicting stripe offset and pool name parameters</title>
                <link>https://jira.whamcloud.com/browse/LU-16894</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;When a user specified stripe offset not matching the OST index of the pool. The MDS will not set the pool name in the file layout (&lt;a href=&quot;https://jira.whamcloud.com/browse/LU-15658&quot; title=&quot;Interop sanity-flr test_0b test_0c test_0e test_0f: verify pool failed != flash&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-15658&quot;&gt;&lt;del&gt;LU-15658&lt;/del&gt;&lt;/a&gt;). But it will  still limit the stripe count to the number of OST inside the pool, this is a bug.&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;lfs pool_list lustre.pool1
Pool: lustre.pool1
lustre-OST0000_UUID

# set the pool1 on a dir
lfs setstripe -p pool1 testdir/
# conflicting stripe offset parameter -&amp;gt; ost 1 is not in pool1
lfs setstripe  -c 2 -i 1 testdir/test1
# not conflicting stripe offset parameter -&amp;gt; ost 0 is not in pool1
lfs setstripe  -c 2 -i 0 testdir/test2

lfs getstripe testdir/test*
testdir/test1
lmm_stripe_count:  1
lmm_stripe_size:   1048576
lmm_pattern:       raid0
lmm_layout_gen:    0
lmm_stripe_offset: 1
        obdidx           objid           objid           group
             1               3            0x3      0x280000400

testdir/test2
lmm_stripe_count:  1
lmm_stripe_size:   1048576
lmm_pattern:       raid0
lmm_layout_gen:    0
lmm_stripe_offset: 0
lmm_pool:          pool1
        obdidx           objid           objid           group
             0               3            0x3      0x240000400
# the stripe count of test1 should be 2 because no pool is set
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</description>
                <environment></environment>
        <key id="76563">LU-16894</key>
            <summary>The MDS should not limit the stripe count for a conflicting stripe offset and pool name parameters</summary>
                <type id="1" iconUrl="https://jira.whamcloud.com/secure/viewavatar?size=xsmall&amp;avatarId=11303&amp;avatarType=issuetype">Bug</type>
                                            <priority id="4" iconUrl="https://jira.whamcloud.com/images/icons/priorities/minor.svg">Minor</priority>
                        <status id="5" iconUrl="https://jira.whamcloud.com/images/icons/statuses/resolved.png" description="A resolution has been taken, and it is awaiting verification by reporter. From here issues are either reopened, or are closed.">Resolved</status>
                    <statusCategory id="3" key="done" colorName="success"/>
                                    <resolution id="1">Fixed</resolution>
                                        <assignee username="eaujames">Etienne Aujames</assignee>
                                    <reporter username="eaujames">Etienne Aujames</reporter>
                        <labels>
                    </labels>
                <created>Wed, 14 Jun 2023 07:49:13 +0000</created>
                <updated>Fri, 30 Jun 2023 20:14:12 +0000</updated>
                            <resolved>Wed, 28 Jun 2023 23:19:08 +0000</resolved>
                                    <version>Lustre 2.16.0</version>
                                    <fixVersion>Lustre 2.16.0</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>2</watches>
                                                                            <comments>
                            <comment id="375362" author="gerrit" created="Wed, 14 Jun 2023 08:19:01 +0000"  >&lt;p&gt;&quot;Etienne AUJAMES &amp;lt;eaujames@ddn.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/51314&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/51314&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16894&quot; title=&quot;The MDS should not limit the stripe count for a conflicting stripe offset and pool name parameters&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16894&quot;&gt;&lt;del&gt;LU-16894&lt;/del&gt;&lt;/a&gt; lod: fix stripe_count limit in lod_qos_set_pool&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 7bc94f5742f072f97ca433a90d22cbd59c1e6576&lt;/p&gt;</comment>
                            <comment id="375363" author="eaujames" created="Wed, 14 Jun 2023 08:20:31 +0000"  >&lt;p&gt;After the patch:&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;[root@dev lustre]# lfs getstripe testdir/test*                  
testdir/test1
lmm_stripe_count:  2
lmm_stripe_size:   1048576
lmm_pattern:       raid0
lmm_layout_gen:    0
lmm_stripe_offset: 1
        obdidx           objid           objid           group
             1               2            0x2      0x280000400
             0               2            0x2      0x240000400

testdir/test2
lmm_stripe_count:  1
lmm_stripe_size:   1048576
lmm_pattern:       raid0
lmm_layout_gen:    0
lmm_stripe_offset: 0
lmm_pool:          pool1
        obdidx           objid           objid           group
             0               3            0x3      0x240000400
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</comment>
                            <comment id="376808" author="gerrit" created="Wed, 28 Jun 2023 21:49:18 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/51314/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/51314/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16894&quot; title=&quot;The MDS should not limit the stripe count for a conflicting stripe offset and pool name parameters&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16894&quot;&gt;&lt;del&gt;LU-16894&lt;/del&gt;&lt;/a&gt; lod: fix stripe_count limit in lod_qos_set_pool&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: d6df160877cda3ff1e0b3ce5c4df46fa17e1468a&lt;/p&gt;</comment>
                            <comment id="376834" author="pjones" created="Wed, 28 Jun 2023 23:19:08 +0000"  >&lt;p&gt;Landed for 2.16&lt;/p&gt;</comment>
                            <comment id="377144" author="gerrit" created="Fri, 30 Jun 2023 20:14:12 +0000"  >&lt;p&gt;&quot;Etienne AUJAMES &amp;lt;eaujames@ddn.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/51527&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/51527&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16894&quot; title=&quot;The MDS should not limit the stripe count for a conflicting stripe offset and pool name parameters&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16894&quot;&gt;&lt;del&gt;LU-16894&lt;/del&gt;&lt;/a&gt; lod: fix stripe_count limit in lod_qos_set_pool&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: b2_15&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: d1d20040a7dabbdf6bd8c36ca5b5eb5810f9e2d7&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10011">
                    <name>Related</name>
                                            <outwardlinks description="is related to ">
                                        <issuelink>
            <issuekey id="69171">LU-15658</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|i03o0f:</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>