<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 02:47:28 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-11848] filefrag/FIEMAP doesn&apos;t work for PFL or FLR files</title>
                <link>https://jira.whamcloud.com/browse/LU-11848</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;It appears that &lt;tt&gt;FIEMAP&lt;/tt&gt; doesn&apos;t work quite correctly for PFL or FLR files.  I&apos;d expect that it would dump the &lt;tt&gt;FIEMAP&lt;/tt&gt; information for all copies of a mirrored file, but it exits when the first object is printed.  I verified with GDB that the &lt;tt&gt;fiemap&lt;/tt&gt; structure returned by the kernel only has a single extent in 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;$ lfs getstripe /mnt/testfs/flr2
/mnt/testfs/flr2
  lcm_layout_gen:    5
  lcm_mirror_count:  2
  lcm_entry_count:   2
    lcme_id:             65537
    lcme_mirror_id:      1
    lcme_flags:          init
    lcme_extent.e_start: 0
    lcme_extent.e_end:   EOF
      lmm_stripe_count:  1
      lmm_stripe_size:   1048576
      lmm_pattern:       raid0
      lmm_layout_gen:    0
      lmm_stripe_offset: 3
      lmm_objects:
      - 0: { l_ost_idx: 3, l_fid: [0x100030000:0x4:0x0] }

    lcme_id:             131074
    lcme_mirror_id:      2
    lcme_flags:          init
    lcme_extent.e_start: 0
    lcme_extent.e_end:   EOF
      lmm_stripe_count:  1
      lmm_stripe_size:   1048576
      lmm_pattern:       raid0
      lmm_layout_gen:    0
      lmm_stripe_offset: 0
      lmm_objects:
      - 0: { l_ost_idx: 0, l_fid: [0x100000000:0x4:0x0] }

$ filefrag -v /mnt/testfs/flr2
Filesystem type is: bd00bd0
File size of /mnt/testfs/flr2 is 8388608 (8192 blocks of 1024 bytes)
 ext:     device_logical:        physical_offset: length:  dev: flags:
   0:        0..    8191:     140000..    148191:   8192: 0003: last,net,eof
/mnt/testfs/flr2: 1 extent found
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;For FLR files this is at least somewhat usable, since a full copy of the file is handled.  However, for PFL files, the kernel returns an &lt;tt&gt;-EFBIG&lt;/tt&gt; error after the first component is read:&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 /mnt/testfs/pfl3x8
  lcm_entry_count:   3
    lcme_extent.e_start: 0
    lcme_extent.e_end:   1048576
      lmm_stripe_count:  1
      lmm_stripe_size:   1048576
      lmm_pattern:       raid0
      lmm_objects:
      - 0: { l_ost_idx: 2, l_fid: [0x100020000:0x2:0x0] }

    lcme_extent.e_start: 1048576
    lcme_extent.e_end:   4194304
      lmm_stripe_count:  3
      lmm_stripe_size:   1048576
      lmm_pattern:       raid0
      lmm_objects:
      - 0: { l_ost_idx: 3, l_fid: [0x100030000:0x2:0x0] }
      - 1: { l_ost_idx: 0, l_fid: [0x100000000:0x2:0x0] }
      - 2: { l_ost_idx: 1, l_fid: [0x100010000:0x2:0x0] }

    lcme_extent.e_start: 4194304
    lcme_extent.e_end:   EOF
      lmm_stripe_count:  4
      lmm_stripe_size:   1048576
      lmm_pattern:       raid0
      lmm_objects:
      - 0: { l_ost_idx: 3, l_fid: [0x100030000:0x3:0x0] }
      - 1: { l_ost_idx: 0, l_fid: [0x100000000:0x3:0x0] }
      - 2: { l_ost_idx: 1, l_fid: [0x100010000:0x3:0x0] }
      - 3: { l_ost_idx: 2, l_fid: [0x100020000:0x3:0x0] }

$ filefrag -v /mnt/testfs/pfl3x8
Filesystem type is: bd00bd0
File size of /mnt/testfs/pfl3x8 is 8388608 (8192 blocks of 1024 bytes)
 ext:     device_logical:        physical_offset: length:  dev: flags:
   0:        0..    1023:     134880..    135903:   1024: 0002: net
   1:        0..    1023:     134880..    135903:   1024: 0000: net
   2:     1024..    2047:     136928..    137951:   1024: 0003: net
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;It starts &lt;em&gt;almost&lt;/em&gt; correctly, with an extent on OST0002 for &lt;span class=&quot;error&quot;&gt;&amp;#91;0,1MB&amp;#93;&lt;/span&gt; and then something that looks like a duplicate of the first extent with only the device number changed, and an extent on OST0003 for &lt;span class=&quot;error&quot;&gt;&amp;#91;1MB,2MB&amp;#93;&lt;/span&gt;.  The last 6 extents are not returned in the first call despite there being plenty of room in the fiemap array.&lt;/p&gt;

&lt;p&gt;Running strace shows:&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;ioctl(3, FS_IOC_FIEMAP, {fm_start=0, fm_length=18446744073709551615, fm_flags=0x40000000 /* FIEMAP_FLAG_??? */, fm_extent_count=292} =&amp;gt; {fm_flags=0x40000000 /* FIEMAP_FLAG_??? */, fm_mapped_extents=3, fm_extents=...}) = 0
ioctl(3, FS_IOC_FIEMAP, {fm_start=0, fm_length=18446744073709551615, fm_flags=0x40000000 /* FIEMAP_FLAG_??? */, fm_extent_count=292}) = -1 EFBIG (File too large)
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;Running under GDB and dumping the returned extents shows that indeed 3 separate extents are returned (so strangeness is not in filefrag), and then &lt;tt&gt;-EFBIG&lt;/tt&gt; is returned on the second &lt;tt&gt;ioctl(FIEMAP)&lt;/tt&gt; call when it tries to continue on the next extent.&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;247                     rc = ioctl(fd, FS_IOC_FIEMAP, (unsigned long) fiemap);
248                     if (rc &amp;lt; 0) {
(gdb) p *fiemap
$1 = {fm_start = 0, fm_length = 18446744073709551615, fm_flags = 1073741824, 
  fm_mapped_extents = 3, fm_extent_count = 292, fm_reserved = 0, 
  fm_extents = 0x7fffffff9ca0}
(gdb) p fiemap-&amp;gt;fm_extents[0]
$2 = {fe_logical = 0, fe_physical = 138117120, fe_length = 1048576, 
  fe_reserved64 = {0, 0}, fe_flags = 2147483648, fe_device = 2, fe_reserved = {0, 0}}
(gdb) p fiemap-&amp;gt;fm_extents[1]
$3 = {fe_logical = 0, fe_physical = 138117120, fe_length = 1048576, 
  fe_reserved64 = {0, 0}, fe_flags = 2147483648, fe_device = 0, fe_reserved = {0, 0}}
(gdb) p fiemap-&amp;gt;fm_extents[2]
$4 = {fe_logical = 1048576, fe_physical = 140214272, fe_length = 1048576, 
  fe_reserved64 = {0, 0}, fe_flags = 2147483648, fe_device = 3, fe_reserved = {0, 0}}
:
:
305                     if (flags &amp;amp; FIEMAP_FLAG_DEVICE_ORDER) {
306                             fm_ext[0].fe_logical =  fm_ext[i - 1].fe_logical + fm_ext[i - 1].fe_length;
308                             fm_ext[0].fe_device =   fm_ext[i - 1].fe_device;
309                             fiemap-&amp;gt;fm_start =      0;
:
:
244                     fiemap-&amp;gt;fm_length = ~0ULL;
245                     fiemap-&amp;gt;fm_flags = flags;
246                     fiemap-&amp;gt;fm_extent_count = count;
247                     rc = ioctl(fd, FS_IOC_FIEMAP, (unsigned long) fiemap);
248                     if (rc &amp;lt; 0) {
251                             rc = -errno;
(gdb) p *fiemap
$7 = {fm_start = 0, fm_length = 18446744073709551615, fm_flags = 1073741824, 
  fm_mapped_extents = 0, fm_extent_count = 292, fm_reserved = 0, 
  fm_extents = 0x7fffffff9ca0}
(gdb) p rc
$8 = -27
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;It looks like the LOV code needs to be taught how to iterate over a composite layout to populate the FIEMAP structure, and to be able to find the right component to restart.  It &lt;em&gt;may&lt;/em&gt; be that we need to make changes to &lt;tt&gt;filefrag&lt;/tt&gt; itself, since it currently only returns the file logical offset of the end of the last printed extent and the device number it was on.  This &lt;em&gt;could&lt;/em&gt; be ambiguous in rare cases if there were two mirrors on the same OST for the same file offset and FIEMAP was interrupted just there, but it doesn&apos;t seem likely and is not a primary concern.&lt;/p&gt;</description>
                <environment></environment>
        <key id="54489">LU-11848</key>
            <summary>filefrag/FIEMAP doesn&apos;t work for PFL or FLR files</summary>
                <type id="1" iconUrl="https://jira.whamcloud.com/secure/viewavatar?size=xsmall&amp;avatarId=11303&amp;avatarType=issuetype">Bug</type>
                                            <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="adilger">Andreas Dilger</reporter>
                        <labels>
                    </labels>
                <created>Thu, 10 Jan 2019 10:06:42 +0000</created>
                <updated>Tue, 12 Sep 2023 14:59:19 +0000</updated>
                            <resolved>Fri, 18 Dec 2020 07:53:39 +0000</resolved>
                                    <version>Lustre 2.11.0</version>
                    <version>Lustre 2.12.0</version>
                                    <fixVersion>Lustre 2.14.0</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>5</watches>
                                                                            <comments>
                            <comment id="286054" author="gerrit" created="Thu, 26 Nov 2020 06:41:49 +0000"  >&lt;p&gt;Bobi Jam (bobijam@hotmail.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/40766&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/40766&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11848&quot; title=&quot;filefrag/FIEMAP doesn&amp;#39;t work for PFL or FLR files&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11848&quot;&gt;&lt;del&gt;LU-11848&lt;/del&gt;&lt;/a&gt; lov: FIEMAP support for PFL and FLR file&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: b1a2029b34f7b589417364f77e9108734743c643&lt;/p&gt;</comment>
                            <comment id="286056" author="bobijam" created="Thu, 26 Nov 2020 06:48:05 +0000"  >&lt;p&gt;Bobi Jam (bobijam@hotmail.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/40765&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/40765&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11848&quot; title=&quot;filefrag/FIEMAP doesn&amp;#39;t work for PFL or FLR files&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11848&quot;&gt;&lt;del&gt;LU-11848&lt;/del&gt;&lt;/a&gt; filefrag: support PFL and FLR file&lt;br/&gt;
Project: tools/e2fsprogs&lt;br/&gt;
Branch: master-lustre&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 93dfaa57d91d2111ec44765570076c3ab661a6b8 &lt;/p&gt;</comment>
                            <comment id="286338" author="adilger" created="Tue, 1 Dec 2020 08:37:24 +0000"  >&lt;p&gt;Andreas Dilger (adilger@hotmail.com) merged in patch: &lt;a href=&quot;https://review.whamcloud.com/40765&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/40765&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11848&quot; title=&quot;filefrag/FIEMAP doesn&amp;#39;t work for PFL or FLR files&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11848&quot;&gt;&lt;del&gt;LU-11848&lt;/del&gt;&lt;/a&gt; filefrag: support PFL and FLR file&lt;br/&gt;
Project: tools/e2fsprogs&lt;br/&gt;
Branch: master-lustre&lt;br/&gt;
Current Patch Set: 3&lt;br/&gt;
Commit: 0b6718f5e22d57cedb732f0253e1e7deb4c80931 &lt;/p&gt;</comment>
                            <comment id="286790" author="gerrit" created="Fri, 4 Dec 2020 23:47:31 +0000"  >&lt;p&gt;Andreas Dilger (adilger@whamcloud.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/40873&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/40873&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11848&quot; title=&quot;filefrag/FIEMAP doesn&amp;#39;t work for PFL or FLR files&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11848&quot;&gt;&lt;del&gt;LU-11848&lt;/del&gt;&lt;/a&gt; filefrag: add -V option to print version&lt;br/&gt;
Project: tools/e2fsprogs&lt;br/&gt;
Branch: master-lustre&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: d5192efa9f7e6786289367abe08d690449324562&lt;/p&gt;</comment>
                            <comment id="286791" author="gerrit" created="Fri, 4 Dec 2020 23:47:32 +0000"  >&lt;p&gt;Andreas Dilger (adilger@whamcloud.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/40874&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/40874&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11848&quot; title=&quot;filefrag/FIEMAP doesn&amp;#39;t work for PFL or FLR files&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11848&quot;&gt;&lt;del&gt;LU-11848&lt;/del&gt;&lt;/a&gt; build: update version to 1.45.6.wc3&lt;br/&gt;
Project: tools/e2fsprogs&lt;br/&gt;
Branch: master-lustre&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 8b4cbc0b1612d66a3447d2597e24afbc045a1daf&lt;/p&gt;</comment>
                            <comment id="286858" author="gerrit" created="Mon, 7 Dec 2020 08:48:48 +0000"  >&lt;p&gt;Bobi Jam (bobijam@hotmail.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/40889&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/40889&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11848&quot; title=&quot;filefrag/FIEMAP doesn&amp;#39;t work for PFL or FLR files&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11848&quot;&gt;&lt;del&gt;LU-11848&lt;/del&gt;&lt;/a&gt; filefrag: support PFL and FLR file&lt;br/&gt;
Project: tools/e2fsprogs&lt;br/&gt;
Branch: master-lustre&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 648eed62ae49a887254c4902b3579d824dd7a5f5&lt;/p&gt;</comment>
                            <comment id="287063" author="gerrit" created="Wed, 9 Dec 2020 08:48:52 +0000"  >&lt;p&gt;Andreas Dilger (adilger@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/40873/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/40873/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11848&quot; title=&quot;filefrag/FIEMAP doesn&amp;#39;t work for PFL or FLR files&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11848&quot;&gt;&lt;del&gt;LU-11848&lt;/del&gt;&lt;/a&gt; filefrag: add -V option to print version&lt;br/&gt;
Project: tools/e2fsprogs&lt;br/&gt;
Branch: master-lustre&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 233fe52cade6dd2317db3cd5698e924c82328ad8&lt;/p&gt;</comment>
                            <comment id="287182" author="gerrit" created="Thu, 10 Dec 2020 08:43:05 +0000"  >&lt;p&gt;Andreas Dilger (adilger@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/40889/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/40889/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11848&quot; title=&quot;filefrag/FIEMAP doesn&amp;#39;t work for PFL or FLR files&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11848&quot;&gt;&lt;del&gt;LU-11848&lt;/del&gt;&lt;/a&gt; filefrag: rework port PFL and FLR file&lt;br/&gt;
Project: tools/e2fsprogs&lt;br/&gt;
Branch: master-lustre&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: d99d208e73cd5b9c3edbc8fea3bb66875b706df7&lt;/p&gt;</comment>
                            <comment id="287188" author="gerrit" created="Thu, 10 Dec 2020 11:20:57 +0000"  >&lt;p&gt;Andreas Dilger (adilger@whamcloud.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/40932&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/40932&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11848&quot; title=&quot;filefrag/FIEMAP doesn&amp;#39;t work for PFL or FLR files&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11848&quot;&gt;&lt;del&gt;LU-11848&lt;/del&gt;&lt;/a&gt; filefrag: further PFL and FLR fixes&lt;br/&gt;
Project: tools/e2fsprogs&lt;br/&gt;
Branch: master-lustre&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: f37f564f389cbd26bd53ab66f88d504c314007b2&lt;/p&gt;</comment>
                            <comment id="287194" author="gerrit" created="Thu, 10 Dec 2020 13:02:58 +0000"  >&lt;p&gt;Andreas Dilger (adilger@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/40932/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/40932/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11848&quot; title=&quot;filefrag/FIEMAP doesn&amp;#39;t work for PFL or FLR files&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11848&quot;&gt;&lt;del&gt;LU-11848&lt;/del&gt;&lt;/a&gt; filefrag: further PFL and FLR fixes&lt;br/&gt;
Project: tools/e2fsprogs&lt;br/&gt;
Branch: master-lustre&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 3bdf8ca2e409773892002327b188a32c3f302601&lt;/p&gt;</comment>
                            <comment id="287517" author="gerrit" created="Mon, 14 Dec 2020 21:11:51 +0000"  >&lt;p&gt;Andreas Dilger (adilger@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/40874/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/40874/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11848&quot; title=&quot;filefrag/FIEMAP doesn&amp;#39;t work for PFL or FLR files&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11848&quot;&gt;&lt;del&gt;LU-11848&lt;/del&gt;&lt;/a&gt; build: update version to 1.45.6.wc3&lt;br/&gt;
Project: tools/e2fsprogs&lt;br/&gt;
Branch: master-lustre&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: b46f7f0490c05d55e23474558859560a62bd054c&lt;/p&gt;</comment>
                            <comment id="287522" author="gerrit" created="Mon, 14 Dec 2020 21:37:37 +0000"  >&lt;p&gt;Andreas Dilger (adilger@whamcloud.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/40967&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/40967&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11848&quot; title=&quot;filefrag/FIEMAP doesn&amp;#39;t work for PFL or FLR files&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11848&quot;&gt;&lt;del&gt;LU-11848&lt;/del&gt;&lt;/a&gt; misc: update e2fsprogs to 1.45.6.wc3&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: f13fab4e8f3d938b54277c89bcb7d789b9c2e4e3&lt;/p&gt;</comment>
                            <comment id="287891" author="gerrit" created="Thu, 17 Dec 2020 17:03:04 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/40766/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/40766/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11848&quot; title=&quot;filefrag/FIEMAP doesn&amp;#39;t work for PFL or FLR files&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11848&quot;&gt;&lt;del&gt;LU-11848&lt;/del&gt;&lt;/a&gt; lov: FIEMAP support for PFL and FLR file&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 409719608cf0f607635fca5fb66b84a2e4aa1d4f&lt;/p&gt;</comment>
                            <comment id="287946" author="spitzcor" created="Thu, 17 Dec 2020 21:47:13 +0000"  >&lt;p&gt;&lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10180&quot; title=&quot;DoM technical debts&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10180&quot;&gt;&lt;del&gt;LU-10180&lt;/del&gt;&lt;/a&gt; says that FIEMAP is supported for DoM, but the code in lov_object_fiemap() indicates otherwise.  That function is touched in &lt;a href=&quot;https://review.whamcloud.com/40766/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/40766/&lt;/a&gt;.  Should it be handled under this ticket or another?&lt;/p&gt;</comment>
                            <comment id="287975" author="gerrit" created="Fri, 18 Dec 2020 05:37:34 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/40897/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/40897/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11848&quot; title=&quot;filefrag/FIEMAP doesn&amp;#39;t work for PFL or FLR files&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11848&quot;&gt;&lt;del&gt;LU-11848&lt;/del&gt;&lt;/a&gt; tests: handle 4-digit version numbers properly&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 7e0aeeec0bbff30956ce862546a1c71e322af5a9&lt;/p&gt;</comment>
                            <comment id="287976" author="gerrit" created="Fri, 18 Dec 2020 05:47:26 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/40967/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/40967/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-11848&quot; title=&quot;filefrag/FIEMAP doesn&amp;#39;t work for PFL or FLR files&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-11848&quot;&gt;&lt;del&gt;LU-11848&lt;/del&gt;&lt;/a&gt; misc: update e2fsprogs to 1.45.6.wc3&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 6985a47d48d7bfbd0174af09902a7469d4b3a33c&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10011">
                    <name>Related</name>
                                                                <inwardlinks description="is related to">
                                        <issuelink>
            <issuekey id="63274">LU-14510</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="77848">LU-17110</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="61774">LU-14149</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|i0097z:</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>