<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 02:59:13 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-13197] e2fsck fails with &apos;Internal error: couldn&apos;t find dir_info for 1222630503&apos;</title>
                <link>https://jira.whamcloud.com/browse/LU-13197</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;Running &lt;tt&gt;e2fsck&lt;/tt&gt; on a large MDT filesystem fails with an internal error.&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;e2fsck 1.45.2.wc1 (27-May-2019)
MMP interval is 9 seconds and total wait time is 38 seconds. Please wait...
lfs-MDT0000 contains a file system with errors, check forced.
Pass 1: Checking inodes, blocks, and sizes
Pass 2: Checking directory structure
lfs-MDT0000: Deleted inode 813447929 has zero dtime. FIXED.
lfs-MDT0000: Internal error: couldn&apos;t find dir_info for 1222630503.
lfs-MDT0000: ***** FILE SYSTEM WAS MODIFIED *****
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;Restarting the e2fsck reports the same problem with the same inode number.  The inode itself appears to be a valid directory:&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;debugfs: stat &amp;lt;1222630503&amp;gt;
Inode: 1222630503 Type: directory Mode: 02700 Flags: 0x0
Generation: 3227604132 Version: 0x00000172:b0d4e94e
User: 123375 Group: 130793 Project: 0 Size: 4096
File ACL: 0
Links: 2 Blockcount: 8
Fragment: Address: 0 Number: 0 Size: 0
ctime: 0x5dfcc8e7:00000000 - Fri Dec 20 13:13:11 2019
atime: 0x5e13b95f:00000000 - Mon Jan 6 22:49:03 2020
mtime: 0x5dfcc8e7:00000000 - Fri Dec 20 13:13:11 2019
crtime: 0x5dfcc88a:5e4ca20c - Fri Dec 20 13:11:38 2019
Size of extra inode fields: 32
Extended attributes:
trusted.lma (24) = 00 00 00 00 00 00 00 00 bb 87 14 00 02 00 00 00 fb 18 00 00 00 00 00 00
lma: fid=[0x2001487bb:0x18fb:0x0] compat=0 incompat=0
trusted.link (44)
BLOCKS:
(0):763955436
TOTAL: 1 

debugfs: ls &amp;lt;1222630503&amp;gt;
1222630503 (12) . 1162861665 (28) .. 1222214101 (36) 20.1.crd
1222214102 (36) 20.2.crd 1222214103 (36) 20.3.crd
1222214104 (36) 20.4.crd 1222214105 (36) 20.5.crd
:
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Clearing this inode with &quot;&lt;tt&gt;debugfs -w -R &apos;clri &amp;lt;1222630503&amp;gt;&apos;&lt;/tt&gt;&quot; results in a different directory inode reporting an error, and that continues after clearing several such inodes.&lt;/p&gt;

&lt;p&gt;The filesystem is 6TB with 2.3B inodes, about 1.8B of which are in use, and 380M directories, for an average of only 4 entries per directory.  The inode numbers reporting problems are in the range of 1.2B.  &lt;tt&gt;e2fsck&lt;/tt&gt; is using about 45GB of RAM (with some swap on an NVMe SSD, so much faster than the HDD the filesystem image is on).  It takes about 3-4h to hit this problem.&lt;/p&gt;

&lt;p&gt;I was able to run &lt;tt&gt;e2fsck&lt;/tt&gt; under &lt;tt&gt;gdb&lt;/tt&gt;, though this slows down &lt;tt&gt;e2fsck&lt;/tt&gt; significantly (10-100x slower), if there are conditional breakpoints since they need to be evaluated for each inode, which makes it impossible to use this way.&lt;/p&gt;

&lt;p&gt;What I&apos;ve discovered is quite interesting.  The &lt;tt&gt;ctx-&amp;gt;dir_info-&amp;gt;array&lt;/tt&gt; is filled in properly for the bad inode, and the array is OK at the start of pass2 (&lt;tt&gt;$66&lt;/tt&gt; holds the bad inode number):&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;    (gdb) p e2fsck_get_dir_info(ctx, 2)
    $171 = (struct dir_info *) 0x7ffabf2bd010
    (gdb) p *$171
    $172 = {ino = 2, dotdot = 0, parent = 2}
    (gdb) p $66
    $173 = 1222630490
    (gdb) p e2fsck_get_dir_info(ctx, $66)
    $174 = (struct dir_info *) 0x7ffb3d327f54
    (gdb) p *$174
    $175 = {ino = 1222630490, dotdot = 0, parent = 0}
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;The &lt;tt&gt;dir_info&lt;/tt&gt; array itself is over 4GB in size, with 380M directories each with a 12-byte entry, but the bad inode is only about half way through the array (&lt;tt&gt;$140&lt;/tt&gt; is the index of the problematic entry:&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;    (gdb) p $140
    $176 = 176197275
    (gdb) p p ctx-&amp;gt;dir_info-&amp;gt;array[$140]
    $177 = {ino = 1222630490, dotdot = 0, parent = 0}
    (gdb) p *ctx-&amp;gt;dir_info
    $178 = {count = 381539950, size = 381539965,
      array = 0x7ffabf2bd010, last_lookup = 0x0,
      tdb_fn = 0x0, tdb = 0x0}
    (gdb) p $178.count * sizeof(ctx-&amp;gt;dir_info-&amp;gt;array[0])
    $179 = 4578479400
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;I put a hardware watchpoint on the &quot;&lt;tt&gt;.parent&lt;/tt&gt;&quot; and &quot;&lt;tt&gt;.dotdot&lt;/tt&gt;&quot; fields of this entry so that I could watch as &lt;tt&gt;e2fsck_dir_info_set_dotdot()&lt;/tt&gt; updated it, but I didn&apos;t think to put one on the &quot;&lt;tt&gt;.ino&lt;/tt&gt;&quot; field, since I thought it would be static.&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;    (gdb) info break
    Num     Type           Disp Enb Address    What
    15      hw watchpoint  keep y              -location $177-&amp;gt;parent
    16      hw watchpoint  keep y              -location $177-&amp;gt;dotdot
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;The watchpoint triggered, and showed that the entry was changed by &lt;tt&gt;qsort_r()&lt;/tt&gt;, which seemed plausible because the &lt;tt&gt;dir_info&lt;/tt&gt; array needs to be sorted, because a binary search is used during lookups.  However, the array is &lt;b&gt;created&lt;/b&gt; in order during the inode table scan and does not need to be sorted.  As can be seen from the stack, it is &lt;b&gt;another&lt;/b&gt; array that is being sorted that overwrites the &lt;tt&gt;dir_info&lt;/tt&gt; entry:&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;    Hardware watchpoint 16: -location $177-&amp;gt;dotdot

    Old value = 0
    New value = 1581603653
    0x0000003b2ea381f7 in _quicksort ()
       from /lib64/libc.so.6
    (gdb) p $141
    $179 = {ino = 1222630490, dotdot = 0, parent = 0}
    (gdb) bt
    #0  0x0000003b2ea381e1 in _quicksort ()
      from /lib64/libc.so.6
    #1  0x0000003b2ea38f82 in qsort_r ()
      from /lib64/libc.so.6
    #2  0x000000000045447b in ext2fs_dblist_sort2 (
        dblist=0x6c9a90,
        sortfunc=0x428c3d &amp;lt;special_dir_block_cmp&amp;gt;)
        at dblist.c:189
    #3  0x00000000004285bc in e2fsck_pass2 (
        ctx=0x6c4000) at pass2.c:180
    #4  0x000000000041646b in e2fsck_run (ctx=0x6c4000)
        at e2fsck.c:253
    #5  0x0000000000415210 in main (argc=4,
        argv=0x7fffffffe088) at unix.c:2047
    (gdb) p ctx-&amp;gt;dir_info-&amp;gt;array[$140]
    $207 = {ino = 0, dotdot = 1581603653, parent = 0}
    (gdb) f 3
    #3  0x00000000004285bc in e2fsck_pass2 (
        ctx=0x6c4000) at pass2.c:180
    180       ext2fs_dblist_sort2(fs-&amp;gt;dblist, special_dir_block_cmp);
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;The &lt;tt&gt;ext2fs_dblist_sort2()&lt;/tt&gt; is for the directory &lt;b&gt;blocks&lt;/b&gt;, and should not be changing the &lt;tt&gt;dir_info&lt;/tt&gt; array at all.  It can be observed from the above dumps that the &lt;tt&gt;fs-&amp;gt;dblist.list&lt;/tt&gt; address is right in the middle of the dir_info array address range:&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;    (gdb) p *fs-&amp;gt;dblist
    $210 = {magic = 2133571340, fs = 0x6c4460,
      size = 763079922, count = 388821313, sorted = 0,
      list = 0x7ffad011e010}
    (gdb) p &amp;amp;ctx-&amp;gt;dir_info-&amp;gt;array[0]
    $211 = (struct dir_info *) 0x7ffabf2bd010
    (gdb) p &amp;amp;ctx-&amp;gt;dir_info-&amp;gt;array[$140]
    $212 = (struct dir_info *) 0x7ffb3d327f54
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;The problem ends up being that &lt;tt&gt;e2fsck_allocate_memory()&lt;/tt&gt; takes an &lt;tt&gt;unsigned int size&lt;/tt&gt; as an argument instead of &lt;tt&gt;unsigned long&lt;/tt&gt;, which means that the large allocations for &lt;tt&gt;dir_info&lt;/tt&gt; and &lt;tt&gt;dblist&lt;/tt&gt; overflow and actually allocates a small array.  What is surprising is that e2fsck didn&apos;t fail much earlier.&lt;/p&gt;</description>
                <environment></environment>
        <key id="57984">LU-13197</key>
            <summary>e2fsck fails with &apos;Internal error: couldn&apos;t find dir_info for 1222630503&apos;</summary>
                <type id="1" iconUrl="https://jira.whamcloud.com/secure/viewavatar?size=xsmall&amp;avatarId=11303&amp;avatarType=issuetype">Bug</type>
                                            <priority id="4" iconUrl="https://jira.whamcloud.com/images/icons/priorities/minor.svg">Minor</priority>
                        <status id="5" iconUrl="https://jira.whamcloud.com/images/icons/statuses/resolved.png" description="A resolution has been taken, and it is awaiting verification by reporter. From here issues are either reopened, or are closed.">Resolved</status>
                    <statusCategory id="3" key="done" colorName="success"/>
                                    <resolution id="1">Fixed</resolution>
                                        <assignee username="adilger">Andreas Dilger</assignee>
                                    <reporter username="adilger">Andreas Dilger</reporter>
                        <labels>
                            <label>e2fsck</label>
                    </labels>
                <created>Tue, 4 Feb 2020 05:31:38 +0000</created>
                <updated>Wed, 21 Oct 2020 18:14:57 +0000</updated>
                            <resolved>Sun, 24 May 2020 18:48:31 +0000</resolved>
                                                                        <due></due>
                            <votes>0</votes>
                                    <watches>3</watches>
                                                                            <comments>
                            <comment id="262513" author="gerrit" created="Tue, 4 Feb 2020 09:16:19 +0000"  >&lt;p&gt;Andreas Dilger (adilger@whamcloud.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/37423&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37423&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13197&quot; title=&quot;e2fsck fails with &amp;#39;Internal error: couldn&amp;#39;t find dir_info for 1222630503&amp;#39;&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13197&quot;&gt;&lt;del&gt;LU-13197&lt;/del&gt;&lt;/a&gt; e2fsck: fix e2fsck_allocate_memory() overflow&lt;br/&gt;
Project: tools/e2fsprogs&lt;br/&gt;
Branch: master-lustre&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 57b3af688e57cf9b3f7417831feeb1ed72dcaf24&lt;/p&gt;</comment>
                            <comment id="262514" author="gerrit" created="Tue, 4 Feb 2020 09:16:19 +0000"  >&lt;p&gt;Andreas Dilger (adilger@whamcloud.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/37424&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37424&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13197&quot; title=&quot;e2fsck fails with &amp;#39;Internal error: couldn&amp;#39;t find dir_info for 1222630503&amp;#39;&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13197&quot;&gt;&lt;del&gt;LU-13197&lt;/del&gt;&lt;/a&gt; e2fsck: use proper types for variables&lt;br/&gt;
Project: tools/e2fsprogs&lt;br/&gt;
Branch: master-lustre&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 20dffb9334d09230fa370ec1a9959f3d85b8498b&lt;/p&gt;</comment>
                            <comment id="262588" author="gerrit" created="Wed, 5 Feb 2020 03:32:25 +0000"  >&lt;p&gt;Andreas Dilger (adilger@whamcloud.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/37436&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37436&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13197&quot; title=&quot;e2fsck fails with &amp;#39;Internal error: couldn&amp;#39;t find dir_info for 1222630503&amp;#39;&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13197&quot;&gt;&lt;del&gt;LU-13197&lt;/del&gt;&lt;/a&gt; e2fsck: avoid mallinfo() if over 2GB allocated&lt;br/&gt;
Project: tools/e2fsprogs&lt;br/&gt;
Branch: master-lustre&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 5de21015eb5be71eb9cf4649ca78302764d87330&lt;/p&gt;</comment>
                            <comment id="262600" author="gerrit" created="Wed, 5 Feb 2020 05:39:01 +0000"  >&lt;p&gt;Andreas Dilger (adilger@whamcloud.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/37442&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37442&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13197&quot; title=&quot;e2fsck fails with &amp;#39;Internal error: couldn&amp;#39;t find dir_info for 1222630503&amp;#39;&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13197&quot;&gt;&lt;del&gt;LU-13197&lt;/del&gt;&lt;/a&gt; debugfs: print inode numbers as unsigned&lt;br/&gt;
Project: tools/e2fsprogs&lt;br/&gt;
Branch: master-lustre&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 4257f5a600580910d5ec836174e63568d3ce67ab&lt;/p&gt;</comment>
                            <comment id="262601" author="gerrit" created="Wed, 5 Feb 2020 05:39:02 +0000"  >&lt;p&gt;Andreas Dilger (adilger@whamcloud.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/37437&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37437&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13197&quot; title=&quot;e2fsck fails with &amp;#39;Internal error: couldn&amp;#39;t find dir_info for 1222630503&amp;#39;&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13197&quot;&gt;&lt;del&gt;LU-13197&lt;/del&gt;&lt;/a&gt; e2fsck: avoid overflow with very large dirs&lt;br/&gt;
Project: tools/e2fsprogs&lt;br/&gt;
Branch: master-lustre&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: ad71b28b0e6a7fd9ec6675894938c450a6227759&lt;/p&gt;</comment>
                            <comment id="262602" author="gerrit" created="Wed, 5 Feb 2020 05:39:03 +0000"  >&lt;p&gt;Andreas Dilger (adilger@whamcloud.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/37438&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37438&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13197&quot; title=&quot;e2fsck fails with &amp;#39;Internal error: couldn&amp;#39;t find dir_info for 1222630503&amp;#39;&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13197&quot;&gt;&lt;del&gt;LU-13197&lt;/del&gt;&lt;/a&gt; debugfs: allow comment lines in command file&lt;br/&gt;
Project: tools/e2fsprogs&lt;br/&gt;
Branch: master-lustre&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 143bc14353ad8ab68117fb9c37ad8468fc91e33a&lt;/p&gt;</comment>
                            <comment id="262603" author="gerrit" created="Wed, 5 Feb 2020 05:39:03 +0000"  >&lt;p&gt;Andreas Dilger (adilger@whamcloud.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/37439&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37439&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13197&quot; title=&quot;e2fsck fails with &amp;#39;Internal error: couldn&amp;#39;t find dir_info for 1222630503&amp;#39;&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13197&quot;&gt;&lt;del&gt;LU-13197&lt;/del&gt;&lt;/a&gt; misc: handle large files with filefrag&lt;br/&gt;
Project: tools/e2fsprogs&lt;br/&gt;
Branch: master-lustre&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 1c05bd761fbda4af1bf0315041ac4eeb0a635889&lt;/p&gt;</comment>
                            <comment id="262604" author="gerrit" created="Wed, 5 Feb 2020 05:39:04 +0000"  >&lt;p&gt;Andreas Dilger (adilger@whamcloud.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/37440&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37440&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13197&quot; title=&quot;e2fsck fails with &amp;#39;Internal error: couldn&amp;#39;t find dir_info for 1222630503&amp;#39;&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13197&quot;&gt;&lt;del&gt;LU-13197&lt;/del&gt;&lt;/a&gt; e2fsck: fix overflow if more than 4B inodes&lt;br/&gt;
Project: tools/e2fsprogs&lt;br/&gt;
Branch: master-lustre&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 3efa3970c95e8d3b0e76ff8be590392b666c6fcf&lt;/p&gt;</comment>
                            <comment id="262605" author="gerrit" created="Wed, 5 Feb 2020 05:39:04 +0000"  >&lt;p&gt;Andreas Dilger (adilger@whamcloud.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/37441&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37441&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13197&quot; title=&quot;e2fsck fails with &amp;#39;Internal error: couldn&amp;#39;t find dir_info for 1222630503&amp;#39;&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13197&quot;&gt;&lt;del&gt;LU-13197&lt;/del&gt;&lt;/a&gt; e2fsck: consistently use ext2fs_get_mem()&lt;br/&gt;
Project: tools/e2fsprogs&lt;br/&gt;
Branch: master-lustre&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 415915e6bc4d1f17571f41787d7abc4605e11919&lt;/p&gt;</comment>
                            <comment id="262606" author="gerrit" created="Wed, 5 Feb 2020 05:39:05 +0000"  >&lt;p&gt;Andreas Dilger (adilger@whamcloud.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/37443&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37443&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13197&quot; title=&quot;e2fsck fails with &amp;#39;Internal error: couldn&amp;#39;t find dir_info for 1222630503&amp;#39;&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13197&quot;&gt;&lt;del&gt;LU-13197&lt;/del&gt;&lt;/a&gt; e2fsck: reduce memory usage for directories&lt;br/&gt;
Project: tools/e2fsprogs&lt;br/&gt;
Branch: master-lustre&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: ee8acbe15a3bd8b2c01b0bb21114bf0b3348e382&lt;/p&gt;</comment>
                            <comment id="262936" author="gerrit" created="Sat, 8 Feb 2020 15:00:38 +0000"  >&lt;p&gt;Andreas Dilger (adilger@whamcloud.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/37489&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37489&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13197&quot; title=&quot;e2fsck fails with &amp;#39;Internal error: couldn&amp;#39;t find dir_info for 1222630503&amp;#39;&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13197&quot;&gt;&lt;del&gt;LU-13197&lt;/del&gt;&lt;/a&gt; misc: update build version to 1.45.2.wc2&lt;br/&gt;
Project: tools/e2fsprogs&lt;br/&gt;
Branch: master-lustre&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 9574611bb51c5671f111e0a555e23e46391eb132&lt;/p&gt;</comment>
                            <comment id="270907" author="gerrit" created="Fri, 22 May 2020 06:18:10 +0000"  >&lt;p&gt;Andreas Dilger (adilger@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/37489/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37489/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13197&quot; title=&quot;e2fsck fails with &amp;#39;Internal error: couldn&amp;#39;t find dir_info for 1222630503&amp;#39;&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13197&quot;&gt;&lt;del&gt;LU-13197&lt;/del&gt;&lt;/a&gt; misc: update build version to 1.45.2.wc2&lt;br/&gt;
Project: tools/e2fsprogs&lt;br/&gt;
Branch: master-lustre&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 815b2a77c913198181284dba2130e1802c881182&lt;/p&gt;</comment>
                            <comment id="270908" author="gerrit" created="Fri, 22 May 2020 06:18:24 +0000"  >&lt;p&gt;Andreas Dilger (adilger@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/37423/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37423/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13197&quot; title=&quot;e2fsck fails with &amp;#39;Internal error: couldn&amp;#39;t find dir_info for 1222630503&amp;#39;&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13197&quot;&gt;&lt;del&gt;LU-13197&lt;/del&gt;&lt;/a&gt; e2fsck: fix e2fsck_allocate_memory() overflow&lt;br/&gt;
Project: tools/e2fsprogs&lt;br/&gt;
Branch: master-lustre&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 007512516f96292f29cf8c3ea1534880a7802081&lt;/p&gt;</comment>
                            <comment id="270910" author="gerrit" created="Fri, 22 May 2020 06:29:54 +0000"  >&lt;p&gt;Andreas Dilger (adilger@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/37424/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37424/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13197&quot; title=&quot;e2fsck fails with &amp;#39;Internal error: couldn&amp;#39;t find dir_info for 1222630503&amp;#39;&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13197&quot;&gt;&lt;del&gt;LU-13197&lt;/del&gt;&lt;/a&gt; e2fsck: use proper types for variables&lt;br/&gt;
Project: tools/e2fsprogs&lt;br/&gt;
Branch: master-lustre&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 77bccf803dea6cb9a69cfd334619c7552143f3cf&lt;/p&gt;</comment>
                            <comment id="270912" author="gerrit" created="Fri, 22 May 2020 06:45:49 +0000"  >&lt;p&gt;Andreas Dilger (adilger@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/37437/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37437/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13197&quot; title=&quot;e2fsck fails with &amp;#39;Internal error: couldn&amp;#39;t find dir_info for 1222630503&amp;#39;&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13197&quot;&gt;&lt;del&gt;LU-13197&lt;/del&gt;&lt;/a&gt; e2fsck: avoid overflow with very large dirs&lt;br/&gt;
Project: tools/e2fsprogs&lt;br/&gt;
Branch: master-lustre&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 8051687bc488a00fb3e17554064c308add13cbcf&lt;/p&gt;</comment>
                            <comment id="271005" author="gerrit" created="Sat, 23 May 2020 23:02:37 +0000"  >&lt;p&gt;Andreas Dilger (adilger@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/37436/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37436/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13197&quot; title=&quot;e2fsck fails with &amp;#39;Internal error: couldn&amp;#39;t find dir_info for 1222630503&amp;#39;&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13197&quot;&gt;&lt;del&gt;LU-13197&lt;/del&gt;&lt;/a&gt; e2fsck: avoid mallinfo() if over 2GB allocated&lt;br/&gt;
Project: tools/e2fsprogs&lt;br/&gt;
Branch: master-lustre&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 039b852c6a40e12bec0d621bf7aa4f9b554a8dbc&lt;/p&gt;</comment>
                            <comment id="271006" author="gerrit" created="Sat, 23 May 2020 23:02:55 +0000"  >&lt;p&gt;Andreas Dilger (adilger@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/37438/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37438/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13197&quot; title=&quot;e2fsck fails with &amp;#39;Internal error: couldn&amp;#39;t find dir_info for 1222630503&amp;#39;&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13197&quot;&gt;&lt;del&gt;LU-13197&lt;/del&gt;&lt;/a&gt; debugfs: allow comment lines in command file&lt;br/&gt;
Project: tools/e2fsprogs&lt;br/&gt;
Branch: master-lustre&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 8c041aaa224cf2349c4df9718bc42d8925425ffa&lt;/p&gt;</comment>
                            <comment id="271007" author="gerrit" created="Sat, 23 May 2020 23:03:07 +0000"  >&lt;p&gt;Andreas Dilger (adilger@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/37442/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37442/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13197&quot; title=&quot;e2fsck fails with &amp;#39;Internal error: couldn&amp;#39;t find dir_info for 1222630503&amp;#39;&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13197&quot;&gt;&lt;del&gt;LU-13197&lt;/del&gt;&lt;/a&gt; debugfs: print inode numbers as unsigned&lt;br/&gt;
Project: tools/e2fsprogs&lt;br/&gt;
Branch: master-lustre&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: f4f013381df959141803cadd709d2301c176a204&lt;/p&gt;</comment>
                            <comment id="271008" author="gerrit" created="Sun, 24 May 2020 05:48:13 +0000"  >&lt;p&gt;Andreas Dilger (adilger@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/37443/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37443/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13197&quot; title=&quot;e2fsck fails with &amp;#39;Internal error: couldn&amp;#39;t find dir_info for 1222630503&amp;#39;&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13197&quot;&gt;&lt;del&gt;LU-13197&lt;/del&gt;&lt;/a&gt; e2fsck: reduce memory usage for directories&lt;br/&gt;
Project: tools/e2fsprogs&lt;br/&gt;
Branch: master-lustre&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 4eaf6ab403bbcab0036938ad1a6b9ec6d69734a0&lt;/p&gt;</comment>
                            <comment id="271018" author="gerrit" created="Sun, 24 May 2020 16:05:24 +0000"  >&lt;p&gt;Andreas Dilger (adilger@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/37439/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37439/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13197&quot; title=&quot;e2fsck fails with &amp;#39;Internal error: couldn&amp;#39;t find dir_info for 1222630503&amp;#39;&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13197&quot;&gt;&lt;del&gt;LU-13197&lt;/del&gt;&lt;/a&gt; misc: handle large files with filefrag&lt;br/&gt;
Project: tools/e2fsprogs&lt;br/&gt;
Branch: master-lustre&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: bd3c5a11044c9427066a0b2a3122787a269ddeb0&lt;/p&gt;</comment>
                            <comment id="271019" author="gerrit" created="Sun, 24 May 2020 16:05:35 +0000"  >&lt;p&gt;Andreas Dilger (adilger@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/37440/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37440/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13197&quot; title=&quot;e2fsck fails with &amp;#39;Internal error: couldn&amp;#39;t find dir_info for 1222630503&amp;#39;&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13197&quot;&gt;&lt;del&gt;LU-13197&lt;/del&gt;&lt;/a&gt; e2fsck: fix overflow if more than 4B inodes&lt;br/&gt;
Project: tools/e2fsprogs&lt;br/&gt;
Branch: master-lustre&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 9450cab0c2398871f026afcb56a3eab02ed78b40&lt;/p&gt;</comment>
                            <comment id="271020" author="gerrit" created="Sun, 24 May 2020 16:05:45 +0000"  >&lt;p&gt;Andreas Dilger (adilger@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/37441/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37441/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13197&quot; title=&quot;e2fsck fails with &amp;#39;Internal error: couldn&amp;#39;t find dir_info for 1222630503&amp;#39;&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13197&quot;&gt;&lt;del&gt;LU-13197&lt;/del&gt;&lt;/a&gt; e2fsck: consistently use ext2fs_get_mem()&lt;br/&gt;
Project: tools/e2fsprogs&lt;br/&gt;
Branch: master-lustre&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: cad09f5e6107df65f7927a1d8e104de74cbb16d5&lt;/p&gt;</comment>
                            <comment id="271023" author="adilger" created="Sun, 24 May 2020 18:48:31 +0000"  >&lt;p&gt;All patches for this issue are landed, will tag this release as 1.45.2.wc2 in the repo. &lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10010">
                    <name>Duplicate</name>
                                                                <inwardlinks description="is duplicated by">
                                                        </inwardlinks>
                                    </issuelinktype>
                            <issuelinktype id="10011">
                    <name>Related</name>
                                                                <inwardlinks description="is related to">
                                        <issuelink>
            <issuekey id="58770">LU-13452</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="61290">LU-14056</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="59334">LU-13604</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="59187">LU-13558</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|i00t53:</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>