<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 01:38:52 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-4011] problems with upstream lustre client code</title>
                <link>https://jira.whamcloud.com/browse/LU-4011</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;This ticket is to track issues with the upstream lustre client code that is part of the 3.11 kernel source in fc19.&lt;/p&gt;

&lt;p&gt;Making a separate ticket as suggested by Andreas in &lt;a href=&quot;https://jira.hpdd.intel.com/browse/LU-3974?focusedCommentId=67574&amp;amp;page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-67574&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://jira.hpdd.intel.com/browse/LU-3974?focusedCommentId=67574&amp;amp;page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-67574&lt;/a&gt;&lt;/p&gt;</description>
                <environment>fc19, 3.11 kernel</environment>
        <key id="21129">LU-4011</key>
            <summary>problems with upstream lustre client code</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="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="1">Fixed</resolution>
                                        <assignee username="bogl">Bob Glossman</assignee>
                                    <reporter username="bogl">Bob Glossman</reporter>
                        <labels>
                    </labels>
                <created>Wed, 25 Sep 2013 19:34:48 +0000</created>
                <updated>Sun, 23 Jul 2017 19:01:40 +0000</updated>
                            <resolved>Sun, 23 Jul 2017 19:01:40 +0000</resolved>
                                                                        <due></due>
                            <votes>0</votes>
                                    <watches>10</watches>
                                                                            <comments>
                            <comment id="67605" author="bogl" created="Wed, 25 Sep 2013 19:55:12 +0000"  >&lt;p&gt;Encountered a few difficulties in just trying to build the lustre client code found under drivers/staging/lustre in the current (3.11.1-200) version of kernel source in fc19.&lt;/p&gt;

&lt;p&gt;1) lustre options don&apos;t even show up in the kernel config menus presented by common commands like &apos;make menuconfig&apos; or &apos;make nconfig&apos;.  This appears to be due to all lustre related config settings being conditioned on CONFIG_BROKEN.  However there is no menu option to enable CONFIG_BROKEN that I can find.  The only way I could do it was to manually edit the file init/Kconfig, adding the line &apos;default y&apos; to the section of the file for CONFIG_BROKEN so it reads:&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;
config BROKEN
        bool
        default y

&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;This enables many experimental options in the config menus, including lustre ones.&lt;/p&gt;

&lt;p&gt;2) after enabling various lustre options in Staging Drivers, the lustre code start to compile during kernel build, but fails.  error seen:&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;  CC [M]  drivers/staging/lustre/lustre/fid/fid_handler.o
In file included from drivers/staging/lustre/lustre/fid/../include/linux/lustre_compat25.h:44:0,
                 from drivers/staging/lustre/lustre/fid/../include/linux/lvfs.h:48,
                 from drivers/staging/lustre/lustre/fid/../include/lvfs.h:45,
                 from drivers/staging/lustre/lustre/fid/../include/obd_support.h:41,
                 from drivers/staging/lustre/lustre/fid/../include/linux/obd.h:44,
                 from drivers/staging/lustre/lustre/fid/../include/obd.h:40,
                 from drivers/staging/lustre/lustre/fid/fid_handler.c:48:
drivers/staging/lustre/lustre/fid/../include/linux/lustre_patchless_compat.h: In function &#8216;truncate_complete_page&#8217;:
drivers/staging/lustre/lustre/fid/../include/linux/lustre_patchless_compat.h:56:3: error: too few arguments to function &#8216;page-&amp;gt;mapping-&amp;gt;a_ops-&amp;gt;invalidatepage&#8217;
   page-&amp;gt;mapping-&amp;gt;a_ops-&amp;gt;invalidatepage(page, 0);
   ^
make[5]: *** [drivers/staging/lustre/lustre/fid/fid_handler.o] Error 1
make[4]: *** [drivers/staging/lustre/lustre/fid] Error 2
make[3]: *** [drivers/staging/lustre/lustre] Error 2
make[2]: *** [drivers/staging/lustre] Error 2
make[1]: *** [drivers/staging] Error 2
make: *** [drivers] Error 2
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;The specific errors suggest that at least one of the mods from &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-3974&quot; title=&quot;Support for linux 3.11 kernel&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-3974&quot;&gt;&lt;del&gt;LU-3974&lt;/del&gt;&lt;/a&gt; is needed and isn&apos;t present in the upstream client code.&lt;/p&gt;

&lt;p&gt;3) casual inspection of the client code reveals that many references to num_physpages are still there.  comments by Peng Tao in &lt;a href=&quot;http://review.whamcloud.com/#/c/7726&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#/c/7726&lt;/a&gt; suggest he has already fixed this in upstream client code. If so the fix isn&apos;t in this snapshot of upstream kernel source.&lt;/p&gt;
</comment>
                            <comment id="67674" author="bergwolf" created="Thu, 26 Sep 2013 11:56:00 +0000"  >&lt;p&gt;Bob, thanks for trying out upstream kernel client. It is great to have multiple eyes on it. I think by &quot;upstream&quot;, it is better to look at Linus tree rather than Fedora kernels. For your issues:&lt;/p&gt;

&lt;p&gt;1. CONFIG_BROKEN is dropped by commit 22eb2c3d900b558ea1e300cbf2f74a9edaef6ecc&lt;/p&gt;

&lt;p&gt;2. invalidatepage() prototype change is fixed by commit 5237c44194a5605257b09af5b421dd6995645e65&lt;/p&gt;

&lt;p&gt;3. num_physpages is replace by commit 4f6cc9ab5337879c4a79564b3aed4fa429d1cd12&lt;/p&gt;

&lt;p&gt;All these commits are in Linus tree. They didn&apos;t appear in v3.11 release because Greg pushed them to Linus in 3.12 merge window that is after v3.11 being released.&lt;/p&gt;</comment>
                            <comment id="70234" author="adilger" created="Wed, 30 Oct 2013 07:38:31 +0000"  >&lt;p&gt;I think it makes more sense for any effort to be made against the actual vanilla kernel, instead of what is in FC19.  I&apos;ve previously filed TEI-701 (formerly TT-1719) to get a Gerrit repo set up for the vanilla kernel that includes the staging branch, but I haven&apos;t had enough time to actually investigate this.&lt;/p&gt;</comment>
                            <comment id="73350" author="dmiter" created="Thu, 12 Dec 2013 11:28:59 +0000"  >&lt;p&gt;I run sanity on latest staging tree and got the stable following crash:&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-java&quot;&gt;[  809.119955] LustreError: 3283:0:(cl_lock.c:315:cl_lock_get()) ASSERTION( cl_lock_invariant(((void *)0), lock) ) failed:
[  809.120101] LustreError: 5838:0:(cl_lock.c:463:cl_lock_fits_into()) ASSERTION( cl_lock_invariant_trusted(env, lock) ) failed:
[  809.120114] LustreError: 5838:0:(cl_lock.c:463:cl_lock_fits_into()) LBUG
[  809.120120] CPU: 0 PID: 5838 Comm: mc Tainted: G         C   3.13.0-rc2+ #1
[  809.120126] Hardware name: innotek GmbH VirtualBox/VirtualBox, BIOS VirtualBox 12/01/2006
[  809.120137]  ffff8800cfbcfee0 ffff8800cfceda68 ffffffff817b61a2 ffffffffa014fc40
[  809.120147]  ffff8800cfceda88 ffffffffa0000a76 ffff880204e9a620 ffff8800cfbcfee0
[  809.120157]  ffff8800cfcedac0 ffffffffa0118edc ffff8800cfbcfee0 0000000000000000
[  809.120162] Call Trace:
[  809.120179]  [&amp;lt;ffffffff817b61a2&amp;gt;] dump_stack+0x45/0x56
[  809.120207]  [&amp;lt;ffffffffa0000a76&amp;gt;] lbug_with_loc+0x46/0xb0 [libcfs]
[  809.120224]  [&amp;lt;ffffffffa0118edc&amp;gt;] cl_lock_fits_into+0xac/0xb0 [obdclass]
[  809.120240]  [&amp;lt;ffffffffa0119d05&amp;gt;] cl_lock_lookup+0x1b5/0x200 [obdclass]
[  809.120256]  [&amp;lt;ffffffffa011eb09&amp;gt;] ? cl_io_sub_init+0x49/0xa0 [obdclass]
[  809.120271]  [&amp;lt;ffffffffa011c26d&amp;gt;] cl_lock_hold_mutex.isra.46+0x8d/0x430 [obdclass]
[  809.120286]  [&amp;lt;ffffffffa011c61f&amp;gt;] cl_lock_hold+0xf/0x30 [obdclass]
[  809.120299]  [&amp;lt;ffffffffa0378620&amp;gt;] lov_sublock_alloc.isra.22+0xe0/0x390 [lov]
[  809.120313]  [&amp;lt;ffffffffa037ada8&amp;gt;] lov_lock_init_raid0+0x398/0xba0 [lov]
[  809.120326]  [&amp;lt;ffffffffa0374405&amp;gt;] lov_lock_init+0x25/0x60 [lov]
[  809.120340]  [&amp;lt;ffffffffa011c3c3&amp;gt;] cl_lock_hold_mutex.isra.46+0x1e3/0x430 [obdclass]
[  809.120355]  [&amp;lt;ffffffffa011d1ef&amp;gt;] cl_lock_request+0x3f/0x1c0 [obdclass]
[  809.120370]  [&amp;lt;ffffffffa0440e12&amp;gt;] cl_glimpse_lock+0xf2/0x310 [lustre]
[  809.120383]  [&amp;lt;ffffffffa04410f9&amp;gt;] cl_glimpse_size0+0xc9/0xf0 [lustre]
[  809.120397]  [&amp;lt;ffffffffa040c43a&amp;gt;] ll_inode_revalidate_it+0x7a/0xa0 [lustre]
[  809.120410]  [&amp;lt;ffffffffa040c491&amp;gt;] ll_getattr_it+0x31/0x140 [lustre]
[  809.120422]  [&amp;lt;ffffffffa040c5cf&amp;gt;] ll_getattr+0x2f/0x40 [lustre]
[  809.120439]  [&amp;lt;ffffffff81142244&amp;gt;] vfs_getattr_nosec+0x24/0x40
[  809.120447]  [&amp;lt;ffffffff811422f8&amp;gt;] vfs_getattr+0x28/0x30
[  809.120455]  [&amp;lt;ffffffff811423bd&amp;gt;] vfs_fstatat+0x5d/0xa0
[  809.120463]  [&amp;lt;ffffffff811427f2&amp;gt;] SYSC_newlstat+0x22/0x40
[  809.120477]  [&amp;lt;ffffffff810c0bde&amp;gt;] ? __audit_syscall_exit+0x22e/0x2d0
[  809.120486]  [&amp;lt;ffffffff811429d9&amp;gt;] SyS_newlstat+0x9/0x10
[  809.120498]  [&amp;lt;ffffffff817c6ae2&amp;gt;] system_call_fastpath+0x16/0x1b
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&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-java&quot;&gt;void cl_lock_get(struct cl_lock *lock)
{
        LINVRNT(cl_lock_invariant(NULL, lock));             &amp;lt;-- cl_lock.c:315
        CDEBUG(D_TRACE, &lt;span class=&quot;code-quote&quot;&gt;&quot;acquiring reference: %d %p %lu\n&quot;&lt;/span&gt;,
               atomic_read(&amp;amp;lock-&amp;gt;cll_ref), lock, RETIP);
        atomic_inc(&amp;amp;lock-&amp;gt;cll_ref);
}

&lt;span class=&quot;code-keyword&quot;&gt;static&lt;/span&gt; &lt;span class=&quot;code-object&quot;&gt;int&lt;/span&gt; cl_lock_fits_into(&lt;span class=&quot;code-keyword&quot;&gt;const&lt;/span&gt; struct lu_env *env,
                             &lt;span class=&quot;code-keyword&quot;&gt;const&lt;/span&gt; struct cl_lock *lock,
                             &lt;span class=&quot;code-keyword&quot;&gt;const&lt;/span&gt; struct cl_lock_descr *need,
                             &lt;span class=&quot;code-keyword&quot;&gt;const&lt;/span&gt; struct cl_io *io)
{
        &lt;span class=&quot;code-keyword&quot;&gt;const&lt;/span&gt; struct cl_lock_slice *slice;
 
        LINVRNT(cl_lock_invariant_trusted(env, lock));                     &amp;lt;-- cl_lock.c:463
        list_for_each_entry(slice, &amp;amp;lock-&amp;gt;cll_layers, cls_linkage) {
                &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (slice-&amp;gt;cls_ops-&amp;gt;clo_fits_into != NULL &amp;amp;&amp;amp;
                    !slice-&amp;gt;cls_ops-&amp;gt;clo_fits_into(env, slice, need, io))
                        &lt;span class=&quot;code-keyword&quot;&gt;return&lt;/span&gt; 0;
        }
        &lt;span class=&quot;code-keyword&quot;&gt;return&lt;/span&gt; 1;
}
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</comment>
                            <comment id="73383" author="dmiter" created="Thu, 12 Dec 2013 16:23:44 +0000"  >&lt;p&gt;Other crash stack is:&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-java&quot;&gt;(gdb) where
#0  ?? () at kernel/debug/debug_core.c:1042
#1  0xffffffff810c5994 in ?? () at kernel/debug/debug_core.c:817
#2  0xffffffff817cf4dc in ?? () at kernel/notifier.c:93
#3  0xffffffff817cf525 in ?? () at kernel/notifier.c:182
#4  0xffffffff817bece8 in ?? () at kernel/panic.c:130
#5  0xffffffffa0000ad4 in lbug_with_loc ()
#6  0xffffffffa011994f in cl_lock_get ()
#7  0xffffffffa011999a in cl_lock_hold_add ()
#8  0xffffffffa0119aa1 in cl_lock_intransit ()
#9  0xffffffffa011b9c5 in cl_unuse_try ()
#10 0xffffffffa030899e in osc_lock_upcall ()
    at drivers/staging/lustre/lustre/osc/osc_lock.c:562
#11 0xffffffffa02f193b in osc_enqueue_fini ()
    at drivers/staging/lustre/lustre/osc/osc_request.c:2331
#12 0xffffffffa02f1b13 in osc_enqueue_interpret ()
    at drivers/staging/lustre/lustre/osc/osc_request.c:2376
#13 0xffffffffa01d5d3d in ptlrpc_check_set.part.21 ()
#14 0xffffffffa01d81b5 in ptlrpc_check_set ()
#15 0xffffffffa01f9e2b in ptlrpcd_check ()
#16 0xffffffffa01fa133 in ptlrpcd ()
#17 0xffffffff81064a5d in ?? ()
#18 &amp;lt;signal handler called&amp;gt;
#19 mo_xattr_get (name=Unhandled dwarf expression opcode 0xfa
)
    at drivers/staging/lustre/lustre/obdecho/../include/md_object.h:567
#20 0x0000000000000000 in ?? ()
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</comment>
                            <comment id="73552" author="bergwolf" created="Mon, 16 Dec 2013 05:56:52 +0000"  >&lt;p&gt;Dmitry, in which sanity case did you see the LBUG? There is one known issue (fixed by Yang Sheng in &lt;a href=&quot;http://review.whamcloud.com/#/c/8110/4&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#/c/8110/4&lt;/a&gt;) that can cause client umount LBUG. But it doesn&apos;t seem to be the same one as you saw.&lt;/p&gt;</comment>
                            <comment id="73562" author="dmiter" created="Mon, 16 Dec 2013 13:03:22 +0000"  >&lt;p&gt;I just launch acceptance-small.sh and first test produce this crash. The patch from Yang Sheng you mentioned don&apos;t helps. The crash happens during &quot;&lt;b&gt;remove /mnt/lustre/d0.runtests/d1&lt;/b&gt;&quot; after test_1.&lt;/p&gt;</comment>
                            <comment id="73563" author="dmiter" created="Mon, 16 Dec 2013 13:16:41 +0000"  >&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-java&quot;&gt;Lustre: Echo OBD driver; http:&lt;span class=&quot;code-comment&quot;&gt;//www.lustre.org/
&lt;/span&gt;Lustre: Layout lock feature supported.
Lustre: Mounted lustre-client
Lustre: DEBUG MARKER: Using TIMEOUT=20
Lustre: DEBUG MARKER: -----============= acceptance-small: runtests ======
Lustre: DEBUG MARKER: Using TIMEOUT=20
Lustre: DEBUG MARKER: == runtests test 1: All Runtests ===================
Lustre: DEBUG MARKER: touching /mnt/lustre at Mon Dec 16 16:52:56 MSK 2013
Lustre: DEBUG MARKER: create an empty file /mnt/lustre/hosts.10496
Lustre: DEBUG MARKER: copying /etc/hosts to /mnt/lustre/hosts.10496
Lustre: DEBUG MARKER: comparing /etc/hosts and /mnt/lustre/hosts.10496
Lustre: DEBUG MARKER: renaming /mnt/lustre/hosts.10496 to /mnt/lustre/hosts.10496.ren
Lustre: DEBUG MARKER: copying /etc/hosts to /mnt/lustre/hosts.10496 again
Lustre: DEBUG MARKER: truncating /mnt/lustre/hosts.10496
Lustre: DEBUG MARKER: removing /mnt/lustre/hosts.10496
Lustre: DEBUG MARKER: copying /etc/hosts to /mnt/lustre/hosts.10496.2
Lustre: DEBUG MARKER: truncating /mnt/lustre/hosts.10496.2 to 123 bytes
Lustre: DEBUG MARKER: creating /mnt/lustre/d0.runtests/d1
Lustre: DEBUG MARKER: copying 1000 files from /etc /bin to /mnt/lustre/d0.runtests/d1/etc /bin at Mon Dec 16 16:52:58 MSK 2013
Lustre: DEBUG MARKER: comparing 1000 newly copied files at Mon Dec 16 16:53:14 MSK 2013
Lustre: DEBUG MARKER: finished at Mon Dec 16 16:53:20 MSK 2013 (24)
Lustre: Unmounted lustre-client
Lustre: Layout lock feature supported.
Lustre: Mounted lustre-client
Lustre: DEBUG MARKER: Using TIMEOUT=20
Lustre: DEBUG MARKER: comparing 1000 previously copied files
Lustre: DEBUG MARKER: runtests test_1: @@@@@@ FAIL: old and &lt;span class=&quot;code-keyword&quot;&gt;new&lt;/span&gt; files are different: rc=22
Lustre: Unmounted lustre-client
Lustre: Layout lock feature supported.
Lustre: Mounted lustre-client
Lustre: DEBUG MARKER: Using TIMEOUT=20
Lustre: DEBUG MARKER: removing /mnt/lustre/d0.runtests/d1
LustreError: 9679:0:(cl_lock.c:315:cl_lock_get()) ASSERTION( cl_lock_invariant(((void *)0), lock) ) failed:
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</comment>
                            <comment id="74943" author="dmiter" created="Tue, 14 Jan 2014 15:57:59 +0000"  >&lt;p&gt;This LBUG was fixed by the following small patch:&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-java&quot;&gt;diff --git a/lustre/obdclass/cl_lock.c b/lustre/obdclass/cl_lock.c
index d440da9..2544053 100644
--- a/lustre/obdclass/cl_lock.c
+++ b/lustre/obdclass/cl_lock.c
@@ -2053,8 +2053,8 @@ void cl_lock_hold_add(&lt;span class=&quot;code-keyword&quot;&gt;const&lt;/span&gt; struct lu_env *env, struct cl_
lock *lock,
         LASSERT(lock-&amp;gt;cll_state != CLS_FREEING);

         ENTRY;
-        cl_lock_hold_mod(env, lock, +1);
         cl_lock_get(lock);
+        cl_lock_hold_mod(env, lock, +1);
         lu_ref_add(&amp;amp;lock-&amp;gt;cll_holders, scope, source);
         lu_ref_add(&amp;amp;lock-&amp;gt;cll_reference, scope, source);
         EXIT;
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;and also it happens only if CONFIG_LUSTRE_DEBUG_EXPENSIVE_CHECK=y is set.&lt;/p&gt;</comment>
                            <comment id="75070" author="bergwolf" created="Thu, 16 Jan 2014 08:01:40 +0000"  >&lt;p&gt;Dmitry, thanks for digging the patch. Your patch also applies to lustre master. Do you see the same crash with master?&lt;/p&gt;</comment>
                            <comment id="75074" author="dmiter" created="Thu, 16 Jan 2014 09:51:03 +0000"  >&lt;p&gt;The situation on master even worse. It&apos;s not even compiled. I have submit &lt;a href=&quot;http://review.whamcloud.com/#/c/8853/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#/c/8853/&lt;/a&gt;. And after this fix I observe other crash &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-4489&quot; title=&quot;racer test failed: (cl_page.c:569:cl_page_is_owned()) ASSERTION( cl_object_same(pg-&amp;gt;cp_obj, io-&amp;gt;ci_obj) )&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-4489&quot;&gt;&lt;del&gt;LU-4489&lt;/del&gt;&lt;/a&gt;.&lt;/p&gt;</comment>
                            <comment id="117066" author="jamesanunez" created="Mon, 1 Jun 2015 16:46:50 +0000"  >&lt;p&gt;We&apos;re seeing a similar (same?) failure with runtests test_1 again at:&lt;br/&gt;
2015-05-29 16:08:46 - &lt;a href=&quot;https://testing.hpdd.intel.com/test_sets/21fd7836-0668-11e5-bf9f-5254006e85c2&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://testing.hpdd.intel.com/test_sets/21fd7836-0668-11e5-bf9f-5254006e85c2&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="122599" author="jamesanunez" created="Wed, 29 Jul 2015 19:00:25 +0000"  >&lt;p&gt;Another runtests test 1 failure in review-dne-part-2:&lt;br/&gt;
2015-07-27 11:06:17 - &lt;a href=&quot;https://testing.hpdd.intel.com/test_sets/558dd67a-3497-11e5-a9b3-5254006e85c2&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://testing.hpdd.intel.com/test_sets/558dd67a-3497-11e5-a9b3-5254006e85c2&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="122605" author="simmonsja" created="Wed, 29 Jul 2015 19:33:52 +0000"  >&lt;p&gt;Numez are you testing the upstream client?&lt;/p&gt;</comment>
                            <comment id="122609" author="jamesanunez" created="Wed, 29 Jul 2015 19:46:08 +0000"  >&lt;p&gt;No, but found these failures in our regular autotest runs on master.&lt;/p&gt;</comment>
                            <comment id="199047" author="simmonsja" created="Tue, 13 Jun 2017 15:16:48 +0000"  >&lt;p&gt;With lastest 4.12-rc5 upstream client as of today in my testing we fail the following sanity test. Besides these test the patch &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-8680&quot; title=&quot;replay-single test_20b: BUG: soft lockup - osc_makes_rpc()&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-8680&quot;&gt;&lt;del&gt;LU-8680&lt;/del&gt;&lt;/a&gt; needs to be applied to make the lustre client stable.&lt;/p&gt;

&lt;p&gt;sanity 27z,  27D, 29, 77c, 101g, 102a, 102b, 102n, 103a,  125, 133h, 154B, 154a, 154g, 160a, 160c, 160e, 161c, 161d, 162a, 205, 215, 226a, 242, 251, 405, 900&lt;/p&gt;</comment>
                            <comment id="199049" author="bogl" created="Tue, 13 Jun 2017 15:23:35 +0000"  >&lt;p&gt;James,&lt;br/&gt;
I think this ticket was to track only old fc19 upstream client.&lt;br/&gt;
Would suggest a new distinct ticket for upstream clients in 4.12 kernels.&lt;/p&gt;
</comment>
                            <comment id="199556" author="simmonsja" created="Sun, 18 Jun 2017 16:35:45 +0000"  >&lt;p&gt;Bob can you close this ticket.&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10011">
                    <name>Related</name>
                                            <outwardlinks description="is related to ">
                                        <issuelink>
            <issuekey id="13687">LU-2355</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="22853">LU-4530</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="21039">LU-3974</issuekey>
        </issuelink>
                            </outwardlinks>
                                                                <inwardlinks description="is related to">
                                        <issuelink>
            <issuekey id="22655">LU-4451</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="28533">LU-6204</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="28849">LU-6285</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="34516">LU-7747</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="28561">LU-6209</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                    </issuelinks>
                <attachments>
                    </attachments>
                <subtasks>
                            <subtask id="28519">LU-6201</subtask>
                    </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|hzw407:</customfieldvalue>

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