<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 02:25:11 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-9324] sanity-pfl test 10 needs to reset the file system default layout</title>
                <link>https://jira.whamcloud.com/browse/LU-9324</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;sanity-pfl test_10 sets the default layout on $MOUNT and does not return the file system to the original state. For users running the Lustre test suites as a sanity check on their file systems, this is an unexpected side effect. We should return the file system to the state it was in before running sanity-pfl.&lt;/p&gt;

&lt;p&gt;From sanity-pfl, the following code in test 10 sets the default layout:&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;        $LFS setstripe -d $MOUNT || error &lt;span class=&quot;code-quote&quot;&gt;&quot;clear root layout&quot;&lt;/span&gt;

	# set root composite layout                                             
	$LFS setstripe -E 2M -c 1 -S 1M -E 16M -c2 -S 2M \
		-E -1 -c 4 -S 4M $MOUNT ||
                error &lt;span class=&quot;code-quote&quot;&gt;&quot;Set root layout failed&quot;&lt;/span&gt;
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Here&apos;s what the file system layout looks like before and after sanity-pfl test 10:&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 getstripe /lustre/scratch
/lustre/scratch
stripe_count:  1 stripe_size:   1048576 stripe_offset: -1
[root@eagle-48vm6 tests]# ./auster -k -v sanity-pfl --only 10
Started at Wed Apr 12 14:54:34 UTC 2017
&#8230;
./auster: completed with rc 0
[root@eagle-48vm6 tests]# lfs getstripe /lustre/scratch
/lustre/scratch
  lcm_layout_gen:  0
  lcm_entry_count: 3
    lcme_id:             N/A
    lcme_flags:          0
    lcme_extent.e_start: 0
    lcme_extent.e_end:   2097152
      stripe_count:  1       stripe_size:   1048576       stripe_offset: -1
    lcme_id:             N/A
    lcme_flags:          0
    lcme_extent.e_start: 2097152
    lcme_extent.e_end:   16777216
      stripe_count:  2       stripe_size:   2097152       stripe_offset: -1
    lcme_id:             N/A
    lcme_flags:          0
    lcme_extent.e_start: 16777216
    lcme_extent.e_end:   EOF
      stripe_count:  4       stripe_size:   4194304       stripe_offset: -1
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</description>
                <environment></environment>
        <key id="45439">LU-9324</key>
            <summary>sanity-pfl test 10 needs to reset the file system default layout</summary>
                <type id="7" iconUrl="https://jira.whamcloud.com/images/icons/issuetypes/task_agile.png">Technical task</type>
                            <parent id="45517">LU-9349</parent>
                                    <priority id="3" iconUrl="https://jira.whamcloud.com/images/icons/priorities/major.svg">Major</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="jamesanunez">James Nunez</reporter>
                        <labels>
                            <label>pfl</label>
                            <label>test</label>
                    </labels>
                <created>Wed, 12 Apr 2017 15:02:21 +0000</created>
                <updated>Wed, 31 Jul 2019 17:14:30 +0000</updated>
                            <resolved>Wed, 7 Mar 2018 18:36:39 +0000</resolved>
                                    <version>Lustre 2.10.0</version>
                                    <fixVersion>Lustre 2.11.0</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>7</watches>
                                                                            <comments>
                            <comment id="191699" author="adilger" created="Wed, 12 Apr 2017 16:52:32 +0000"  >&lt;p&gt;I used to try and keep some tests like sanity.sh clean enough to run on an existing filesystem, but the number of tests that try to reformat the filesystem or make other configuration changes to the filesystem is high, so I don&apos;t know if running&#160;tests on real filesystems&#160;is advisable.&lt;/p&gt;

&lt;p&gt;&#160;&lt;/p&gt;

&lt;p&gt;That said, tests should return the filesystem configuration to the original state, which poses a separate but interesting problem - how does one copy/save/restore a PFL layout? &#160;Before PFL it was enough to store the stripe count and sometimes stripe size, but now this isn&apos;t enough. Should we allow &quot;lfs setstripe&quot; to accept the YAML-formatted layout from &quot;lfs getstripe&quot; to apply to a new file or directory? Some other mechanism to do something similar (e.g. generating command-line args for &quot;lfs setstripe&quot;, which I don&apos;t really like)?&lt;/p&gt;

&lt;p&gt;IMHO, we should also consider a patch to change test-framework to set the default layout to PFL for all tests, make sure that all tests pass, then land this patch. After that, we should consider how to make a PFL layout the default at format time for all new filesystems (i.e. outside of test-framework) since this is the kind of feature that everyone wants, and especially users that don&apos;t even know what it is.&#160;&lt;/p&gt;</comment>
                            <comment id="191712" author="jhammond" created="Wed, 12 Apr 2017 17:34:12 +0000"  >&lt;p&gt;Bobijam or Niu, could one of you take a look at this?&lt;/p&gt;</comment>
                            <comment id="191788" author="gerrit" created="Thu, 13 Apr 2017 02:45:26 +0000"  >&lt;p&gt;James Nunez (james.a.nunez@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/26576&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/26576&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9324&quot; title=&quot;sanity-pfl test 10 needs to reset the file system default layout&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9324&quot;&gt;&lt;del&gt;LU-9324&lt;/del&gt;&lt;/a&gt; test: Enable default file layout in testing&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 30fce57cef946ffcf980c62c6a7d732de503dd07&lt;/p&gt;</comment>
                            <comment id="191791" author="gerrit" created="Thu, 13 Apr 2017 03:42:03 +0000"  >&lt;p&gt;Bobi Jam (bobijam@hotmail.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/26578&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/26578&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9324&quot; title=&quot;sanity-pfl test 10 needs to reset the file system default layout&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9324&quot;&gt;&lt;del&gt;LU-9324&lt;/del&gt;&lt;/a&gt; test: get layout parameters&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: cab6eb227bd348002fba1bdd817a2db3e8bbd190&lt;/p&gt;</comment>
                            <comment id="191815" author="bobijam" created="Thu, 13 Apr 2017 09:01:01 +0000"  >&lt;p&gt;Is it more convenient to have some thing like&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;lfs getstripe --param-file=template_param_file lustre_file_or_dir

&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;and then&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;lfs setstripe --param-file=template_param_file lustre_file_or_dir

&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;than&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;lfs setstripe --copy=lustre_old_file lustre_new_file

&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;?&lt;/p&gt;

&lt;p&gt;User can manually edit the template_param_file to adjust the layout configuration before using it.&lt;/p&gt;</comment>
                            <comment id="191824" author="niu" created="Thu, 13 Apr 2017 11:31:37 +0000"  >&lt;p&gt;Bobi, I think the first two commands should be enough.&lt;br/&gt;
1. &apos;lfs getstripe&apos; to dump layout into a config file; (--dump-layout)&lt;br/&gt;
2. &apos;lfs setstripe&apos; to accept config file as input argument; (--layout-config)&lt;/p&gt;

&lt;p&gt;Given that &apos;lfs getstripe&apos; output is already in YAML format, we may even just redirect the output of &apos;lfs getstripe&apos; into a config file.&lt;/p&gt;</comment>
                            <comment id="192130" author="gerrit" created="Fri, 14 Apr 2017 19:37:45 +0000"  >&lt;p&gt;Bobi Jam (bobijam@hotmail.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/26634&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/26634&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9324&quot; title=&quot;sanity-pfl test 10 needs to reset the file system default layout&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9324&quot;&gt;&lt;del&gt;LU-9324&lt;/del&gt;&lt;/a&gt; test: get layout parameters&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: pfl&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 5a1c12fb6f69dd31601fd6f3b1fcd294cf251532&lt;/p&gt;</comment>
                            <comment id="192410" author="adilger" created="Tue, 18 Apr 2017 06:47:00 +0000"  >&lt;p&gt;Sorry, I didn&apos;t see comments here.&lt;/p&gt;

&lt;p&gt;I agree that since &quot;&lt;tt&gt;lfs getstripe&lt;/tt&gt;&quot; for composite files already produces YAML output, it would be useful to save this to a file, allow it to be edited, then use it as a template for a new file.  There would need to be a new option like &quot;&lt;tt&gt;lfs getstripe --yaml&lt;/tt&gt;&quot; (already default for composite files) that also dumps non-composite files in the same YAML format so that this works with all kinds of files.  There would be some work needed for parsing the YAML input into a struct llapi_layout.&lt;/p&gt;

&lt;p&gt;It would still be useful to allow &quot;&lt;tt&gt;lfs setstripe --copy=/path/to/template/file &lt;span class=&quot;error&quot;&gt;&amp;#91;other options&amp;#93;&lt;/span&gt; /path/to/new/file&lt;/tt&gt;&quot; so that there is not a need to store the layout into a temporary file and edit it by the user.  This would only get the layout from the existing file, optionally modify it, then use it as the template for the new file while ignoring all per-file details of the instantiated file (FID, object IDs, stripe indices), but keeping the generic parts (component count, stripe counts, stripe sizes, pools).&lt;/p&gt;</comment>
                            <comment id="192497" author="gerrit" created="Tue, 18 Apr 2017 14:38:36 +0000"  >&lt;p&gt;Bobi Jam (bobijam@hotmail.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/26708&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/26708&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9324&quot; title=&quot;sanity-pfl test 10 needs to reset the file system default layout&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9324&quot;&gt;&lt;del&gt;LU-9324&lt;/del&gt;&lt;/a&gt; lfs: output stripe info in YAML format&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: c9e8576dce58837227bc35f468df6c7e2937f7a3&lt;/p&gt;</comment>
                            <comment id="192744" author="gerrit" created="Wed, 19 Apr 2017 21:48:21 +0000"  >&lt;p&gt;Andreas Dilger (andreas.dilger@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/26634/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/26634/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9324&quot; title=&quot;sanity-pfl test 10 needs to reset the file system default layout&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9324&quot;&gt;&lt;del&gt;LU-9324&lt;/del&gt;&lt;/a&gt; test: get layout parameters&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: pfl&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 261406b2e2f9c52752067cf4040477152faac6f2&lt;/p&gt;</comment>
                            <comment id="193510" author="gerrit" created="Wed, 26 Apr 2017 03:38:09 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/26578/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/26578/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9324&quot; title=&quot;sanity-pfl test 10 needs to reset the file system default layout&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9324&quot;&gt;&lt;del&gt;LU-9324&lt;/del&gt;&lt;/a&gt; test: get layout parameters&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 183f0a19969ce1fc10b8bf5156beaa1fc29bbd0b&lt;/p&gt;</comment>
                            <comment id="193752" author="gerrit" created="Thu, 27 Apr 2017 11:50:48 +0000"  >&lt;p&gt;Bobi Jam (bobijam@hotmail.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/26859&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/26859&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9324&quot; title=&quot;sanity-pfl test 10 needs to reset the file system default layout&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9324&quot;&gt;&lt;del&gt;LU-9324&lt;/del&gt;&lt;/a&gt; lnet: move cyaml.h under lnet/include/&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: adc09ec2bcb8222072e6ed0d1162f8d932f81fe1&lt;/p&gt;</comment>
                            <comment id="193753" author="gerrit" created="Thu, 27 Apr 2017 11:50:50 +0000"  >&lt;p&gt;Bobi Jam (bobijam@hotmail.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/26860&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/26860&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9324&quot; title=&quot;sanity-pfl test 10 needs to reset the file system default layout&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9324&quot;&gt;&lt;del&gt;LU-9324&lt;/del&gt;&lt;/a&gt; lfs: add setstripe --yaml=template parameter&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: e6a75228d8faf5efd53b3cca41b7a9768fc1f7a1&lt;/p&gt;</comment>
                            <comment id="193869" author="gerrit" created="Fri, 28 Apr 2017 08:31:16 +0000"  >&lt;p&gt;Bobi Jam (bobijam@hotmail.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/26879&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/26879&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9324&quot; title=&quot;sanity-pfl test 10 needs to reset the file system default layout&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9324&quot;&gt;&lt;del&gt;LU-9324&lt;/del&gt;&lt;/a&gt; lfs: add setstripe --copy=lustre_file_or_dir parameter&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: e83e119ece8eacb59fad5b0c33ff4683bf319765&lt;/p&gt;</comment>
                            <comment id="195445" author="gerrit" created="Thu, 11 May 2017 10:53:45 +0000"  >&lt;p&gt;Andreas Dilger (andreas.dilger@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/27066&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27066&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9324&quot; title=&quot;sanity-pfl test 10 needs to reset the file system default layout&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9324&quot;&gt;&lt;del&gt;LU-9324&lt;/del&gt;&lt;/a&gt; doc: update lfs setstripe man page and usage&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 9dd6ce71fc9f910396b2d437ace87bbe37f860bf&lt;/p&gt;</comment>
                            <comment id="195615" author="gerrit" created="Fri, 12 May 2017 05:06:17 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/26708/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/26708/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9324&quot; title=&quot;sanity-pfl test 10 needs to reset the file system default layout&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9324&quot;&gt;&lt;del&gt;LU-9324&lt;/del&gt;&lt;/a&gt; lfs: output stripe info in YAML format&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 8bbbd4ea4f10a6d907ff0885d6c8334dacd748a6&lt;/p&gt;</comment>
                            <comment id="195618" author="gerrit" created="Fri, 12 May 2017 05:06:30 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/26859/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/26859/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9324&quot; title=&quot;sanity-pfl test 10 needs to reset the file system default layout&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9324&quot;&gt;&lt;del&gt;LU-9324&lt;/del&gt;&lt;/a&gt; lnet: move cyaml.h under lnet/include/&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 9b8eb394ab9164066115596d26786bce80f07bd8&lt;/p&gt;</comment>
                            <comment id="222182" author="gerrit" created="Sat, 3 Mar 2018 04:28:13 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/26860/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/26860/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9324&quot; title=&quot;sanity-pfl test 10 needs to reset the file system default layout&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9324&quot;&gt;&lt;del&gt;LU-9324&lt;/del&gt;&lt;/a&gt; lfs: add setstripe --yaml=template parameter&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 1a3cce7bb6c657454f87c33ef794805f651e5395&lt;/p&gt;</comment>
                            <comment id="222598" author="gerrit" created="Tue, 6 Mar 2018 19:13:30 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/26879/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/26879/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9324&quot; title=&quot;sanity-pfl test 10 needs to reset the file system default layout&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9324&quot;&gt;&lt;del&gt;LU-9324&lt;/del&gt;&lt;/a&gt; lfs: add setstripe --copy=lustre_file_or_dir parameter&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 156883002a78d23645fa01931ae5e39a570fefbf&lt;/p&gt;</comment>
                            <comment id="222725" author="pjones" created="Wed, 7 Mar 2018 18:36:39 +0000"  >&lt;p&gt;Several patches landed for 2.11. Residual work will be tracked under a new ticket&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10011">
                    <name>Related</name>
                                            <outwardlinks description="is related to ">
                                        <issuelink>
            <issuekey id="42916">LU-8998</issuekey>
        </issuelink>
                            </outwardlinks>
                                                                <inwardlinks description="is related to">
                                        <issuelink>
            <issuekey id="49654">LU-10353</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="34363">LU-7723</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="47888">LU-9897</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="46010">LU-9486</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="54758">LU-11918</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </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|hzz9wv:</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>
                                                                                                                                                                                                                                                                                                                                                                                                                </customfields>
    </item>
</channel>
</rss>