<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 01:42:55 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-4459] MDT/DNE fault injection</title>
                <link>https://jira.whamcloud.com/browse/LU-4459</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;When I last checked there were more than 10 different assertions I could trip by having a client send an RPC to the wrong MDT. I&apos;m pretty lazy so I just did something like the following.&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;diff --git a/lustre/lmv/lmv_internal.h b/lustre/lmv/lmv_internal.h
index 15692c5..b261dda 100644
--- a/lustre/lmv/lmv_internal.h
+++ b/lustre/lmv/lmv_internal.h
@@ -133,7 +133,11 @@ lmv_find_target(struct lmv_obd *lmv, const struct lu_fid *fid)
         mdsno_t mds = 0;
         int rc;
 
-        if (lmv-&amp;gt;desc.ld_tgt_count &amp;gt; 1) {
+       if (OBD_FAIL_CHECK(0x6000)) {
+               mds = 0;
+       } else if (OBD_FAIL_CHECK(0x6001)) {
+               mds = 1;
+       } else if (lmv-&amp;gt;desc.ld_tgt_count &amp;gt; 1) {
                 rc = lmv_fld_lookup(lmv, fid, &amp;amp;mds);
                 if (rc)
                         return ERR_PTR(rc);

&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;Then I ran racer with MDSCOUNT=2 and I set fail_loc to 0x6000 and 0x6001. Here are some stack traces you can use to frighten small children:&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;LustreError: 13525:0:(mdt_handler.c:1284:mdt_getattr_name_lock()) ASSERTION( !mdt_object_remote(parent) ) failed: Parent [0x2c0000400:0x1:0x0] is on remote server
LustreError: 13525:0:(mdt_handler.c:1284:mdt_getattr_name_lock()) LBUG
Pid: 13525, comm: mdt01_004

Call Trace:
 [&amp;lt;ffffffffa02a9895&amp;gt;] libcfs_debug_dumpstack+0x55/0x80 [libcfs]
 [&amp;lt;ffffffffa02a9e97&amp;gt;] lbug_with_loc+0x47/0xb0 [libcfs]
 [&amp;lt;ffffffffa0bacd82&amp;gt;] mdt_getattr_name_lock+0x10f2/0x1a80 [mdt]
 [&amp;lt;ffffffffa069fb46&amp;gt;] ? __req_capsule_get+0x166/0x710 [ptlrpc]
 [&amp;lt;ffffffffa067a024&amp;gt;] ? lustre_msg_get_flags+0x34/0xb0 [ptlrpc]
 [&amp;lt;ffffffffa0bad9a3&amp;gt;] mdt_intent_getattr+0x293/0x470 [mdt]
 [&amp;lt;ffffffffa0b9ca99&amp;gt;] mdt_intent_policy+0x499/0xca0 [mdt]
 [&amp;lt;ffffffffa062f509&amp;gt;] ldlm_lock_enqueue+0x359/0x920 [ptlrpc]
 [&amp;lt;ffffffffa0658c4f&amp;gt;] ldlm_handle_enqueue0+0x4ef/0x10a0 [ptlrpc]
 [&amp;lt;ffffffffa06d3002&amp;gt;] tgt_enqueue+0x62/0x1d0 [ptlrpc]
 [&amp;lt;ffffffffa06d59fa&amp;gt;] tgt_handle_request0+0x2ea/0x1490 [ptlrpc]
 [&amp;lt;ffffffffa067792c&amp;gt;] ? lustre_msg_get_opc+0x9c/0x110 [ptlrpc]
 [&amp;lt;ffffffffa06d6fda&amp;gt;] tgt_request_handle+0x43a/0x980 [ptlrpc]
 [&amp;lt;ffffffffa068a295&amp;gt;] ptlrpc_main+0xd25/0x1970 [ptlrpc]
 [&amp;lt;ffffffffa0689570&amp;gt;] ? ptlrpc_main+0x0/0x1970 [ptlrpc]
 [&amp;lt;ffffffff81096a36&amp;gt;] kthread+0x96/0xa0
 [&amp;lt;ffffffff8100c0ca&amp;gt;] child_rip+0xa/0x20
 [&amp;lt;ffffffff810969a0&amp;gt;] ? kthread+0x0/0xa0
 [&amp;lt;ffffffff8100c0c0&amp;gt;] ? child_rip+0x0/0x20

LustreError: 15553:0:(mdt_handler.c:2293:mdt_object_lock0()) ASSERTION( !(ibits &amp;amp; (MDS_INODELOCK_UPDATE | MDS_INODELOCK_PERM | MDS_INODELOCK_LAYOUT)) ) failed: lustre-MDT0000: wrong bit 0x2 for remote obj [0x2c0000400:0x1:0x0]
LustreError: 15553:0:(mdt_handler.c:2293:mdt_object_lock0()) LBUG
Pid: 15553, comm: mdt01_008

LustreError: 21830:0:(mdt_reint.c:401:mdt_attr_set()) ASSERTION( !mdt_object_remote(mo) ) failed: 
LustreError: 21830:0:(mdt_reint.c:401:mdt_attr_set()) LBUG
Pid: 21830, comm: mdt00_001

Call Trace:
 [&amp;lt;ffffffffa0e49895&amp;gt;] libcfs_debug_dumpstack+0x55/0x80 [libcfs]
 [&amp;lt;ffffffffa0e49e97&amp;gt;] lbug_with_loc+0x47/0xb0 [libcfs]
 [&amp;lt;ffffffffa0939a59&amp;gt;] mdt_attr_set+0x3a9/0x570 [mdt]
 [&amp;lt;ffffffffa093a1dd&amp;gt;] mdt_reint_setattr+0x5bd/0xcf0 [mdt]
 [&amp;lt;ffffffffa039edae&amp;gt;] ? lustre_pack_reply_flags+0xae/0x1f0 [ptlrpc]
 [&amp;lt;ffffffffa0933a31&amp;gt;] mdt_reint_rec+0x41/0xe0 [mdt]
 [&amp;lt;ffffffffa0919ec3&amp;gt;] mdt_reint_internal+0x4c3/0x780 [mdt]
 [&amp;lt;ffffffffa091a70b&amp;gt;] mdt_reint+0x6b/0x120 [mdt]
 [&amp;lt;ffffffffa03fb9fa&amp;gt;] tgt_handle_request0+0x2ea/0x1490 [ptlrpc]
 [&amp;lt;ffffffffa039d92c&amp;gt;] ? lustre_msg_get_opc+0x9c/0x110 [ptlrpc]
 [&amp;lt;ffffffffa03fcfda&amp;gt;] tgt_request_handle+0x43a/0x980 [ptlrpc]
 [&amp;lt;ffffffffa03b0295&amp;gt;] ptlrpc_main+0xd25/0x1970 [ptlrpc]
 [&amp;lt;ffffffffa03af570&amp;gt;] ? ptlrpc_main+0x0/0x1970 [ptlrpc]
 [&amp;lt;ffffffff81096a36&amp;gt;] kthread+0x96/0xa0
 [&amp;lt;ffffffff8100c0ca&amp;gt;] child_rip+0xa/0x20
 [&amp;lt;ffffffff810969a0&amp;gt;] ? kthread+0x0/0xa0
 [&amp;lt;ffffffff8100c0c0&amp;gt;] ? child_rip+0x0/0x20

LustreError: 5896:0:(mdt_handler.c:3201:mdt_intent_reint()) ASSERTION( lustre_handle_is_used(&amp;amp;lhc-&amp;gt;mlh_reg_lh) ) failed: 
LustreError: 5896:0:(mdt_handler.c:3201:mdt_intent_reint()) LBUG
Pid: 5896, comm: mdt00_002

Call Trace:
 [&amp;lt;ffffffffa02a9895&amp;gt;] libcfs_debug_dumpstack+0x55/0x80 [libcfs]
 [&amp;lt;ffffffffa02a9e97&amp;gt;] lbug_with_loc+0x47/0xb0 [libcfs]
 [&amp;lt;ffffffffa0b9e667&amp;gt;] mdt_intent_reint+0x4e7/0x520 [mdt]
 [&amp;lt;ffffffffa0b9ca99&amp;gt;] mdt_intent_policy+0x499/0xca0 [mdt]
 [&amp;lt;ffffffffa062f509&amp;gt;] ldlm_lock_enqueue+0x359/0x920 [ptlrpc]
 [&amp;lt;ffffffffa0658c4f&amp;gt;] ldlm_handle_enqueue0+0x4ef/0x10a0 [ptlrpc]
 [&amp;lt;ffffffffa06d3002&amp;gt;] tgt_enqueue+0x62/0x1d0 [ptlrpc]
 [&amp;lt;ffffffffa06d59fa&amp;gt;] tgt_handle_request0+0x2ea/0x1490 [ptlrpc]
 [&amp;lt;ffffffffa067792c&amp;gt;] ? lustre_msg_get_opc+0x9c/0x110 [ptlrpc]
 [&amp;lt;ffffffffa06d6fda&amp;gt;] tgt_request_handle+0x43a/0x980 [ptlrpc]
 [&amp;lt;ffffffffa068a295&amp;gt;] ptlrpc_main+0xd25/0x1970 [ptlrpc]
 [&amp;lt;ffffffffa0689570&amp;gt;] ? ptlrpc_main+0x0/0x1970 [ptlrpc]
 [&amp;lt;ffffffff81096a36&amp;gt;] kthread+0x96/0xa0
 [&amp;lt;ffffffff8100c0ca&amp;gt;] child_rip+0xa/0x20
 [&amp;lt;ffffffff810969a0&amp;gt;] ? kthread+0x0/0xa0
 [&amp;lt;ffffffff8100c0c0&amp;gt;] ? child_rip+0x0/0x20

LustreError: 8529:0:(mdt_handler.c:2294:mdt_object_lock0()) ASSERTION( !(ibits &amp;amp; (MDS_INOD
ELOCK_UPDATE | MDS_INODELOCK_PERM | MDS_INODELOCK_LAYOUT)) ) failed: lustre-MDT0000: wrong bit 0x12 for remote obj [0x2c0000400:0x1:0x0]
LustreError: 8529:0:(mdt_handler.c:2294:mdt_object_lock0()) LBUG
Pid: 8529, comm: mdt01_006

Call Trace:
 [&amp;lt;ffffffffa02a9895&amp;gt;] libcfs_debug_dumpstack+0x55/0x80 [libcfs]
 [&amp;lt;ffffffffa02a9e97&amp;gt;] lbug_with_loc+0x47/0xb0 [libcfs]
 [&amp;lt;ffffffffa0ba286e&amp;gt;] mdt_object_lock0+0xaee/0xaf0 [mdt]
 [&amp;lt;ffffffffa069fb46&amp;gt;] ? __req_capsule_get+0x166/0x710 [ptlrpc]
 [&amp;lt;ffffffffa0ba2934&amp;gt;] mdt_object_lock+0x14/0x20 [mdt]
 [&amp;lt;ffffffffa0bac935&amp;gt;] mdt_getattr_name_lock+0xc75/0x1af0 [mdt]
 [&amp;lt;ffffffffa069fb46&amp;gt;] ? __req_capsule_get+0x166/0x710 [ptlrpc]
 [&amp;lt;ffffffffa067a024&amp;gt;] ? lustre_msg_get_flags+0x34/0xb0 [ptlrpc]
 [&amp;lt;ffffffffa0bada43&amp;gt;] mdt_intent_getattr+0x293/0x470 [mdt]
 [&amp;lt;ffffffffa0b9ca99&amp;gt;] mdt_intent_policy+0x499/0xca0 [mdt]
 [&amp;lt;ffffffffa062f509&amp;gt;] ldlm_lock_enqueue+0x359/0x920 [ptlrpc]
 [&amp;lt;ffffffffa0658c4f&amp;gt;] ldlm_handle_enqueue0+0x4ef/0x10a0 [ptlrpc]
 [&amp;lt;ffffffffa06d3002&amp;gt;] tgt_enqueue+0x62/0x1d0 [ptlrpc]
 [&amp;lt;ffffffffa06d59fa&amp;gt;] tgt_handle_request0+0x2ea/0x1490 [ptlrpc]
 [&amp;lt;ffffffffa067792c&amp;gt;] ? lustre_msg_get_opc+0x9c/0x110 [ptlrpc]
 [&amp;lt;ffffffffa06d6fda&amp;gt;] tgt_request_handle+0x43a/0x980 [ptlrpc]
 [&amp;lt;ffffffffa068a295&amp;gt;] ptlrpc_main+0xd25/0x1970 [ptlrpc]
 [&amp;lt;ffffffffa0689570&amp;gt;] ? ptlrpc_main+0x0/0x1970 [ptlrpc]
 [&amp;lt;ffffffff81096a36&amp;gt;] kthread+0x96/0xa0
 [&amp;lt;ffffffff8100c0ca&amp;gt;] child_rip+0xa/0x20
 [&amp;lt;ffffffff810969a0&amp;gt;] ? kthread+0x0/0xa0
 [&amp;lt;ffffffff8100c0c0&amp;gt;] ? child_rip+0x0/0x20


Lustre: 8370:0:(mdt_open.c:1509:mdt_cross_open()) Object isn&apos;t on this server! FLD error?
LustreError: 5849:0:(osp_md_object.c:965:osp_it_load()) LBUG
Pid: 5849, comm: mdt_rdpg00_000

Call Trace:
 [&amp;lt;ffffffffa02a4895&amp;gt;] libcfs_debug_dumpstack+0x55/0x80 [libcfs]
 [&amp;lt;ffffffffa02a4e97&amp;gt;] lbug_with_loc+0x47/0xb0 [libcfs]
 [&amp;lt;ffffffffa0ccf8ef&amp;gt;] osp_it_load+0x1f/0x20 [osp]
 [&amp;lt;ffffffffa0c774d1&amp;gt;] lod_it_load+0x21/0x90 [lod]
 [&amp;lt;ffffffffa0448f6d&amp;gt;] dt_index_walk+0xad/0x3d0 [obdclass]
 [&amp;lt;ffffffffa0b4e0e0&amp;gt;] ? mdd_dir_page_build+0x0/0x210 [mdd]
 [&amp;lt;ffffffffa0cd2cc7&amp;gt;] ? osp_md_object_read_lock+0x87/0x110 [osp]
 [&amp;lt;ffffffffa0b4fd7b&amp;gt;] mdd_readpage+0x38b/0x5a0 [mdd]
 [&amp;lt;ffffffffa0bae4cd&amp;gt;] mdt_readpage+0x47d/0x980 [mdt]
 [&amp;lt;ffffffffa06d29fa&amp;gt;] tgt_handle_request0+0x2ea/0x1490 [ptlrpc]
 [&amp;lt;ffffffffa067492c&amp;gt;] ? lustre_msg_get_opc+0x9c/0x110 [ptlrpc]
 [&amp;lt;ffffffffa06d3fda&amp;gt;] tgt_request_handle+0x43a/0x980 [ptlrpc]
 [&amp;lt;ffffffffa0687295&amp;gt;] ptlrpc_main+0xd25/0x1970 [ptlrpc]
 [&amp;lt;ffffffffa0686570&amp;gt;] ? ptlrpc_main+0x0/0x1970 [ptlrpc]
 [&amp;lt;ffffffff81096a36&amp;gt;] kthread+0x96/0xa0
 [&amp;lt;ffffffff8100c0ca&amp;gt;] child_rip+0xa/0x20
 [&amp;lt;ffffffff810969a0&amp;gt;] ? kthread+0x0/0xa0
 [&amp;lt;ffffffff8100c0c0&amp;gt;] ? child_rip+0x0/0x20

LustreError: 5879:0:(mdt_internal.h:565:mdt_object_child()) ASSERTION( o ) failed: 
LustreError: 5879:0:(mdt_internal.h:565:mdt_object_child()) LBUG
Pid: 5879, comm: mdt00_000

Call Trace:
 [&amp;lt;ffffffffa02a9895&amp;gt;] libcfs_debug_dumpstack+0x55/0x80 [libcfs]
 [&amp;lt;ffffffffa02a9e97&amp;gt;] lbug_with_loc+0x47/0xb0 [libcfs]
 [&amp;lt;ffffffffa0bad287&amp;gt;] mdt_getattr_name_lock+0x1517/0x1b30 [mdt]
 [&amp;lt;ffffffffa069fb46&amp;gt;] ? __req_capsule_get+0x166/0x710 [ptlrpc]
 [&amp;lt;ffffffffa067a024&amp;gt;] ? lustre_msg_get_flags+0x34/0xb0 [ptlrpc]
 [&amp;lt;ffffffffa0badb33&amp;gt;] mdt_intent_getattr+0x293/0x470 [mdt]
 [&amp;lt;ffffffffa0b9ca99&amp;gt;] mdt_intent_policy+0x499/0xd50 [mdt]
 [&amp;lt;ffffffffa062f509&amp;gt;] ldlm_lock_enqueue+0x359/0x920 [ptlrpc]
 [&amp;lt;ffffffffa0658c4f&amp;gt;] ldlm_handle_enqueue0+0x4ef/0x10a0 [ptlrpc]
 [&amp;lt;ffffffffa06d3002&amp;gt;] tgt_enqueue+0x62/0x1d0 [ptlrpc]
 [&amp;lt;ffffffffa06d59fa&amp;gt;] tgt_handle_request0+0x2ea/0x1490 [ptlrpc]
 [&amp;lt;ffffffffa067792c&amp;gt;] ? lustre_msg_get_opc+0x9c/0x110 [ptlrpc]
 [&amp;lt;ffffffffa06d6fda&amp;gt;] tgt_request_handle+0x43a/0x980 [ptlrpc]
 [&amp;lt;ffffffffa068a295&amp;gt;] ptlrpc_main+0xd25/0x1970 [ptlrpc]
 [&amp;lt;ffffffffa0689570&amp;gt;] ? ptlrpc_main+0x0/0x1970 [ptlrpc]
 [&amp;lt;ffffffff81096a36&amp;gt;] kthread+0x96/0xa0
 [&amp;lt;ffffffff8100c0ca&amp;gt;] child_rip+0xa/0x20
 [&amp;lt;ffffffff810969a0&amp;gt;] ? kthread+0x0/0xa0
 [&amp;lt;ffffffff8100c0c0&amp;gt;] ? child_rip+0x0/0x20

LustreError: 8715:0:(mdt_handler.c:1283:mdt_getattr_name_lock()) parent [0x2c0000401:0x1632:0x0] is on remote server
LustreError: 8715:0:(mdt_handler.c:2298:mdt_object_lock0()) ASSERTION( ibits &amp;amp; 0x000001 ) failed: 
LustreError: 8715:0:(mdt_handler.c:2298:mdt_object_lock0()) LBUG
Pid: 8715, comm: mdt01_005

Call Trace:
 [&amp;lt;ffffffffa02a9895&amp;gt;] libcfs_debug_dumpstack+0x55/0x80 [libcfs]
 [&amp;lt;ffffffffa02a9e97&amp;gt;] lbug_with_loc+0x47/0xb0 [libcfs]
 [&amp;lt;ffffffffa0ba28c3&amp;gt;] mdt_object_lock0+0xa93/0xaf0 [mdt]
 [&amp;lt;ffffffffa0449e42&amp;gt;] ? lu_object_find_at+0x2d2/0x360 [obdclass]
 [&amp;lt;ffffffffa067a024&amp;gt;] ? lustre_msg_get_flags+0x34/0xb0 [ptlrpc]
 [&amp;lt;ffffffffa0ba29e4&amp;gt;] mdt_object_lock+0x14/0x20 [mdt]
 [&amp;lt;ffffffffa0ba2a80&amp;gt;] mdt_intent_getxattr+0x90/0x160 [mdt]
 [&amp;lt;ffffffffa0449ee6&amp;gt;] ? lu_object_find+0x16/0x20 [obdclass]
 [&amp;lt;ffffffffa0b9ca99&amp;gt;] mdt_intent_policy+0x499/0xd50 [mdt]
 [&amp;lt;ffffffffa062f509&amp;gt;] ldlm_lock_enqueue+0x359/0x920 [ptlrpc]
 [&amp;lt;ffffffffa0658c4f&amp;gt;] ldlm_handle_enqueue0+0x4ef/0x10a0 [ptlrpc]
 [&amp;lt;ffffffffa06d3002&amp;gt;] tgt_enqueue+0x62/0x1d0 [ptlrpc]
 [&amp;lt;ffffffffa06d59fa&amp;gt;] tgt_handle_request0+0x2ea/0x1490 [ptlrpc]
 [&amp;lt;ffffffffa067792c&amp;gt;] ? lustre_msg_get_opc+0x9c/0x110 [ptlrpc]
 [&amp;lt;ffffffffa06d6fda&amp;gt;] tgt_request_handle+0x43a/0x980 [ptlrpc]
 [&amp;lt;ffffffffa068a295&amp;gt;] ptlrpc_main+0xd25/0x1970 [ptlrpc]
 [&amp;lt;ffffffffa0689570&amp;gt;] ? ptlrpc_main+0x0/0x1970 [ptlrpc]
 [&amp;lt;ffffffff81096a36&amp;gt;] kthread+0x96/0xa0
 [&amp;lt;ffffffff8100c0ca&amp;gt;] child_rip+0xa/0x20
 [&amp;lt;ffffffff810969a0&amp;gt;] ? kthread+0x0/0xa0
 [&amp;lt;ffffffff8100c0c0&amp;gt;] ? child_rip+0x0/0x20


Lustre: 585:0:(mdt_open.c:1509:mdt_cross_open()) ....lod@ffff8801a746ad68lod-object@ffff8801a746ad68
Kernel panic - not syncing: LBUG
Pid: 30558, comm: mdt_rdpg01_001 Not tainted 2.6.32-358.18.1.el6.lustre.x86_64 #1
Call Trace:
 [&amp;lt;ffffffff8150f018&amp;gt;] ? panic+0xa7/0x16f
 [&amp;lt;ffffffffa0e49eeb&amp;gt;] ? lbug_with_loc+0x9b/0xb0 [libcfs]
 [&amp;lt;ffffffffa08308ef&amp;gt;] ? osp_it_load+0x1f/0x20 [osp]
 [&amp;lt;ffffffffa07d84d1&amp;gt;] ? lod_it_load+0x21/0x90 [lod]
 [&amp;lt;ffffffffa0f99f6d&amp;gt;] ? dt_index_walk+0xad/0x3d0 [obdclass]
 [&amp;lt;ffffffffa069e0e0&amp;gt;] ? mdd_dir_page_build+0x0/0x210 [mdd]
 [&amp;lt;ffffffffa069fd7b&amp;gt;] ? mdd_readpage+0x38b/0x5a0 [mdd]
 [&amp;lt;ffffffffa070f5dd&amp;gt;] ? mdt_readpage+0x47d/0x980 [mdt]
 [&amp;lt;ffffffffa12239fa&amp;gt;] ? tgt_handle_request0+0x2ea/0x1490 [ptlrpc]
 [&amp;lt;ffffffffa11c592c&amp;gt;] ? lustre_msg_get_opc+0x9c/0x110 [ptlrpc]
 [&amp;lt;ffffffffa1224fda&amp;gt;] ? tgt_request_handle+0x43a/0x980 [ptlrpc]
 [&amp;lt;ffffffffa11d8295&amp;gt;] ? ptlrpc_main+0xd25/0x1970 [ptlrpc]
 [&amp;lt;ffffffffa11d7570&amp;gt;] ? ptlrpc_main+0x0/0x1970 [ptlrpc]
 [&amp;lt;ffffffff81096a36&amp;gt;] ? kthread+0x96/0xa0
 [&amp;lt;ffffffff8100c0ca&amp;gt;] ? child_rip+0xa/0x20
 [&amp;lt;ffffffff810969a0&amp;gt;] ? kthread+0x0/0xa0
 [&amp;lt;ffffffff8100c0c0&amp;gt;] ? child_rip+0x0/0x20
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</description>
                <environment></environment>
        <key id="22678">LU-4459</key>
            <summary>MDT/DNE fault injection</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="6" iconUrl="https://jira.whamcloud.com/images/icons/statuses/closed.png" description="The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.">Closed</status>
                    <statusCategory id="3" key="done" colorName="success"/>
                                    <resolution id="2">Won&apos;t Fix</resolution>
                                        <assignee username="jhammond">John Hammond</assignee>
                                    <reporter username="jhammond">John Hammond</reporter>
                        <labels>
                            <label>dne</label>
                            <label>mdt</label>
                    </labels>
                <created>Thu, 9 Jan 2014 00:04:22 +0000</created>
                <updated>Wed, 23 Jun 2021 22:39:02 +0000</updated>
                            <resolved>Wed, 23 Jun 2021 22:38:58 +0000</resolved>
                                    <version>Lustre 2.6.0</version>
                                                        <due></due>
                            <votes>0</votes>
                                    <watches>4</watches>
                                                                            <comments>
                            <comment id="75114" author="jhammond" created="Thu, 16 Jan 2014 18:41:01 +0000"  >&lt;p&gt;I have a few patches for this. I&apos;ll push them soon.&lt;/p&gt;</comment>
                            <comment id="75888" author="jhammond" created="Wed, 29 Jan 2014 19:04:55 +0000"  >&lt;p&gt;Please see &lt;a href=&quot;http://review.whamcloud.com/9054&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/9054&lt;/a&gt; for a draft patch.&lt;/p&gt;</comment>
                            <comment id="80710" author="jhammond" created="Tue, 1 Apr 2014 16:56:41 +0000"  >&lt;p&gt;&lt;a href=&quot;http://review.whamcloud.com/#/c/9861/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#/c/9861/&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="82071" author="jlevi" created="Mon, 21 Apr 2014 17:40:56 +0000"  >&lt;p&gt;Can this ticket be closed now that Change, 9861 has landed?&lt;/p&gt;</comment>
                            <comment id="82382" author="jlevi" created="Thu, 24 Apr 2014 13:57:17 +0000"  >&lt;p&gt;After speaking with John, we are keeping this ticket open but removing from the 2.6 Fix Version for continued observation.&lt;/p&gt;</comment>
                    </comments>
                    <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|hzwch3:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10090" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>12224</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>