<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 02:46:30 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-11739] Don&apos;t inherit default layout from root for new subdirectories</title>
                <link>https://jira.whamcloud.com/browse/LU-11739</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;There is no need to inherit the default directory layout from the root directory when subdirectories are created therein.  This consumes xattr space on the subdirectories, and makes it more complex to change the filesystem default layout in the future.&lt;/p&gt;

&lt;p&gt;Instead, it should be possible to check if the parent directory is the root directory and not copy the default layout xattr to the new subdirectory.&lt;/p&gt;</description>
                <environment></environment>
        <key id="54212">LU-11739</key>
            <summary>Don&apos;t inherit default layout from root for new subdirectories</summary>
                <type id="4" iconUrl="https://jira.whamcloud.com/secure/viewavatar?size=xsmall&amp;avatarId=11310&amp;avatarType=issuetype">Improvement</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="yujian">Jian Yu</assignee>
                                    <reporter username="adilger">Andreas Dilger</reporter>
                        <labels>
                    </labels>
                <created>Fri, 7 Dec 2018 07:56:57 +0000</created>
                <updated>Tue, 20 Oct 2020 10:43:25 +0000</updated>
                            <resolved>Fri, 4 Oct 2019 12:42:15 +0000</resolved>
                                    <version>Lustre 2.12.0</version>
                    <version>Lustre 2.10.6</version>
                                    <fixVersion>Lustre 2.13.0</fixVersion>
                    <fixVersion>Lustre 2.10.7</fixVersion>
                    <fixVersion>Lustre 2.12.4</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>9</watches>
                                                                            <comments>
                            <comment id="239226" author="yujian" created="Mon, 31 Dec 2018 08:43:44 +0000"  >&lt;p&gt;The change needs to be made in lod_ah_init() in lustre/lod/lod_object.c. I&apos;m creating the patch.&lt;/p&gt;</comment>
                            <comment id="239292" author="gerrit" created="Thu, 3 Jan 2019 09:44:07 +0000"  >&lt;p&gt;Jian Yu (yujian@whamcloud.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/33956&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/33956&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11739&quot; title=&quot;Don&amp;#39;t inherit default layout from root for new subdirectories&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11739&quot;&gt;&lt;del&gt;LU-11739&lt;/del&gt;&lt;/a&gt; lod: don&apos;t inherit default layout from root directory&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: a55f947c5a70ba6eb9fab077683dafbf1049a788&lt;/p&gt;</comment>
                            <comment id="239510" author="adilger" created="Tue, 8 Jan 2019 00:23:17 +0000"  >&lt;p&gt;In all cases, new subdirectories under root should &lt;b&gt;not&lt;/b&gt; explicitly inherit the file layout from the root (we cannot specify the default file layout at the same time the directory is created, so your 1b) case above cannot happen, unless the default file layout is explicitly specified after the directory is created).  &lt;/p&gt;

&lt;p&gt;This avoids the case where the filesystem-wide default layout is set on the root directory of a new filesystem, and then every subdirectory created in the filesystem explicitly inherits this filesystem-wide layout.  Then, if the filesystem-wide &quot;default&quot; layout changes, none of the new files created use this new default because every parent directory already has an old explicitly inherited layout that is being used instead.&lt;/p&gt;

&lt;p&gt;We need the explicit inheritance behaviour for subdirectories because we can&apos;t walk the whole directory tree on every file create to find if some parent-of-parent has a default file layout that we should be inheriting.  However, we should consider whether an explicit layout should be inherited from a parent directory that is exactly the same as the filesystem default layout?  On the plus side, always inheriting the parent layout avoids some overhead to compare an explicit parent directory layout against the filesystem-wide default layout.  On the minus side, this continues the issue that currently exists with explicitly-inherited default layouts.  If we &lt;b&gt;don&apos;t&lt;/b&gt; explicitly inherit a layout from the parent that matches the filesystem-wide default, it would slowly improve existing filesystems by preventing the spread of explicit-but-fs-default layouts.&lt;/p&gt;

&lt;p&gt;In such cases, it might make sense to add a tunable to control the &quot;inherit filesystem-wide default file layout from parent&quot; behaviour (e.g. &lt;tt&gt;lod.*.stripe_inherit_default&lt;/tt&gt; or similar, but default the tunable to be off (which is IMHO the better long-term solution), and allow it to be enabled if this is the wrong choice for some reason.&lt;/p&gt;</comment>
                            <comment id="239876" author="yujian" created="Sun, 13 Jan 2019 09:18:29 +0000"  >&lt;p&gt;Hi Andreas,&lt;/p&gt;

&lt;p&gt;Before adding the implementation of lod.*.stripe_inherit_default, I did some tests to verify patch &lt;a href=&quot;https://review.whamcloud.com/33956&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/33956&lt;/a&gt;. Here are the test results:&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;# getfattr -n trusted.lov /mnt/lustre
/mnt/lustre: trusted.lov: No such attribute

# mkdir /mnt/lustre/olddir
# getfattr -n trusted.lov /mnt/lustre/olddir
/mnt/lustre/olddir: trusted.lov: No such attribute

# lfs setstripe -S 8M /mnt/lustre
# getfattr -n trusted.lov /mnt/lustre
getfattr: Removing leading &apos;/&apos; from absolute path names
# file: mnt/lustre
trusted.lov=0s0AvRCwEAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAA//8=

# mkdir /mnt/lustre/newdir
# getfattr -n trusted.lov /mnt/lustre/newdir
/mnt/lustre/newdir: trusted.lov: No such attribute                &amp;lt;------ newdir didn&apos;t inherit root directory default layout

# lfs setstripe -p pool /mnt/lustre
# getfattr -n trusted.lov /mnt/lustre
getfattr: Removing leading &apos;/&apos; from absolute path names
# file: mnt/lustre
trusted.lov=0s0AvTCwEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA//9wb29sAAAAAAAAAAAAAAAA

# mkdir /mnt/lustre/newdir_pool
# getfattr -n trusted.lov /mnt/lustre/newdir_pool
/mnt/lustre/newdir_pool: trusted.lov: No such attribute       &amp;lt;------ newdir_pool didn&apos;t inherit root directory default layout

# lfs setstripe -S 4M -p pool /mnt/lustre/newdir_pool
# getfattr -n trusted.lov /mnt/lustre/newdir_pool
getfattr: Removing leading &apos;/&apos; from absolute path names
# file: mnt/lustre/newdir_pool
trusted.lov=0s0AvTCwEAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAA//9wb29sAAAAAAAAAAAAAAAA

# mkdir /mnt/lustre/newdir_pool/subdir
# getfattr -n trusted.lov /mnt/lustre/newdir_pool/subdir
getfattr: Removing leading &apos;/&apos; from absolute path names
# file: mnt/lustre/newdir_pool/subdir
trusted.lov=0s0AvTCwEAAAAEAAAAAAAAAAEEAAACAAAAAABAAAAA//9wb29sAAAAAAAAAAAAAAAA  &amp;lt;------ subdir inherited non-root parent directory default layout
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Could you please take a look at the above test results to see if they are as expected? Thank you.&lt;/p&gt;</comment>
                            <comment id="239877" author="adilger" created="Sun, 13 Jan 2019 15:05:38 +0000"  >&lt;p&gt;Yes, I think this looks correct. &lt;/p&gt;</comment>
                            <comment id="240560" author="pfarrell" created="Tue, 22 Jan 2019 19:40:08 +0000"  >&lt;p&gt;There are references here to some sort of file system wide default layout.&#160; I wasn&apos;t aware that was a possibility - Is there (or could someone give &lt;img class=&quot;emoticon&quot; src=&quot;https://jira.whamcloud.com/images/icons/emoticons/smile.png&quot; height=&quot;16&quot; width=&quot;16&quot; align=&quot;absmiddle&quot; alt=&quot;&quot; border=&quot;0&quot;/&gt;&#160;) a quick explanation of that and how to interact with it?&#160; I just thought you had directory level defaults (optionally set by users/admins) and built-in system defaults (defined in the code).&lt;/p&gt;</comment>
                            <comment id="240563" author="adilger" created="Tue, 22 Jan 2019 21:18:32 +0000"  >&lt;p&gt;The old-style &quot;filesystem wide&quot; plain defaults (used in case everything else fails) are stored in the &lt;tt&gt;lov_descriptor&lt;/tt&gt; for the filesystem from the &lt;tt&gt;mkfs.lustre --param lov.stripesize&lt;/tt&gt; and similar options. They can also be set via &lt;tt&gt;lctl conf_param&lt;/tt&gt; on the MGS.&lt;/p&gt;

&lt;p&gt;However, for quite a few releases, the more common interface for setting the filesystem-wide default is to use &quot;&lt;tt&gt;lfs setstripe&lt;/tt&gt;&quot; as root to set a default layout on the root directory of the filesystem. This allows complex default layouts (e.g. pools, PFL, FLR, etc) to be set for the filesystem.&lt;/p&gt;

&lt;p&gt;This is mentioned in the man page for &lt;tt&gt;lfs-setstripe.1&lt;/tt&gt;:&lt;/p&gt;
&lt;blockquote&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;DESCRIPTION
       The lfs setstripe command is used to create a new file in
       a Lustre filesystem with the specified layout, or to specify
       the default layout for new files created in directory, or
       anywhere in the filesystem if directory is the filesystem root
       and no other layout takes precedence.

       Files with composite layouts allow different STRIPE_OPTIONS to
       be specified for non-overlapping extents of the file.  Files
       will inherit options not explicitly specified on the command
       line either from the default layout on the parent directory, or
       from the filesystem-wide default.  The default layout set on a
       directory will be copied to any new subdirectories created within
       that directory at the time they are created.
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;

&lt;p&gt;However, I note that this text needs to be updated to reflect that the filesystem default layout will not be explicitly copied to subdirectories under the root directory and their children to ensure that the filesystem default layout continues to be applied to those directories if the default is changed.&lt;/p&gt;</comment>
                            <comment id="240565" author="pfarrell" created="Tue, 22 Jan 2019 21:36:35 +0000"  >&lt;p&gt;Thanks, Andreas - Nice to have the background here.&lt;/p&gt;</comment>
                            <comment id="240746" author="jinshan" created="Sat, 26 Jan 2019 20:10:21 +0000"  >&lt;p&gt;I think system-wide default layout needs a new way of definition. For example, we can use one bit in the layout to specify that a directory should apply system default layout(like a layout pointer).&lt;/p&gt;

&lt;p&gt;This patch makes root directory different from the other directories, which seems confusing from my point of view.&lt;/p&gt;</comment>
                            <comment id="240749" author="adilger" created="Sun, 27 Jan 2019 00:58:16 +0000"  >&lt;p&gt;Actually, it isn&apos;t really different than other directories in that they &lt;b&gt;do&lt;/b&gt; inherit the layout from the parent, they just don&apos;t make a copy. That avoids copying the current default layout all the way from the root directory down to all the subdirectories and then if the default changes there are a thousand copies of the old default around the filesystem. &lt;/p&gt;</comment>
                            <comment id="240932" author="gerrit" created="Wed, 30 Jan 2019 02:41:06 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/33956/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/33956/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11739&quot; title=&quot;Don&amp;#39;t inherit default layout from root for new subdirectories&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11739&quot;&gt;&lt;del&gt;LU-11739&lt;/del&gt;&lt;/a&gt; lod: don&apos;t inherit default layout from root directory&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 0a988cae95f99fee1a9c0d489ce00d0954d2a68e&lt;/p&gt;</comment>
                            <comment id="240954" author="gerrit" created="Wed, 30 Jan 2019 09:07:39 +0000"  >&lt;p&gt;Andreas Dilger (adilger@whamcloud.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/34135&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/34135&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11739&quot; title=&quot;Don&amp;#39;t inherit default layout from root for new subdirectories&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11739&quot;&gt;&lt;del&gt;LU-11739&lt;/del&gt;&lt;/a&gt; lod: don&apos;t inherit default layout from root directory&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: b2_12&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 2c55161aab2c6ed7cd0cf25b6d6b27a27bc9b932&lt;/p&gt;</comment>
                            <comment id="241003" author="gerrit" created="Wed, 30 Jan 2019 19:30:07 +0000"  >&lt;p&gt;Jian Yu (yujian@whamcloud.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/34139&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/34139&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11739&quot; title=&quot;Don&amp;#39;t inherit default layout from root for new subdirectories&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11739&quot;&gt;&lt;del&gt;LU-11739&lt;/del&gt;&lt;/a&gt; lod: don&apos;t inherit default layout from root directory&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: b2_10&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 79cbd455b9d33d5942328046fbf62b0e7f83b73d&lt;/p&gt;</comment>
                            <comment id="241004" author="pjones" created="Wed, 30 Jan 2019 19:33:07 +0000"  >&lt;p&gt;Landed for 2.13&lt;/p&gt;</comment>
                            <comment id="242591" author="gerrit" created="Sat, 23 Feb 2019 05:10:43 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/34139/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/34139/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11739&quot; title=&quot;Don&amp;#39;t inherit default layout from root for new subdirectories&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11739&quot;&gt;&lt;del&gt;LU-11739&lt;/del&gt;&lt;/a&gt; lod: don&apos;t inherit default layout from root directory&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: b2_10&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: ff53b1a267feee05094414e6eb4b4cd75033e1e6&lt;/p&gt;</comment>
                            <comment id="244197" author="gerrit" created="Tue, 19 Mar 2019 06:00:23 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/34135/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/34135/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11739&quot; title=&quot;Don&amp;#39;t inherit default layout from root for new subdirectories&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11739&quot;&gt;&lt;del&gt;LU-11739&lt;/del&gt;&lt;/a&gt; lod: don&apos;t inherit default layout from root directory&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: b2_12&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 6ceb90a2461e2724121a6c26434e11bcb31c9f43&lt;/p&gt;</comment>
                            <comment id="246875" author="laisiyao" created="Thu, 9 May 2019 08:07:29 +0000"  >&lt;p&gt;This patch looks wrong to me: in lod_ah_init(), if parent directory is ROOT, it skips reading default layout, which means subdirs under ROOT don&apos;t follow default layout, while in my understanding it need to read default layout anyway, and then use it to decide child layout, but it doesn&apos;t inherit this default layout (by clearing it after use).&lt;/p&gt;</comment>
                            <comment id="247363" author="adilger" created="Sat, 18 May 2019 07:07:58 +0000"  >&lt;p&gt;Lai, could you please put your comments in the form of a test case, to verify if this is working or broken.  If it is broken, then we can use your patch to verify it is working when it is fixed.&lt;/p&gt;</comment>
                            <comment id="247502" author="laisiyao" created="Wed, 22 May 2019 02:26:44 +0000"  >&lt;p&gt;Okay, I&apos;ll work on it after vacation.&lt;/p&gt;</comment>
                            <comment id="249100" author="gerrit" created="Wed, 12 Jun 2019 08:43:07 +0000"  >&lt;p&gt;Lai Siyao (lai.siyao@whamcloud.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/35204&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/35204&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11739&quot; title=&quot;Don&amp;#39;t inherit default layout from root for new subdirectories&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11739&quot;&gt;&lt;del&gt;LU-11739&lt;/del&gt;&lt;/a&gt; lod: subdir under ROOT should honor default layout&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 3a615a0fbd184015e2aea4e5a02015f054a4698b&lt;/p&gt;</comment>
                            <comment id="255574" author="adilger" created="Mon, 30 Sep 2019 06:17:31 +0000"  >&lt;p&gt;There is a patch that has not been landed yet. &lt;/p&gt;</comment>
                            <comment id="255838" author="gerrit" created="Fri, 4 Oct 2019 03:37:50 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/35204/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/35204/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11739&quot; title=&quot;Don&amp;#39;t inherit default layout from root for new subdirectories&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11739&quot;&gt;&lt;del&gt;LU-11739&lt;/del&gt;&lt;/a&gt; lod: subdir under ROOT should honor default layout&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 693fb63ac777eab426f1b618316a5649534759ad&lt;/p&gt;</comment>
                            <comment id="255892" author="pjones" created="Fri, 4 Oct 2019 12:42:15 +0000"  >&lt;p&gt;Landed for 2.13&lt;/p&gt;</comment>
                            <comment id="255910" author="gerrit" created="Fri, 4 Oct 2019 14:55:48 +0000"  >&lt;p&gt;Minh Diep (mdiep@whamcloud.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/36370&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/36370&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11739&quot; title=&quot;Don&amp;#39;t inherit default layout from root for new subdirectories&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11739&quot;&gt;&lt;del&gt;LU-11739&lt;/del&gt;&lt;/a&gt; lod: subdir under ROOT should honor default layout&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: b2_12&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: ba7427ac4dfbee42e34ba3b1b6a9a7b33e8c89dc&lt;/p&gt;</comment>
                            <comment id="258597" author="gerrit" created="Thu, 21 Nov 2019 07:31:50 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/36370/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/36370/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11739&quot; title=&quot;Don&amp;#39;t inherit default layout from root for new subdirectories&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11739&quot;&gt;&lt;del&gt;LU-11739&lt;/del&gt;&lt;/a&gt; lod: subdir under ROOT should honor default layout&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: b2_12&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: a53869aa31ceee700215520e5267b155a0f59d46&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10010">
                    <name>Duplicate</name>
                                                                <inwardlinks description="is duplicated by">
                                        <issuelink>
            <issuekey id="55943">LU-12433</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                            <issuelinktype id="10011">
                    <name>Related</name>
                                            <outwardlinks description="is related to ">
                                        <issuelink>
            <issuekey id="54608">LU-11875</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="54964">LU-11995</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="48297">LU-9982</issuekey>
        </issuelink>
                            </outwardlinks>
                                                                <inwardlinks description="is related to">
                                        <issuelink>
            <issuekey id="56608">LU-12643</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="53999">LU-11656</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="54767">LU-11920</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|i007in:</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>