<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 03:32:43 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-17110] Slab corruption using fiemap ioctl with fm_extent_count==0</title>
                <link>https://jira.whamcloud.com/browse/LU-17110</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;We hit this initially on a production env with 2.15 clients using mpifileutils dsync.&lt;br/&gt;
dsync first fiemap call is used to determine the number of extent in the file with no extent allocated in the fiemap structure (.fm_extent_count = 0). &lt;/p&gt;

&lt;p&gt;Reproducer (reproduced on master branch):&lt;/p&gt;
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-c&quot;&gt;
&lt;span class=&quot;code-macro&quot;&gt;#include &lt;span class=&quot;code-quote-red&quot;&gt;&amp;lt;sys/types.h&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;span class=&quot;code-macro&quot;&gt;#include &lt;span class=&quot;code-quote-red&quot;&gt;&amp;lt;sys/stat.h&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;span class=&quot;code-macro&quot;&gt;#include &lt;span class=&quot;code-quote-red&quot;&gt;&amp;lt;fcntl.h&amp;gt;&lt;/span&gt;
&lt;/span&gt;
&lt;span class=&quot;code-macro&quot;&gt;#include &lt;span class=&quot;code-quote-red&quot;&gt;&amp;lt;linux/fs.h&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;span class=&quot;code-macro&quot;&gt;#include &lt;span class=&quot;code-quote-red&quot;&gt;&amp;lt;linux/fiemap.h&amp;gt;&lt;/span&gt;
&lt;/span&gt;
&lt;span class=&quot;code-keyword&quot;&gt;&lt;span class=&quot;code-object&quot;&gt;int&lt;/span&gt;&lt;/span&gt; main(&lt;span class=&quot;code-keyword&quot;&gt;&lt;span class=&quot;code-object&quot;&gt;int&lt;/span&gt;&lt;/span&gt; argc, &lt;span class=&quot;code-keyword&quot;&gt;&lt;span class=&quot;code-object&quot;&gt;char&lt;/span&gt;&lt;/span&gt; **argv)
{
        &lt;span class=&quot;code-keyword&quot;&gt;&lt;span class=&quot;code-object&quot;&gt;char&lt;/span&gt;&lt;/span&gt; *fname;
        &lt;span class=&quot;code-keyword&quot;&gt;&lt;span class=&quot;code-object&quot;&gt;int&lt;/span&gt;&lt;/span&gt; fsize;
        &lt;span class=&quot;code-keyword&quot;&gt;&lt;span class=&quot;code-object&quot;&gt;int&lt;/span&gt;&lt;/span&gt; fd; 
        &lt;span class=&quot;code-keyword&quot;&gt;&lt;span class=&quot;code-object&quot;&gt;int&lt;/span&gt;&lt;/span&gt; i;
        &lt;span class=&quot;code-keyword&quot;&gt;struct&lt;/span&gt; fiemap fiemap = { 
                .fm_start  = 0,
                .fm_flags  = FIEMAP_FLAG_SYNC,
                .fm_extent_count   = 0,
                .fm_mapped_extents = 0,
        };  

        if (argc &amp;lt;= 1)
                &lt;span class=&quot;code-keyword&quot;&gt;return&lt;/span&gt; 1;

        fname = argv[1];

        fd = open(fname, O_RDONLY);
        if (fd &amp;lt; 0) {
                perror(&lt;span class=&quot;code-quote-red&quot;&gt;&quot;Failed to open&quot;&lt;/span&gt;);
                &lt;span class=&quot;code-keyword&quot;&gt;return&lt;/span&gt; 1;
        }   

        fsize = lseek(fd, 0, SEEK_END);
        if (fsize &amp;lt; 0)
                &lt;span class=&quot;code-keyword&quot;&gt;return&lt;/span&gt; 1;
        lseek(fd, 0, SEEK_SET);

        fiemap.fm_length = fsize;

        &lt;span class=&quot;code-keyword&quot;&gt;while&lt;/span&gt; (1) {
                printf(&lt;span class=&quot;code-quote-red&quot;&gt;&quot;iter: %i\n&quot;&lt;/span&gt;, ++i);
                if (ioctl(fd, FS_IOC_FIEMAP, &amp;amp;fiemap) &amp;lt; 0) {
                        perror(&lt;span class=&quot;code-quote-red&quot;&gt;&quot;FS_IOC_FIEMAP ioctl failed&quot;&lt;/span&gt;);
                        &lt;span class=&quot;code-keyword&quot;&gt;return&lt;/span&gt; 1;
                }   
                usleep(1000);
        }   

        &lt;span class=&quot;code-keyword&quot;&gt;return&lt;/span&gt; 0;
}
&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;  116.791028] WARNING: CPU: 1 PID: 13475 at lib/list_debug.c:33 __list_add+0xac/0xc0
[  116.791035] list_add corruption. prev-&amp;gt;next should be next (ffff8848b7c2d390), but was ffff8848b7c2d391. (prev=ffff8848a584fe28).
[  116.791039] Modules linked in: loop zfs(POE) zunicode(POE) zzstd(OE) zlua(OE) zcommon(POE) znvpair(POE) zavl(POE) icp(POE) spl(OE) lustre(OE) ofd(OE) osp(OE) lod(OE) ost(OE) mdt(OE) mdd(OE) mgs(OE) osd_ldiskfs(OE) ldiskfs(OE) lquota(OE) lfsck(OE) obdecho(OE) mgc(OE) mdc(OE) lov(OE) osc(OE) lmv(OE) fid(OE) fld(OE) ptlrpc_gss(OE) ptlrpc(OE) obdclass(OE) ksocklnd(OE) lnet(OE) joydev libcfs(OE) dm_flakey rpcsec_gss_krb5 auth_rpcgss nfsv4 dns_resolver nfs lockd cuse grace fuse fscache sunrpc ext4 mbcache jbd2 ppdev iosf_mbi crc32_pclmul ghash_clmulni_intel snd_intel8x0 snd_ac97_codec ac97_bus snd_seq snd_seq_device snd_pcm aesni_intel lrw gf128mul glue_helper ablk_helper cryptd sg pcspkr parport_pc snd_timer vboxguest(OE) snd parport video soundcore i2c_piix4 binfmt_misc ip_tables xfs libcrc32c sr_mod
[  116.791250]  cdrom sd_mod crc_t10dif crct10dif_generic ata_generic pata_acpi vmwgfx drm_kms_helper syscopyarea sysfillrect sysimgblt fb_sys_fops ttm drm ata_piix ahci libahci crct10dif_pclmul crct10dif_common crc32c_intel serio_raw e1000 libata drm_panel_orientation_quirks dm_mirror dm_region_hash dm_log dm_mod
[  116.791317] CPU: 1 PID: 13475 Comm: fiemap_test Kdump: loaded Tainted: P        W  OE  ------------   3.10.0-1160.59.1.el7.centos.plus.x86_64 #1
[  116.791322] Hardware name: innotek GmbH VirtualBox/VirtualBox, BIOS VirtualBox 12/01/2006
[  116.791327] Call Trace:
[  116.791348]  [&amp;lt;ffffffff89d975b9&amp;gt;] dump_stack+0x19/0x1b
[  116.791358]  [&amp;lt;ffffffff8969b278&amp;gt;] __warn+0xd8/0x100
[  116.791364]  [&amp;lt;ffffffff8969b2ff&amp;gt;] warn_slowpath_fmt+0x5f/0x80
[  116.791374]  [&amp;lt;ffffffff899b745c&amp;gt;] __list_add+0xac/0xc0
[  116.791417]  [&amp;lt;ffffffffc08964ba&amp;gt;] libcfs_debug_msg+0x2da/0xac0 [libcfs]
[  116.791431]  [&amp;lt;ffffffff899a351b&amp;gt;] ? string.isra.7+0x3b/0xf0
[  116.791669]  [&amp;lt;ffffffffc0d55040&amp;gt;] ? lock_matches+0x230/0x230 [ptlrpc]
[  116.791837]  [&amp;lt;ffffffffc0d51cc7&amp;gt;] _ldlm_lock_debug+0x647/0x830 [ptlrpc]
[  116.791944]  [&amp;lt;ffffffffc0d5358d&amp;gt;] ? ldlm_lock_remove_from_lru_nolock+0x3d/0xe0 [ptlrpc]
[  116.792046]  [&amp;lt;ffffffffc0d55040&amp;gt;] ? lock_matches+0x230/0x230 [ptlrpc]
[  116.792157]  [&amp;lt;ffffffffc0d54d10&amp;gt;] ldlm_lock_addref_internal_nolock+0x80/0x100 [ptlrpc]
[  116.792282]  [&amp;lt;ffffffffc0d5503b&amp;gt;] lock_matches+0x22b/0x230 [ptlrpc]
[  116.792391]  [&amp;lt;ffffffffc0d5508e&amp;gt;] itree_overlap_cb+0x4e/0x70 [ptlrpc]
[  116.792511]  [&amp;lt;ffffffffc0a7ae3b&amp;gt;] interval_search+0x8b/0x220 [obdclass]
[  116.792735]  [&amp;lt;ffffffffc0d51534&amp;gt;] search_itree+0x94/0xd0 [ptlrpc]
[  116.792878]  [&amp;lt;ffffffffc0d5612f&amp;gt;] ldlm_lock_match_with_skip+0x29f/0x9a0 [ptlrpc]
[  116.792892]  [&amp;lt;ffffffff899a4c64&amp;gt;] ? vsnprintf+0x234/0x6a0
[  116.792908]  [&amp;lt;ffffffff899a4c64&amp;gt;] ? vsnprintf+0x234/0x6a0
[  116.792944]  [&amp;lt;ffffffffc0fa0fbd&amp;gt;] osc_object_fiemap+0x15d/0x6a0 [osc]
[  116.793033]  [&amp;lt;ffffffffc0a66313&amp;gt;] cl_object_fiemap+0x73/0x160 [obdclass]
[  116.793066]  [&amp;lt;ffffffffc10324f0&amp;gt;] lov_object_fiemap+0x1300/0x18f0 [lov]
[  116.793131]  [&amp;lt;ffffffffc1701c50&amp;gt;] ? vvp_io_fini+0x410/0x710 [lustre]
[  116.793215]  [&amp;lt;ffffffffc0a66313&amp;gt;] cl_object_fiemap+0x73/0x160 [obdclass]
[  116.793267]  [&amp;lt;ffffffffc169cb5c&amp;gt;] ll_do_fiemap+0x2bc/0x390 [lustre]
[  116.793318]  [&amp;lt;ffffffffc169d057&amp;gt;] ll_fiemap+0x427/0x5f0 [lustre]
[  116.793332]  [&amp;lt;ffffffff89863934&amp;gt;] do_vfs_ioctl+0x204/0x5b0
[  116.793343]  [&amp;lt;ffffffff89863d81&amp;gt;] SyS_ioctl+0xa1/0xc0
[  116.793356]  [&amp;lt;ffffffff89daaec9&amp;gt;] ? system_call_after_swapgs+0x96/0x13a
[  116.793366]  [&amp;lt;ffffffff89daaf92&amp;gt;] system_call_fastpath+0x25/0x2a
[  116.793379]  [&amp;lt;ffffffff89daaed5&amp;gt;] ? system_call_after_swapgs+0xa2/0x13a
[  116.793388] ---[ end trace d89bc4ba123f5eec ]---
[  117.442039] ------------[ cut here ]------------
[  117.442047] WARNING: CPU: 1 PID: 13475 at lib/list_debug.c:62 __list_del_entry+0x82/0xd0
[  117.442049] list_del corruption. next-&amp;gt;prev should be ffff8848a584f1a8, but was a5ffff8848a584f1
[  117.442050] Modules linked in: loop zfs(POE) zunicode(POE) zzstd(OE) zlua(OE) zcommon(POE) znvpair(POE) zavl(POE) icp(POE) spl(OE) lustre(OE) ofd(OE) osp(OE) lod(OE) ost(OE) mdt(OE) mdd(OE) mgs(OE) osd_ldiskfs(OE) ldiskfs(OE) lquota(OE) lfsck(OE) obdecho(OE) mgc(OE) mdc(OE) lov(OE) osc(OE) lmv(OE) fid(OE) fld(OE) ptlrpc_gss(OE) ptlrpc(OE) obdclass(OE) ksocklnd(OE) lnet(OE) joydev libcfs(OE) dm_flakey rpcsec_gss_krb5 auth_rpcgss nfsv4 dns_resolver nfs lockd cuse grace fuse fscache sunrpc ext4 mbcache jbd2 ppdev iosf_mbi crc32_pclmul ghash_clmulni_intel snd_intel8x0 snd_ac97_codec ac97_bus snd_seq snd_seq_device snd_pcm aesni_intel lrw gf128mul glue_helper ablk_helper cryptd sg pcspkr parport_pc snd_timer vboxguest(OE) snd parport video soundcore i2c_piix4 binfmt_misc ip_tables xfs libcrc32c sr_mod
[  117.442116]  cdrom sd_mod crc_t10dif crct10dif_generic ata_generic pata_acpi vmwgfx drm_kms_helper syscopyarea sysfillrect sysimgblt fb_sys_fops ttm drm ata_piix ahci libahci crct10dif_pclmul crct10dif_common crc32c_intel serio_raw e1000 libata drm_panel_orientation_quirks dm_mirror dm_region_hash dm_log dm_mod
[  117.442139] CPU: 1 PID: 13475 Comm: fiemap_test Kdump: loaded Tainted: P        W  OE  ------------   3.10.0-1160.59.1.el7.centos.plus.x86_64 #1
[  117.442141] Hardware name: innotek GmbH VirtualBox/VirtualBox, BIOS VirtualBox 12/01/2006
[  117.442143] Call Trace:
[  117.442149]  [&amp;lt;ffffffff89d975b9&amp;gt;] dump_stack+0x19/0x1b
[  117.442152]  [&amp;lt;ffffffff8969b278&amp;gt;] __warn+0xd8/0x100
[  117.442155]  [&amp;lt;ffffffff8969b2ff&amp;gt;] warn_slowpath_fmt+0x5f/0x80
[  117.442174]  [&amp;lt;ffffffffc092ffff&amp;gt;] ? lnet_rtrpools_alloc+0x17f/0x320 [lnet]
[  117.442177]  [&amp;lt;ffffffff899b74f2&amp;gt;] __list_del_entry+0x82/0xd0
[  117.442187]  [&amp;lt;ffffffffc0896185&amp;gt;] cfs_tage_to_tail+0x25/0x80 [libcfs]
[  117.442195]  [&amp;lt;ffffffffc0896abd&amp;gt;] libcfs_debug_msg+0x8dd/0xac0 [libcfs]
[  117.442199]  [&amp;lt;ffffffff899a351b&amp;gt;] ? string.isra.7+0x3b/0xf0
[  117.442255]  [&amp;lt;ffffffffc0d55040&amp;gt;] ? lock_matches+0x230/0x230 [ptlrpc]
[  117.442300]  [&amp;lt;ffffffffc0d51cc7&amp;gt;] _ldlm_lock_debug+0x647/0x830 [ptlrpc]
[  117.442345]  [&amp;lt;ffffffffc0d5358d&amp;gt;] ? ldlm_lock_remove_from_lru_nolock+0x3d/0xe0 [ptlrpc]
[  117.442388]  [&amp;lt;ffffffffc0d55040&amp;gt;] ? lock_matches+0x230/0x230 [ptlrpc]
[  117.442432]  [&amp;lt;ffffffffc0d54d10&amp;gt;] ldlm_lock_addref_internal_nolock+0x80/0x100 [ptlrpc]
[  117.442473]  [&amp;lt;ffffffffc0d5503b&amp;gt;] lock_matches+0x22b/0x230 [ptlrpc]
[  117.442514]  [&amp;lt;ffffffffc0d5508e&amp;gt;] itree_overlap_cb+0x4e/0x70 [ptlrpc]
[  117.442568]  [&amp;lt;ffffffffc0a7ae3b&amp;gt;] interval_search+0x8b/0x220 [obdclass]
[  117.442653]  [&amp;lt;ffffffffc0d51534&amp;gt;] search_itree+0x94/0xd0 [ptlrpc]
[  117.442698]  [&amp;lt;ffffffffc0d5612f&amp;gt;] ldlm_lock_match_with_skip+0x29f/0x9a0 [ptlrpc]
[  117.442704]  [&amp;lt;ffffffff899a4c64&amp;gt;] ? vsnprintf+0x234/0x6a0
[  117.442707]  [&amp;lt;ffffffff899a4c64&amp;gt;] ? vsnprintf+0x234/0x6a0
[  117.442719]  [&amp;lt;ffffffffc0fa0fbd&amp;gt;] osc_object_fiemap+0x15d/0x6a0 [osc]
[  117.442746]  [&amp;lt;ffffffffc0a66313&amp;gt;] cl_object_fiemap+0x73/0x160 [obdclass]
[  117.442758]  [&amp;lt;ffffffffc10324f0&amp;gt;] lov_object_fiemap+0x1300/0x18f0 [lov]
[  117.442792]  [&amp;lt;ffffffffc1701c50&amp;gt;] ? vvp_io_fini+0x410/0x710 [lustre]
[  117.442832]  [&amp;lt;ffffffffc0a66313&amp;gt;] cl_object_fiemap+0x73/0x160 [obdclass]
[  117.442847]  [&amp;lt;ffffffffc169cb5c&amp;gt;] ll_do_fiemap+0x2bc/0x390 [lustre]
[  117.442862]  [&amp;lt;ffffffffc169d057&amp;gt;] ll_fiemap+0x427/0x5f0 [lustre]
[  117.442867]  [&amp;lt;ffffffff89863934&amp;gt;] do_vfs_ioctl+0x204/0x5b0
[  117.442870]  [&amp;lt;ffffffff89863d81&amp;gt;] SyS_ioctl+0xa1/0xc0
[  117.442875]  [&amp;lt;ffffffff89daaec9&amp;gt;] ? system_call_after_swapgs+0x96/0x13a
[  117.442881]  [&amp;lt;ffffffff89daaf92&amp;gt;] system_call_fastpath+0x25/0x2a
[  117.442885]  [&amp;lt;ffffffff89daaed5&amp;gt;] ? system_call_after_swapgs+0xa2/0x13a
[  117.442887] ---[ end trace d89bc4ba123f5eed ]---
[  118.280802] general protection fault: 0000 [#1] SMP 
[  118.280822] Modules linked in: loop zfs(POE) zunicode(POE) zzstd(OE) zlua(OE) zcommon(POE) znvpair(POE) zavl(POE) icp(POE) spl(OE) lustre(OE) ofd(OE) osp(OE) lod(OE) ost(OE) mdt(OE) mdd(OE) mgs(OE) osd_ldiskfs(OE) ldiskfs(OE) lquota(OE) lfsck(OE) obdecho(OE) mgc(OE) mdc(OE) lov(OE) osc(OE) lmv(OE) fid(OE) fld(OE) ptlrpc_gss(OE) ptlrpc(OE) obdclass(OE) ksocklnd(OE) lnet(OE) joydev libcfs(OE) dm_flakey rpcsec_gss_krb5 auth_rpcgss nfsv4 dns_resolver nfs lockd cuse grace fuse fscache sunrpc ext4 mbcache jbd2 ppdev iosf_mbi crc32_pclmul ghash_clmulni_intel snd_intel8x0 snd_ac97_codec ac97_bus snd_seq snd_seq_device snd_pcm aesni_intel lrw gf128mul glue_helper ablk_helper cryptd sg pcspkr parport_pc snd_timer vboxguest(OE) snd parport video soundcore i2c_piix4 binfmt_misc ip_tables xfs libcrc32c sr_mod
[  118.281074]  cdrom sd_mod crc_t10dif crct10dif_generic ata_generic pata_acpi vmwgfx drm_kms_helper syscopyarea sysfillrect sysimgblt fb_sys_fops ttm drm ata_piix ahci libahci crct10dif_pclmul crct10dif_common crc32c_intel serio_raw e1000 libata drm_panel_orientation_quirks dm_mirror dm_region_hash dm_log dm_mod
[  118.281166] CPU: 1 PID: 13478 Comm: abrt-server Kdump: loaded Tainted: P        W  OE  ------------   3.10.0-1160.59.1.el7.centos.plus.x86_64 #1
[  118.281195] Hardware name: innotek GmbH VirtualBox/VirtualBox, BIOS VirtualBox 12/01/2006
[  118.281214] task: ffff8848b767a100 ti: ffff8848b8b60000 task.ti: ffff8848b8b60000
[  118.281231] RIP: 0010:[&amp;lt;ffffffffc04519e0&amp;gt;]  [&amp;lt;ffffffffc04519e0&amp;gt;] xfs_trans_buf_item_match+0x60/0xa0 [xfs]
[  118.281271] RSP: 0018:ffff8848b8b63948  EFLAGS: 00010212
[  118.281284] RAX: 60ffff8848b8b873 RBX: ffff8848ba1181b0 RCX: ffff88487633f5c1
[  118.281300] RDX: ffff8848b8b639b8 RSI: ffff8848b69e93c0 RDI: ffff8848ba118260
[  118.281317] RBP: ffff8848b8b63948 R08: 0000000000000008 R09: ffff8848b59f1f28
[  118.281333] R10: 0000000002c37820 R11: 0000000000000001 R12: ffff8848b6ab9000
[  118.281349] R13: ffff8848b8b63a00 R14: ffff8848b8b639b8 R15: ffff8848b69e93c0
[  118.281366] FS:  00007fa5e1243900(0000) GS:ffff8848bfd00000(0000) knlGS:0000000000000000
[  118.281384] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  118.281399] CR2: 00007fa5e126f000 CR3: 000000003bece000 CR4: 00000000000606e0
[  118.281438] Call Trace:
[  118.281460]  [&amp;lt;ffffffffc0451da2&amp;gt;] xfs_trans_read_buf_map+0x52/0x2c0 [xfs]
[  118.281485]  [&amp;lt;ffffffffc03f6934&amp;gt;] xfs_btree_read_buf_block.constprop.33+0xa4/0xe0 [xfs]
[  118.281513]  [&amp;lt;ffffffffc03faa45&amp;gt;] xfs_btree_lookup_get_block+0x95/0x1a0 [xfs]
[  118.281543]  [&amp;lt;ffffffffc03facff&amp;gt;] xfs_btree_lookup+0xdf/0x420 [xfs]
[  118.282076]  [&amp;lt;ffffffffc03df60b&amp;gt;] xfs_alloc_lookup_eq+0x1b/0x20 [xfs]
[  118.282591]  [&amp;lt;ffffffffc03e0ed8&amp;gt;] xfs_free_ag_extent+0x278/0x780 [xfs]
[  118.283094]  [&amp;lt;ffffffffc03e33da&amp;gt;] xfs_free_extent+0xaa/0x140 [xfs]
[  118.283604]  [&amp;lt;ffffffffc045272a&amp;gt;] xfs_trans_free_extent+0x4a/0x100 [xfs]
[  118.284103]  [&amp;lt;ffffffffc04527fe&amp;gt;] xfs_extent_free_finish_item+0x1e/0x40 [xfs]
[  118.284596]  [&amp;lt;ffffffffc0401738&amp;gt;] xfs_defer_finish+0x128/0x3d0 [xfs]
[  118.285077]  [&amp;lt;ffffffffc0434cf5&amp;gt;] xfs_itruncate_extents+0xf5/0x220 [xfs]
[  118.285553]  [&amp;lt;ffffffffc0434ed7&amp;gt;] xfs_inactive_truncate+0xb7/0x110 [xfs]
[  118.286014]  [&amp;lt;ffffffffc0435528&amp;gt;] xfs_inactive+0x108/0x130 [xfs]
[  118.286463]  [&amp;lt;ffffffffc043cb15&amp;gt;] xfs_fs_destroy_inode+0x95/0x190 [xfs]
[  118.286899]  [&amp;lt;ffffffff8986c85b&amp;gt;] destroy_inode+0x3b/0x60
[  118.287317]  [&amp;lt;ffffffff8986c995&amp;gt;] evict+0x115/0x180
[  118.287727]  [&amp;lt;ffffffff8986cd6c&amp;gt;] iput+0xfc/0x190
[  118.288120]  [&amp;lt;ffffffff89860b3e&amp;gt;] do_unlinkat+0x1ae/0x2d0
[  118.288511]  [&amp;lt;ffffffff89daaed5&amp;gt;] ? system_call_after_swapgs+0xa2/0x13a
[  118.288892]  [&amp;lt;ffffffff89daaec9&amp;gt;] ? system_call_after_swapgs+0x96/0x13a
[  118.289254]  [&amp;lt;ffffffff89daaed5&amp;gt;] ? system_call_after_swapgs+0xa2/0x13a
[  118.289607]  [&amp;lt;ffffffff89daaec9&amp;gt;] ? system_call_after_swapgs+0x96/0x13a
[  118.289944]  [&amp;lt;ffffffff89daaed5&amp;gt;] ? system_call_after_swapgs+0xa2/0x13a
[  118.290281]  [&amp;lt;ffffffff89daaec9&amp;gt;] ? system_call_after_swapgs+0x96/0x13a
[  118.290601]  [&amp;lt;ffffffff89861bbb&amp;gt;] SyS_unlinkat+0x1b/0x40
[  118.290900]  [&amp;lt;ffffffff89daaf92&amp;gt;] system_call_fastpath+0x25/0x2a
[  118.291189]  [&amp;lt;ffffffff89daaed5&amp;gt;] ? system_call_after_swapgs+0xa2/0x13a
[  118.291476] Code: 48 8b 87 b0 00 00 00 48 81 c7 b0 00 00 00 48 39 c7 48 8d 48 f8 75 11 eb 42 66 90 48 8b 41 08 48 39 c7 48 8d 48 f8 74 33 48 8b 01 &amp;lt;81&amp;gt; 78 30 3c 12 00 00 75 e7 48 8b 80 88 00 00 00 48 39 b0 98 00 
[  118.292459] RIP  [&amp;lt;ffffffffc04519e0&amp;gt;] xfs_trans_buf_item_match+0x60/0xa0 [xfs]
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;It seems that &quot;&lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16480&quot; title=&quot;Lustre fiemap does not properly handle fm_extent_count=0&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16480&quot;&gt;&lt;del&gt;LU-16480&lt;/del&gt;&lt;/a&gt; lov: fiemap improperly handles fm_extent_count=0&quot; did not fix all the cases.&lt;/p&gt;</description>
                <environment>2.15.3 clients&lt;br/&gt;
FS1 2.12 servers (clusterstore)&lt;br/&gt;
FS2 2.15.3 servers</environment>
        <key id="77848">LU-17110</key>
            <summary>Slab corruption using fiemap ioctl with fm_extent_count==0</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="eaujames">Etienne Aujames</assignee>
                                    <reporter username="eaujames">Etienne Aujames</reporter>
                        <labels>
                    </labels>
                <created>Tue, 12 Sep 2023 14:53:13 +0000</created>
                <updated>Thu, 28 Sep 2023 15:14:34 +0000</updated>
                            <resolved>Thu, 28 Sep 2023 15:14:34 +0000</resolved>
                                                    <fixVersion>Lustre 2.16.0</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>3</watches>
                                                                            <comments>
                            <comment id="385631" author="gerrit" created="Tue, 12 Sep 2023 16:16:11 +0000"  >&lt;p&gt;&quot;Etienne AUJAMES &amp;lt;eaujames@ddn.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52352&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52352&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-17110&quot; title=&quot;Slab corruption using fiemap ioctl with fm_extent_count==0&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-17110&quot;&gt;&lt;del&gt;LU-17110&lt;/del&gt;&lt;/a&gt; llite: fix slab corruption with fm_extent_count=0&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: d31ab8180f2ee85054f872333ab19ba36f11294b&lt;/p&gt;</comment>
                            <comment id="387229" author="gerrit" created="Tue, 26 Sep 2023 08:29:24 +0000"  >&lt;p&gt;&quot;Etienne AUJAMES &amp;lt;eaujames@ddn.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52512&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52512&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-17110&quot; title=&quot;Slab corruption using fiemap ioctl with fm_extent_count==0&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-17110&quot;&gt;&lt;del&gt;LU-17110&lt;/del&gt;&lt;/a&gt; llite: fix slab corruption with fm_extent_count=0&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: b2_15&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: aa0718aaf5a66aa83e61e37fefc6b8ad9adda559&lt;/p&gt;</comment>
                            <comment id="387504" author="gerrit" created="Thu, 28 Sep 2023 08:01:37 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52352/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52352/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-17110&quot; title=&quot;Slab corruption using fiemap ioctl with fm_extent_count==0&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-17110&quot;&gt;&lt;del&gt;LU-17110&lt;/del&gt;&lt;/a&gt; llite: fix slab corruption with fm_extent_count=0&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: a81dc7d0e158894e905ab3d309f7b92864a94378&lt;/p&gt;</comment>
                            <comment id="387601" author="pjones" created="Thu, 28 Sep 2023 15:14:34 +0000"  >&lt;p&gt;Landed for 2.16&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10011">
                    <name>Related</name>
                                            <outwardlinks description="is related to ">
                                        <issuelink>
            <issuekey id="54489">LU-11848</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="74016">LU-16480</issuekey>
        </issuelink>
                            </outwardlinks>
                                                        </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|i03v9j:</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>