<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 02:05:23 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-7030] import_sec_validate_get()) import ffff8819c6497800 (FULL) with no sec (again)</title>
                <link>https://jira.whamcloud.com/browse/LU-7030</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;The patch from &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-3353&quot; title=&quot;import_sec_validate_get() import ffff88061d4a7000 (FULL) with no sec&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-3353&quot;&gt;&lt;del&gt;LU-3353&lt;/del&gt;&lt;/a&gt; does not appear to have eliminated the stated error message.  We are still seeing it with Lustre 2.5.4 + the patch from &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-3353&quot; title=&quot;import_sec_validate_get() import ffff88061d4a7000 (FULL) with no sec&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-3353&quot;&gt;&lt;del&gt;LU-3353&lt;/del&gt;&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Please try again.&lt;/p&gt;</description>
                <environment></environment>
        <key id="31615">LU-7030</key>
            <summary>import_sec_validate_get()) import ffff8819c6497800 (FULL) with no sec (again)</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="4">Incomplete</resolution>
                                        <assignee username="jhammond">John Hammond</assignee>
                                    <reporter username="morrone">Christopher Morrone</reporter>
                        <labels>
                            <label>llnl</label>
                    </labels>
                <created>Fri, 21 Aug 2015 21:31:37 +0000</created>
                <updated>Tue, 29 Mar 2022 20:14:26 +0000</updated>
                            <resolved>Tue, 29 Mar 2022 20:14:26 +0000</resolved>
                                                                        <due></due>
                            <votes>0</votes>
                                    <watches>11</watches>
                                                                            <comments>
                            <comment id="124848" author="pjones" created="Sat, 22 Aug 2015 12:34:19 +0000"  >&lt;p&gt;Niu&lt;/p&gt;

&lt;p&gt;You worked on &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-3353&quot; title=&quot;import_sec_validate_get() import ffff88061d4a7000 (FULL) with no sec&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-3353&quot;&gt;&lt;del&gt;LU-3353&lt;/del&gt;&lt;/a&gt; previously. What do you suggest here?&lt;/p&gt;

&lt;p&gt;Peter&lt;/p&gt;</comment>
                            <comment id="124860" author="niu" created="Mon, 24 Aug 2015 03:11:12 +0000"  >&lt;p&gt;Looks the fix of &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-3353&quot; title=&quot;import_sec_validate_get() import ffff88061d4a7000 (FULL) with no sec&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-3353&quot;&gt;&lt;del&gt;LU-3353&lt;/del&gt;&lt;/a&gt; isn&apos;t quite right, see client_destroy_import(): It calls sptlrpc_import_sec_put() to clear imp_sec first, then calls class_import_put() to add the import onto zombie list.&lt;/p&gt;

&lt;p&gt;Then look at the import_sec_validate_get():&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;        &lt;span class=&quot;code-comment&quot;&gt;/* Only output an error when the &lt;span class=&quot;code-keyword&quot;&gt;import&lt;/span&gt; is still active */&lt;/span&gt;
        &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (*sec == NULL) {
                &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (list_empty(&amp;amp;imp-&amp;gt;imp_zombie_chain))
                        CERROR(&lt;span class=&quot;code-quote&quot;&gt;&quot;&lt;span class=&quot;code-keyword&quot;&gt;import&lt;/span&gt; %p (%s) with no sec\n&quot;&lt;/span&gt;,
                                imp, ptlrpc_import_state_name(imp-&amp;gt;imp_state));
                &lt;span class=&quot;code-keyword&quot;&gt;return&lt;/span&gt; -EACCES;
        }
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;When checking imp-&amp;gt;imp_zombie_chain, the import may not be put on zombie list yet.&lt;/p&gt;

&lt;p&gt;Amir, could you take a look?&lt;/p&gt;</comment>
                            <comment id="124976" author="gerrit" created="Tue, 25 Aug 2015 03:13:58 +0000"  >&lt;p&gt;Niu Yawei (yawei.niu@intel.com) uploaded a new patch: &lt;a href=&quot;http://review.whamcloud.com/16071&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/16071&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-7030&quot; title=&quot;import_sec_validate_get()) import ffff8819c6497800 (FULL) with no sec (again)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-7030&quot;&gt;&lt;del&gt;LU-7030&lt;/del&gt;&lt;/a&gt; security: put imp_sec after all requests drained off&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: e545cf24ca487432d7093e7bf0e474f8f5b84efe&lt;/p&gt;</comment>
                            <comment id="136161" author="gerrit" created="Sun, 13 Dec 2015 20:57:05 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;http://review.whamcloud.com/16071/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/16071/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-7030&quot; title=&quot;import_sec_validate_get()) import ffff8819c6497800 (FULL) with no sec (again)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-7030&quot;&gt;&lt;del&gt;LU-7030&lt;/del&gt;&lt;/a&gt; security: put imp_sec after all requests drained off&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 504ca288d99779812495a91345421ad4ad8f7d95&lt;/p&gt;</comment>
                            <comment id="136179" author="pjones" created="Mon, 14 Dec 2015 05:27:28 +0000"  >&lt;p&gt;Landed for 2.8&lt;/p&gt;</comment>
                            <comment id="137133" author="jfilizetti" created="Tue, 22 Dec 2015 01:10:54 +0000"  >&lt;p&gt;Patch 16071 breaks Lustre security for everything but the default flavor.  Every security flavor except the default NULL (no security) grabs a reference on the import in create_sec.  There is an equivalent destroy_sec but that is called from the sptlrpc_sec_put.  With this patch that is no longer called until the import is released but this creates a circular dependency for everything but the default security flavor.  We should revert the patch and create one that doesn&apos;t affect other security flavors.&lt;/p&gt;</comment>
                            <comment id="137134" author="jfilizetti" created="Tue, 22 Dec 2015 01:12:16 +0000"  >&lt;p&gt;A proper fix is needed that won&apos;t break security flavors other than the default&lt;/p&gt;</comment>
                            <comment id="137152" author="niu" created="Tue, 22 Dec 2015 05:08:59 +0000"  >&lt;p&gt;Indeed. The purpose of sec flavor holding import refcount looks not clear to me, if import needs sec flavor until all RPCs drained off and the flavor will be destroyed before freeing import, why should sec flavor holds import refcount?&lt;/p&gt;

&lt;p&gt;I suggest to remove the import get/put in the create_sec/destroy_sec, what do you think?&lt;/p&gt;</comment>
                            <comment id="137209" author="gerrit" created="Tue, 22 Dec 2015 18:47:24 +0000"  >&lt;p&gt;Andreas Dilger (andreas.dilger@intel.com) uploaded a new patch: &lt;a href=&quot;http://review.whamcloud.com/17709&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/17709&lt;/a&gt;&lt;br/&gt;
Subject: Revert &quot;&lt;a href=&quot;https://jira.whamcloud.com/browse/LU-7030&quot; title=&quot;import_sec_validate_get()) import ffff8819c6497800 (FULL) with no sec (again)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-7030&quot;&gt;&lt;del&gt;LU-7030&lt;/del&gt;&lt;/a&gt; security: put imp_sec after all requests drained off&quot;&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 1335d385d7e22ae184cb7f3b78fdecc0a5b1e972&lt;/p&gt;</comment>
                            <comment id="137227" author="jfilizetti" created="Tue, 22 Dec 2015 23:18:31 +0000"  >&lt;p&gt;From what I can tell its reasonable to remove class_import_get from gss_sec_create_common and plain_create_sec  as well as class_import_put from the destroy functions.  I&apos;m running it through sanity now just to confirm but it does avoid the earlier mentioned problem.&lt;/p&gt;</comment>
                            <comment id="137313" author="adilger" created="Wed, 23 Dec 2015 20:06:23 +0000"  >&lt;p&gt;Jeremy, I&apos;d be happy to drop the reversion patch if you can submit a patch to remove those extra refcounts for the security flavours.&lt;/p&gt;</comment>
                            <comment id="137842" author="gerrit" created="Mon, 4 Jan 2016 19:40:42 +0000"  >&lt;p&gt;Andreas Dilger (andreas.dilger@intel.com) uploaded a new patch: &lt;a href=&quot;http://review.whamcloud.com/17798&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/17798&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-7030&quot; title=&quot;import_sec_validate_get()) import ffff8819c6497800 (FULL) with no sec (again)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-7030&quot;&gt;&lt;del&gt;LU-7030&lt;/del&gt;&lt;/a&gt; gss: don&apos;t get refcount on import&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: a0b58607782fd890dd98627dad2e0d87d2b1c798&lt;/p&gt;</comment>
                            <comment id="137945" author="sbuisson" created="Tue, 5 Jan 2016 15:54:16 +0000"  >&lt;p&gt;Hi,&lt;/p&gt;

&lt;p&gt;When running with patch &lt;a href=&quot;http://review.whamcloud.com/17798&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/17798&lt;/a&gt; on top of master branch, I do not have stalled import anymore at unmount, but now I hit the following LBUG.&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: 2027:0:(connection.c:99:ptlrpc_connection_put()) ASSERTION( atomic_read(&amp;amp;conn-&amp;gt;c_refcount) &amp;gt; 1 ) failed:
LustreError: 2027:0:(connection.c:99:ptlrpc_connection_put()) LBUG
Pid: 2027, comm: obd_zombid

Call Trace:
[ffffffffa01eb7d3&amp;gt;] libcfs_debug_dumpstack+0x53/0x80 [libcfs]
[ffffffffa01ebd75&amp;gt;] lbug_with_loc+0x45/0xc0 [libcfs]
[ffffffffa0591db3&amp;gt;] ptlrpc_connection_put+0x213/0x220 [ptlrpc]
[ffffffffa031318c&amp;gt;] obd_zombie_impexp_cull+0x1bc/0xa80 [obdclass]
[ffffffffa0313abd&amp;gt;] obd_zombie_impexp_thread+0x6d/0x1c0 [obdclass]
[ffffffff810a9510&amp;gt;] ? default_wake_function+0x0/0x20
[ffffffffa0313a50&amp;gt;] ? obd_zombie_impexp_thread+0x0/0x1c0 [obdclass]
[ffffffff8109727f&amp;gt;] kthread+0xcf/0xe0
[ffffffff810971b0&amp;gt;] ? kthread+0x0/0xe0
[ffffffff81614358&amp;gt;] ret_from_fork+0x58/0x90
[ffffffff810971b0&amp;gt;] ? kthread+0x0/0xe0

Kernel panic - not syncing: LBUG
CPU: 3 PID: 2027 Comm: obd_zombid Tainted: GF          O--------------   3.10.0-229.20.1.el7.x86_64 #1
Hardware name: Red Hat KVM, BIOS 0.5.1 01/01/2007
ffffffffa0207e0f 000000009fc69d5f ffff88040771bd40 ffffffff816045b6
ffff88040771bdc0 ffffffff815fde5a ffffffff00000008 ffff88040771bdd0
ffff88040771bd70 000000009fc69d5f ffffffffa06305c0 0000000000000000
Call Trace:
[ffffffff816045b6&amp;gt;] dump_stack+0x19/0x1b
[ffffffff815fde5a&amp;gt;] panic+0xd8/0x1e7
[ffffffffa01ebddb&amp;gt;] lbug_with_loc+0xab/0xc0 [libcfs]
[ffffffffa0591db3&amp;gt;] ptlrpc_connection_put+0x213/0x220 [ptlrpc]
[ffffffffa031318c&amp;gt;] obd_zombie_impexp_cull+0x1bc/0xa80 [obdclass]
[ffffffffa0313abd&amp;gt;] obd_zombie_impexp_thread+0x6d/0x1c0 [obdclass]
[ffffffff810a9510&amp;gt;] ? wake_up_state+0x20/0x20
[ffffffffa0313a50&amp;gt;] ? obd_zombie_impexp_cull+0xa80/0xa80 [obdclass]
[ffffffff8109727f&amp;gt;] kthread+0xcf/0xe0
[ffffffff810971b0&amp;gt;] ? kthread_create_on_node+0x140/0x140
[ffffffff81614358&amp;gt;] ret_from_fork+0x58/0x90
[ffffffff810971b0&amp;gt;] ? kthread_create_on_node+0x140/0x140
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;I have krb5n connection from client to MDS. Mount is just fine, but when I unmount the client, the assertion is triggered.&lt;br/&gt;
Before the LBUG, there is this error message on the client:&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;(gss_cli_upcall.c:432:gss_do_ctx_fini_rpc()) ctx ffff880407223b40(0-&amp;gt;ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ): rpc error -19, destroy locally
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Maybe this is the reason why the connection is put one time too many?&lt;/p&gt;

&lt;p&gt;Sebastien.&lt;/p&gt;</comment>
                            <comment id="138054" author="sbuisson" created="Wed, 6 Jan 2016 08:47:15 +0000"  >&lt;p&gt;And, as Jeremy said, because of &lt;a href=&quot;http://review.whamcloud.com/16071&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/16071&lt;/a&gt; landed in master, all security flavors except null are broken at the moment in master branch: when the security flavor is set to something else than null, some imports stay stalled at unmount.&lt;/p&gt;</comment>
                            <comment id="138056" author="niu" created="Wed, 6 Jan 2016 09:36:47 +0000"  >&lt;p&gt;Let&apos;s revert the original fix first, then take some time to investigate why can&apos;t we remove the import refcounting code in security flavors.&lt;/p&gt;

&lt;p&gt;The patch to revert the original fix: &lt;a href=&quot;http://review.whamcloud.com/#/c/17709/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#/c/17709/&lt;/a&gt; &lt;/p&gt;</comment>
                            <comment id="138094" author="sbuisson" created="Wed, 6 Jan 2016 17:33:45 +0000"  >&lt;p&gt;It seems the &apos;ASSERTION( atomic_read(&amp;amp;conn-&amp;gt;c_refcount) &amp;gt; 1 ) failed&apos; occurs because of a race between the following 2 processes:&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; 0xffffffffa057e5b3 : class_import_put+0xe3/0x400 [obdclass]
 0xffffffffa056cf61 : llog_ctxt_destroy+0x31/0x360 [obdclass]
 0xffffffffa056d32e : __llog_ctxt_put+0x9e/0x140 [obdclass]
 0xffffffffa056d813 : llog_cleanup+0xc3/0x490 [obdclass]
 0xffffffffa03e251b : mdc_precleanup+0x11b/0x450 [mdc]
 0xffffffffa05a010c : class_cleanup+0x29c/0xcc0 [obdclass]
 0xffffffffa05a2e43 : class_process_config+0x1bf3/0x2cf0 [obdclass]
 0xffffffffa05a402f : class_manual_cleanup+0xef/0xba0 [obdclass]
 0xffffffffa07911f0 : ll_put_super+0x120/0xf00 [lustre]
 0xffffffffa05a7d15 : lustre_kill_super+0x45/0x50 [obdclass] (inexact)
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;The process above will put the import in the zombie list, and then the import will be killed in obd_zombie_impexp_cull(). But obd_zombie_impexp_cull() clears import-&amp;gt;imp_zombie_chain.&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; 0xffffffffa057e5b3 : class_import_put+0xe3/0x400 [obdclass]
 0xffffffffa09a6384 : __ptlrpc_req_finished+0x1b4/0x690 [ptlrpc]
 0xffffffffa09a6870 : ptlrpc_req_finished+0x10/0x20 [ptlrpc]
 0xffffffffa033bdf8 : gss_do_ctx_fini_rpc+0x178/0x500 [ptlrpc_gss]
 0xffffffffa0334d3c : gss_cli_ctx_fini_common+0x5c/0x2d0 [ptlrpc_gss]
 0xffffffffa034ab08 : ctx_destroy_kr+0x88/0x580 [ptlrpc_gss]
 0xffffffffa034b45d : gss_sec_release_ctx_kr+0x2d/0xa0 [ptlrpc_gss]
 0xffffffffa09e1b62 : sptlrpc_cli_ctx_put+0x42/0xb0 [ptlrpc]
 0xffffffffa09ed77d : sec_process_ctx_list+0xdd/0x180 [ptlrpc]
 0xffffffffa09ed9c1 : sec_gc_main+0x71/0x400 [ptlrpc]
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Then this process will need to send a request to finish the security context, by using the import that was killed by the other process &lt;img class=&quot;emoticon&quot; src=&quot;https://jira.whamcloud.com/images/icons/emoticons/sad.png&quot; height=&quot;16&quot; width=&quot;16&quot; align=&quot;absmiddle&quot; alt=&quot;&quot; border=&quot;0&quot;/&gt;&lt;/p&gt;</comment>
                            <comment id="138120" author="gerrit" created="Wed, 6 Jan 2016 19:53:04 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;http://review.whamcloud.com/17709/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/17709/&lt;/a&gt;&lt;br/&gt;
Subject: Revert &quot;&lt;a href=&quot;https://jira.whamcloud.com/browse/LU-7030&quot; title=&quot;import_sec_validate_get()) import ffff8819c6497800 (FULL) with no sec (again)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-7030&quot;&gt;&lt;del&gt;LU-7030&lt;/del&gt;&lt;/a&gt; security: put imp_sec after all requests drained off&quot;&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 952a681628d685f1afa8e68c09f10179d03c7244&lt;/p&gt;</comment>
                            <comment id="179953" author="kamakea1" created="Fri, 6 Jan 2017 23:42:18 +0000"  >&lt;p&gt;We are seeing this again in lustre 2.5.5:&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;LustreError: 22883:0:(sec.c:394:import_sec_validate_get()) &lt;span class=&quot;code-keyword&quot;&gt;import&lt;/span&gt; ffff880d5697b800 (FULL) with no sec



&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</comment>
                            <comment id="203066" author="pjones" created="Fri, 21 Jul 2017 13:08:28 +0000"  >&lt;p&gt;John&lt;/p&gt;

&lt;p&gt;What do you advise here?&lt;/p&gt;

&lt;p&gt;Peter&lt;/p&gt;</comment>
                            <comment id="204355" author="jhammond" created="Thu, 3 Aug 2017 17:58:48 +0000"  >&lt;p&gt;Hi Teresa,&lt;/p&gt;

&lt;p&gt;What security flavor are you using when you see this?&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10011">
                    <name>Related</name>
                                            <outwardlinks description="is related to ">
                                                        </outwardlinks>
                                                                <inwardlinks description="is related to">
                                        <issuelink>
            <issuekey id="19036">LU-3353</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_10490" key="com.atlassian.jira.plugin.system.customfieldtypes:datepicker">
                        <customfieldname>End date</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Wed, 23 Dec 2015 21:31:37 +0000</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                            <customfield id="customfield_10390" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hzxl13:</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>
                                                                                                                        <customfield id="customfield_10493" key="com.atlassian.jira.plugin.system.customfieldtypes:datepicker">
                        <customfieldname>Start date</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Fri, 21 Aug 2015 21:31:37 +0000</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                    </customfields>
    </item>
</channel>
</rss>