<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 02:33:22 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-10248] Need to update PFID of OST objects after layout change</title>
                <link>https://jira.whamcloud.com/browse/LU-10248</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;MDT should update PFID information to OST objects after layout swap, split, and merge. However, a protocol should be defined to make this correct. Fanyong proposed to use synchronous OUT setxattr. However, I tend to think it would be better to use llog as SETATTR and DESTROY RPC.&lt;/p&gt;

&lt;p&gt;This problem has been existing for really long time since Lustre 2.4. LFSCK could fix this problem but it&apos;s better to have a mechanism to solve this kind of problem because there will be more and more similar problems.&lt;/p&gt;</description>
                <environment></environment>
        <key id="49347">LU-10248</key>
            <summary>Need to update PFID of OST objects after layout change</summary>
                <type id="7" iconUrl="https://jira.whamcloud.com/images/icons/issuetypes/task_agile.png">Technical task</type>
                            <parent id="47229">LU-9771</parent>
                                    <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="wc-triage">WC Triage</assignee>
                                    <reporter username="jay">Jinshan Xiong</reporter>
                        <labels>
                            <label>FLR</label>
                    </labels>
                <created>Thu, 16 Nov 2017 07:09:18 +0000</created>
                <updated>Fri, 25 Jan 2019 19:11:06 +0000</updated>
                            <resolved>Tue, 19 Dec 2017 16:42:50 +0000</resolved>
                                    <version>Lustre 2.11.0</version>
                                    <fixVersion>Lustre 2.11.0</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>10</watches>
                                                                            <comments>
                            <comment id="213896" author="yong.fan" created="Thu, 16 Nov 2017 07:46:03 +0000"  >&lt;p&gt;LFSCK can handle the inconsistent PFID EA. But it is impossible to run LFSCK every time when merge layout for new FLR.&lt;/p&gt;

&lt;p&gt;On the other hand, compared with other operations, the operation of merge layout for FLR is very rare, so the performance is not big issue, as long as we can guarantee the system consistency, it will be enough. And if such operation become quite common in the future, we can consider other better solution. So currently, follow the lod_replace_parent_fid() logic can resolve most of the issue.&lt;/p&gt;</comment>
                            <comment id="213903" author="bzzz" created="Thu, 16 Nov 2017 13:24:43 +0000"  >&lt;p&gt;saying &quot;to use llog&quot; is not very informative as llog can be used (and already is) in many different ways.&lt;/p&gt;</comment>
                            <comment id="213949" author="jay" created="Thu, 16 Nov 2017 19:54:21 +0000"  >&lt;p&gt;Alex - after adding the restrictions like MDT-&amp;gt;OST communication plus SETATTR and DESTROY like RPC, it won&apos;t leave you much confusion.&lt;/p&gt;

&lt;p&gt;I think what we need is a mechanism here to perform it in a high efficient way. Using OUT SETXATTR is more like a workaround solution. The current way of handing SETATTR and DESTROY is a pretty good framework and we just need to extend it. Also this framework will be enhanced to pack multiple records in a single RPC, which will lead to better performance.&lt;/p&gt;</comment>
                            <comment id="213950" author="bzzz" created="Thu, 16 Nov 2017 19:56:48 +0000"  >&lt;p&gt;I disagree, OUT is much more flexible interface. if you really want to find a good solution lets start from the requirements.&lt;br/&gt;
probably you missed that but OUT &lt;em&gt;can&lt;/em&gt; batch stuff from the beginning.&lt;/p&gt;</comment>
                            <comment id="213956" author="jay" created="Thu, 16 Nov 2017 21:03:13 +0000"  >&lt;p&gt;When I looked at the code of OUT, I saw the operation of replacing PFID is already there as &lt;tt&gt;lod_replace_parent_fid()&lt;/tt&gt;, probably I can just use it.&lt;/p&gt;

&lt;p&gt;Therefore, before swapping or merging layout, I will just declare and call xattr set XATTR_NAME_FID to change PFID. Is there any side effect of it? For example, local trans fails but remote operation succeeds, which will result in inconsistency, or similar fancy stuff like that.&lt;/p&gt;</comment>
                            <comment id="213960" author="jay" created="Thu, 16 Nov 2017 21:52:30 +0000"  >&lt;p&gt;Alex - If I understand it correctly, OUT can only aggregate the updates that belong to the same transaction. Since the SETATTR and DESTROY mechanism is running outside of transaction, potentially it can pack whatever records from LLOG, as long as those records are sending to the same target device, the only limitation would be the size of RPC.&lt;/p&gt;

&lt;p&gt;I don&apos;t have any expertise on this area of the code, probably I&apos;m seeing this issue on the surface.&lt;/p&gt;</comment>
                            <comment id="213968" author="gerrit" created="Thu, 16 Nov 2017 22:28:45 +0000"  >&lt;p&gt;Jinshan Xiong (jinshan.xiong@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/30137&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/30137&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10248&quot; title=&quot;Need to update PFID of OST objects after layout change&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10248&quot;&gt;&lt;del&gt;LU-10248&lt;/del&gt;&lt;/a&gt; mdd: set PFID for swap and merge layout&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: flr&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 9e7004ecc1a6ad9e8ec8b2259a6b91021d7c520c&lt;/p&gt;</comment>
                            <comment id="213986" author="bzzz" created="Fri, 17 Nov 2017 04:39:21 +0000"  >&lt;p&gt;no, one can send few different transactions (each composed of many updates) within a single RPC.&lt;/p&gt;</comment>
                            <comment id="214654" author="jay" created="Mon, 27 Nov 2017 05:34:53 +0000"  >&lt;p&gt;The patch in this ticket will be landed to 2.11 as a bug fix&lt;/p&gt;</comment>
                            <comment id="214792" author="gerrit" created="Tue, 28 Nov 2017 06:07:42 +0000"  >&lt;p&gt;Jinshan Xiong (jinshan.xiong@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/30292&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/30292&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10248&quot; title=&quot;Need to update PFID of OST objects after layout change&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10248&quot;&gt;&lt;del&gt;LU-10248&lt;/del&gt;&lt;/a&gt; mdd: set PFID for swap and merge layout&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 824b7b4d9ccfb6166a042ef06c340bef1ddfcd4f&lt;/p&gt;</comment>
                            <comment id="215262" author="ndauchy" created="Mon, 4 Dec 2017 20:25:18 +0000"  >&lt;p&gt;It looks like we hit this bug at NASA, triggered simply by running lfs_migrate. (possibly complicated by the migration of files with multiple hard links) If the issue is that easy to trigger, shouldn&apos;t this patch be pulled in to 2.10.x LTS branch?&lt;/p&gt;

&lt;p&gt;For those of us that hit the bug before the patch, precisely what lfsck args are needed to correct the problem? Something like:&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;lctl lfsck_start -M lfstest-MDT0000 -c on -C on -o -r

&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;&#160; (or is &quot;-A&quot; or &quot;-t layout&quot; or &quot;-t namespace&quot; also required?)&lt;/p&gt;

&lt;p&gt;Also, in the test-framework script for the patch in this LU, I see what seems to be another way to trigger the fix, but can&apos;t find any documentation on it:&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;$LCTL set_param -n obdfilter.${FSNAME}-OST*.lfsck_verify_pfid=1
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</comment>
                            <comment id="215274" author="adilger" created="Mon, 4 Dec 2017 23:25:31 +0000"  >&lt;p&gt;Nathan, could you describe which problem you are hitting?  Did you hit the problem in &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9941&quot; title=&quot;lsm_is_composite() isn&amp;#39;t right&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9941&quot;&gt;&lt;del&gt;LU-9941&lt;/del&gt;&lt;/a&gt; when running &quot;lfs migrate&quot;, or something else?  This ticket doesn&apos;t really have any userspace visible symptoms unless there is already MDT corruption and you need to rebuild the filesystem with LFSCK.&lt;/p&gt;</comment>
                            <comment id="215276" author="ndauchy" created="Tue, 5 Dec 2017 00:51:16 +0000"  >&lt;p&gt;9941 is not familiar to me, did you mean a different LU?&lt;/p&gt;

&lt;p&gt;What we are doing is using a modified version of Lester (e2scan derivative) to quickly build lists of files on a set of OSTs to be drained. (faster than lfs find) Then running lfs_migrate for those files.&#160; To parallelize the migrations, using xargs to run multiple copies of lfs_migrate, so there definitely could have been a race hit between two different instances working on the same file via different hard links.&#160; This was also started with an older ~2.7 version of lfs_migrate.&lt;/p&gt;

&lt;p&gt;The PFID issue was not seen from userspace, but by one of my colleagues working on improving the OST scanning tool, who was looking at things with debugfs.&#160; I&apos;m afraid I did not save the details to give you the exact example though!&lt;/p&gt;</comment>
                            <comment id="215283" author="adilger" created="Tue, 5 Dec 2017 05:27:28 +0000"  >&lt;p&gt;Ah, if you are scanning the OST inodes directly, and looking at the &lt;tt&gt;filter_fid&lt;/tt&gt; xattr of migrated OST objects, then indeed this is the correct issue.  It wasn&apos;t clear from your initial comment.&lt;/p&gt;

&lt;p&gt;I&apos;ll let Fan Yong comment on what LFSCK command to use to fix the &lt;tt&gt;filter_fid&lt;/tt&gt; xattrs on the OST objects, until such a time that this fix is implemented.&lt;/p&gt;</comment>
                            <comment id="215286" author="yong.fan" created="Tue, 5 Dec 2017 05:50:38 +0000"  >&lt;p&gt;The OST-object&apos;s PFID EA back references the MDT-object which references the OST-object via its LOV EA. The PFID has the following functionalities:&lt;/p&gt;

&lt;p&gt;1) When you enable the &apos;lfsck_verify_pfid&apos; on the OST (disabled by default), the I/O logic on the OST will check whether the I/O target belong to the expected regular file or not. If not, deny I/O.&lt;br/&gt;
2) The layout LFSCK will use the PFID and LOV EA to verify whether the MDT-object and OST-object pairs consistently reference each other.&lt;br/&gt;
3) If the MDT-object crashed, then the layout LFSCK will use the PFID EA to re-geneated the MDT-object on the MDT to resolve the global orphan issues.&lt;/p&gt;

&lt;p&gt;Usually, the PFID EA will be set on the OST-object when the OST-object is modified for the first time (write/truncate/setattr). It also needs  to be updated if the MDT-object&apos;s FID is changed, such as the migration case. But in the old implementation, we only swapped the LOV EA for the MDT-objects during migration, ignored the PFID EA for related OST-objects. Usually, such inconsistency is invisible/harmless to applications except above three cases or you make some special consistency check by yourself, such as your colleague did via debugfs.&lt;/p&gt;</comment>
                            <comment id="215287" author="yong.fan" created="Tue, 5 Dec 2017 05:51:20 +0000"  >&lt;p&gt;Jinshan&apos;s patch &lt;a href=&quot;https://review.whamcloud.com/#/c/30292/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/#/c/30292/&lt;/a&gt; will handle PFID during layout swap or merge (for FLR).&lt;/p&gt;

&lt;p&gt;Anyway, the layout LFSCK can repair the inconsistent PFID EA since Lustre-2.6&lt;/p&gt;</comment>
                            <comment id="215289" author="yong.fan" created="Tue, 5 Dec 2017 07:51:14 +0000"  >&lt;p&gt;To repair inconsistent PFID EA, you can run layout LFSCK, for example (run command on the MDT0000)&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;lctl lfsck_start -M ${fsname}-MDT0000 -A -t layout -r
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;If just want to check whether there is inconsistency or not, then plus dryrun option &quot;--dryrun&quot;.&lt;/p&gt;</comment>
                            <comment id="215324" author="ndauchy" created="Tue, 5 Dec 2017 16:35:05 +0000"  >&lt;p&gt;Thanks much for the clarification, nasf!&lt;/p&gt;

&lt;p&gt;I performed a dry-run lfsck as follows and did get one inconsistency.&#160; Please let me know if there is any other debug info I should gather, or just go ahead and re-run without the dry-run flag.&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;lctl clear
lctl debug_daemon start /var/log/lfsck-n.debug
lctl lfsck_start -M nbp7-MDT0000 -A -t layout -r -n
# wait for &quot;lctl get_param -n osd-ldiskfs.*.oi_scrub | grep status&quot; to show &quot;completed&quot;
lctl debug_daemon stop lctl debug_file /var/log/lfsck-n.debug &amp;gt; /var/log/lfsck-n.log
egrep -v &quot;(kiblnd_passive_connect|ping_evictor_main)&quot; /var/log/lfsck-n.log
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&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;00000004:00020000:15.0F:1512490067.127409:0:89302:0:(lod_dev.c:651:lod_sync()) nbp7-MDT0000-mdtlov: can&apos;t sync 79: -107
00000004:00020000:0.0F:1512490072.101529:0:89302:0:(lod_dev.c:651:lod_sync()) nbp7-MDT0000-mdtlov: can&apos;t sync 79: -107
00080000:12000000:4.0F:1512490467.544841:0:43141:0:(osd_handler.c:574:osd_check_lma()) nbp7-MDT0000-osd: FID [0x20016d1ea:0x627:0x0] != self_fid [0x20016d1ea:0x62f:0x0]
Debug log: 12 lines, 12 kept, 0 dropped, 0 bad.
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&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;client ~ # lfs fid2path /nobackupp7/ 0x20016d1ea:0x627:0x0
fid2path: error on FID 0x20016d1ea:0x627:0x0: No such file or directory
client ~# lfs fid2path /nobackupp7/ 0x20016d1ea:0x62f:0x0
/nobackupp7/somepath/esmf_field.xsd
client ~ # lfs path2fid /nobackupp7/somepath/esmf_field.xsd
[0x20016d1ea:0x62f:0x0]
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Note that the &quot;can&apos;t sync 79&quot; errors are almost certainly because we have finished running lfs_migrate on one of the OSTs (#79) already and taken it offline.&lt;/p&gt;</comment>
                            <comment id="215418" author="yong.fan" created="Wed, 6 Dec 2017 04:02:56 +0000"  >&lt;p&gt;Please show me the output:&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;lctl get_param -n osd-ldiskfs.*.oi_scrub
lctl get_param -n mdd.*.lfsck_layout
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</comment>
                            <comment id="215446" author="yong.fan" created="Wed, 6 Dec 2017 16:13:06 +0000"  >&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;repaired_unmatched_pair: 283
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;The layout LFSCK detected 283 unmatched MDT-object and OST-object pairs. Two choices:&lt;br/&gt;
1) Run layout LFSCK again without &quot;dryrun&quot; option, that will repair the inconsistency directly.&lt;br/&gt;
2) To be safe, enable &quot;lfsck&quot; debug log on the MDT, then re-run dryrun mode layout LFSCK again. After complete, dump the Lustre kernel debug logs on the MDT, that will contain the found inconsistencies. Please ONLY enable &quot;lfsck&quot; debug log to avoid log buffer full and overwritten.&lt;/p&gt;</comment>
                            <comment id="215492" author="ndauchy" created="Wed, 6 Dec 2017 21:31:54 +0000"  >&lt;p&gt;Redid the dry run and it reported a lot more than 283 errors!  Commands I used are in the uploaded lfsck_2017-12-06-n.txt file, results in the other files should be evident.  Please advise.&lt;/p&gt;</comment>
                            <comment id="215528" author="yong.fan" created="Thu, 7 Dec 2017 08:44:28 +0000"  >&lt;p&gt;There is known issue about the repaired_inconsistent_owner, there were also a lot of unexpected repaired_inconsistent_owner in your former logs. They are not the real inconsistency, please ignore them temporarily. On the other hand, as you can see, the Lustre debug logs were overwritten because of those fake repaired_inconsistent_owner information, as to the useful repaired_unmatched_pair logs were lost.&lt;/p&gt;

&lt;p&gt;There are two choices:&lt;br/&gt;
1) Run layout LFSCK again without &quot;dryrun&quot; option, that will repair the inconsistency directly. But because of too many repaired_inconsistent_owner information, we may cannot know what to be fixed.&lt;br/&gt;
2) Keep the inconsistency there. According to your former logs, there are about 283 unmatched MDT-object and OST-object pairs. These unmatched pairs will NOT affect the normal system access as described in the comment:&lt;br/&gt;
&lt;a href=&quot;https://jira.hpdd.intel.com/browse/LU-10248?focusedCommentId=215286&amp;amp;page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-215286&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://jira.hpdd.intel.com/browse/LU-10248?focusedCommentId=215286&amp;amp;page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-215286&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I will work on the fake inconsistent owner issue, once done, you can apply related patch(es) and run layout LFSCK again.&lt;/p&gt;</comment>
                            <comment id="215529" author="yong.fan" created="Thu, 7 Dec 2017 08:45:56 +0000"  >&lt;p&gt;&lt;a href=&quot;https://jira.whamcloud.com/secure/ViewProfile.jspa?name=ndauchy&quot; class=&quot;user-hover&quot; rel=&quot;ndauchy&quot;&gt;ndauchy&lt;/a&gt;, what is your Lustre version?&lt;/p&gt;</comment>
                            <comment id="215545" author="pjones" created="Thu, 7 Dec 2017 13:58:04 +0000"  >&lt;p&gt;It really seems like it would be better to transfer the NASA discussion to its own ticket rather than tacking on the end of this ticket to track part of the FLR implementation.&lt;/p&gt;</comment>
                            <comment id="215570" author="ndauchy" created="Thu, 7 Dec 2017 16:54:16 +0000"  >&lt;p&gt;&lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10349&quot; title=&quot;debug and cleanup of corrupted PFID, unmatched MDT-object and OST-object pairs&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10349&quot;&gt;&lt;del&gt;LU-10349&lt;/del&gt;&lt;/a&gt; created for NASA-specific debugging efforts&lt;/p&gt;</comment>
                            <comment id="216517" author="gerrit" created="Sun, 17 Dec 2017 06:20:25 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/30292/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/30292/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10248&quot; title=&quot;Need to update PFID of OST objects after layout change&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10248&quot;&gt;&lt;del&gt;LU-10248&lt;/del&gt;&lt;/a&gt; mdd: set PFID for swap and merge layout&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 4d534365ab214e28452c54fd2e0d4781e2f290d6&lt;/p&gt;</comment>
                            <comment id="216548" author="pjones" created="Sun, 17 Dec 2017 16:14:29 +0000"  >&lt;p&gt;Is this task complete with the recent landing to master?&lt;/p&gt;</comment>
                            <comment id="217003" author="gerrit" created="Thu, 21 Dec 2017 19:52:03 +0000"  >&lt;p&gt;Minh Diep (minh.diep@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/30635&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/30635&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10248&quot; title=&quot;Need to update PFID of OST objects after layout change&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10248&quot;&gt;&lt;del&gt;LU-10248&lt;/del&gt;&lt;/a&gt; mdd: set PFID for swap and merge layout&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: b2_10&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 8d034f5aa4794d4dcd761b3e5ba2537995cb4e5d&lt;/p&gt;</comment>
                            <comment id="240730" author="jaylan" created="Fri, 25 Jan 2019 19:11:06 +0000"  >&lt;p&gt;If the work on #30635 is complete, can we land it to b2_10?&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10011">
                    <name>Related</name>
                                            <outwardlinks description="is related to ">
                                        <issuelink>
            <issuekey id="17294">LU-2677</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="18288">LU-3128</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="47229">LU-9771</issuekey>
        </issuelink>
                            </outwardlinks>
                                                        </issuelinktype>
                    </issuelinks>
                <attachments>
                            <attachment id="28864" name="lctl_lfsck_layout.out" size="832" author="ndauchy" created="Wed, 6 Dec 2017 15:29:24 +0000"/>
                            <attachment id="28865" name="lctl_oi_scrub.out" size="1061" author="ndauchy" created="Wed, 6 Dec 2017 15:29:24 +0000"/>
                            <attachment id="28870" name="lfsck_2017-12-06-n.err" size="2338" author="ndauchy" created="Wed, 6 Dec 2017 21:28:56 +0000"/>
                            <attachment id="28871" name="lfsck_2017-12-06-n.log.gz" size="30982599" author="ndauchy" created="Wed, 6 Dec 2017 21:30:14 +0000"/>
                            <attachment id="28869" name="lfsck_2017-12-06-n.status" size="1002" author="ndauchy" created="Wed, 6 Dec 2017 21:28:56 +0000"/>
                            <attachment id="28868" name="lfsck_2017-12-06-n.txt" size="735" author="ndauchy" created="Wed, 6 Dec 2017 21:28:56 +0000"/>
                    </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|hzznxz:</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>