<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 01:14:47 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-1234] Executing binary stored on Lustre results in &quot; (deleted)&quot; appended to /proc/self/exec</title>
                <link>https://jira.whamcloud.com/browse/LU-1234</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;We have reports that when running an executable stored on Lustre, the symlink /proc/self/exec will have &quot; (deleted)&quot; appended to it. This can be normal behavior under Linux, if the executable has in fact been overwritten or deleted. But I have been told this is not the case, and I would not be surprised if there is a Lustre bug here. Digging into the kernel sources, it appears the following snippets are relevant:&lt;/p&gt;

&lt;div class=&quot;preformatted panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;preformattedHeader panelHeader&quot; style=&quot;border-bottom-width: 1px;&quot;&gt;&lt;b&gt;__d_path&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;preformattedContent panelContent&quot;&gt;
&lt;pre&gt; if (d_unlinked(dentry) &amp;amp;&amp;amp;
         (prepend(&amp;amp;end, &amp;amp;buflen, &quot; (deleted)&quot;, 10) != 0))
                 goto Elong;
&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;static inline int d_unhashed(struct dentry *dentry)
{
        return (dentry-&amp;gt;d_flags &amp;amp; DCACHE_UNHASHED);
}

static inline int d_unlinked(struct dentry *dentry)
{
        return d_unhashed(dentry) &amp;amp;&amp;amp; !IS_ROOT(dentry);
}
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;So, the string &quot; (deleted)&quot; is appended when the dentry in question has the DCACHE_UNHASHED flag set. Perhaps there&apos;s a situation where Lustre fails to take a reference on the dentry, allowing it to be dropped from the cache when it shouldn&apos;t be?&lt;/p&gt;

&lt;p&gt;Also note, I haven&apos;t been able to reproduce this issue so it&apos;s been difficult to debug, or even determine exactly where the issue lies.&lt;/p&gt;</description>
                <environment></environment>
        <key id="13619">LU-1234</key>
            <summary>Executing binary stored on Lustre results in &quot; (deleted)&quot; appended to /proc/self/exec</summary>
                <type id="1" iconUrl="https://jira.whamcloud.com/secure/viewavatar?size=xsmall&amp;avatarId=11303&amp;avatarType=issuetype">Bug</type>
                                            <priority id="4" iconUrl="https://jira.whamcloud.com/images/icons/priorities/minor.svg">Minor</priority>
                        <status id="5" iconUrl="https://jira.whamcloud.com/images/icons/statuses/resolved.png" description="A resolution has been taken, and it is awaiting verification by reporter. From here issues are either reopened, or are closed.">Resolved</status>
                    <statusCategory id="3" key="done" colorName="success"/>
                                    <resolution id="1">Fixed</resolution>
                                        <assignee username="laisiyao">Lai Siyao</assignee>
                                    <reporter username="prakash">Prakash Surya</reporter>
                        <labels>
                    </labels>
                <created>Mon, 19 Mar 2012 14:30:09 +0000</created>
                <updated>Fri, 4 Mar 2022 22:22:18 +0000</updated>
                            <resolved>Fri, 31 May 2013 21:21:49 +0000</resolved>
                                                                        <due></due>
                            <votes>0</votes>
                                    <watches>9</watches>
                                                                            <comments>
                            <comment id="31508" author="pjones" created="Mon, 19 Mar 2012 16:45:39 +0000"  >&lt;p&gt;Lai&lt;/p&gt;

&lt;p&gt;Could you please comment on this one?&lt;/p&gt;

&lt;p&gt;Thanks&lt;/p&gt;

&lt;p&gt;Peter&lt;/p&gt;</comment>
                            <comment id="31519" author="adilger" created="Mon, 19 Mar 2012 18:02:53 +0000"  >&lt;p&gt;If the user still has this executable available, it should be possible to compare &quot;ls -li&quot; and/or &quot;lfs path2fid&quot; and/or &quot;lfs getstripe -v&quot; for the deleted binary with the existing binary to see if they are in fact the same file.&lt;/p&gt;

&lt;p&gt;It is possible that the user began running this executable, then compiled a new version, or something similar, which replaced the old binary in-place.&lt;/p&gt;</comment>
                            <comment id="31523" author="prakash" created="Mon, 19 Mar 2012 19:22:46 +0000"  >&lt;blockquote&gt;
&lt;p&gt;If the user still has this executable available, it should be possible to compare &quot;ls -li&quot; and/or &quot;lfs path2fid&quot; and/or &quot;lfs getstripe -v&quot; for the deleted binary with the existing binary to see if they are in fact the same file.&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;I&apos;ll pass this information along.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;It is possible that the user began running this executable, then compiled a new version, or something similar, which replaced the old binary in-place.&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;Well I haven&apos;t verified this myself, but we&apos;ve been assured this isn&apos;t happening. I believe Chris has specifically asked about this case.&lt;/p&gt;

&lt;p&gt;I believe the &quot; (deleted)&quot; comes and goes sporadically as they poke around on the system. Essentially, the user kicks off a job, realizes it&apos;s taking longer than expected to start, and then tries to attach a debugger to it. The debugger in turn doesn&apos;t understand the &quot; (deleted)&quot; portion. I believe at this point he/she might log in and poke around looking at the /proc entries of the job and running other commands, perhaps &quot;ls&quot;-ing the file.&lt;/p&gt;

&lt;p&gt;I&apos;m not sure if any of that is helpful, but I thought that if it is an issue of the dentry being dropped (possibly due to memory pressure? I don&apos;t have much info so I&apos;m just making an assumption), &quot;ls&quot;-ing the file would bring the dentry back. And thus, causing &quot; (deleted)&quot; to disappear briefly, only to reappear once the dentry is dropped again.&lt;/p&gt;</comment>
                            <comment id="31595" author="laisiyao" created="Tue, 20 Mar 2012 12:06:52 +0000"  >&lt;p&gt;Lustre tends to drop invalid dentry (ie. dentry without LOOKUP ldlm lock held on client) from dcache, and it&apos;s safe to drop dentry even it&apos;s referenced, it&apos;s just that others won&apos;t find this dentry from dcache, and needs lookup it.&lt;/p&gt;

&lt;p&gt;But this is not necessary, because there is already a flag DCACHE_LUSTRE_INVALID to mark a dentry invalid, there is a patch for &apos;kernel dcache scalability changes&apos;: &lt;a href=&quot;http://review.whamcloud.com/#change,1865&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#change,1865&lt;/a&gt;, which won&apos;t often drop invalid dentries any more (but discard it at the put of last refcount), Prakash, do you have a chance to verify that works (If this executable won&apos;t stop immediately, you can chgrp of this file on another client, which will revoke the lookup lock on the first client)?&lt;/p&gt;</comment>
                            <comment id="31598" author="prakash" created="Tue, 20 Mar 2012 12:53:11 +0000"  >&lt;p&gt;Lai, Thanks for the help. Our only &quot;reproducer&quot; (not even sure how reliable it is) at the moment is to run this user&apos;s large (~1024 node) job in production. So, it might be a little difficult to test that patch out, but I&apos;ll talk to Chris and see what we can manage.&lt;/p&gt;</comment>
                            <comment id="31800" author="morrone" created="Wed, 21 Mar 2012 18:57:49 +0000"  >&lt;p&gt;Whoops!  Our kernel patch that adds DCACHE_LUSTRE_INVALID has fallen behind, and despite applying cleanly makes DCACHE_LUSTRE_INVALID have the same value as DCACHE_COOKIE.  That probably isn&apos;t helping.&lt;/p&gt;
</comment>
                            <comment id="31801" author="morrone" created="Wed, 21 Mar 2012 19:41:30 +0000"  >&lt;p&gt;It looks to me like the only user of dcookies is oprofile, so I don&apos;t think that the conflict with DCACHE_COOKIE is implicated here.  But I have fixed it in out next kernel.&lt;/p&gt;</comment>
                            <comment id="31802" author="morrone" created="Wed, 21 Mar 2012 19:59:12 +0000"  >&lt;p&gt;The kernel seems to think that a running executable will have a cached dentry associated with it.  In this case, it does NOT appear to be safe to drop the dentry.  So rather than making it less likely that the dentry will be dropped, we need to make absolutely sure that we don&apos;t drop the dentry as long as the executable remains in use and unchanged.&lt;/p&gt;

&lt;p&gt;Will &lt;a href=&quot;http://review.whamcloud.com/#change,1865&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#change,1865&lt;/a&gt; do that?  If so, we&apos;ll need it backported to 2.1.&lt;/p&gt;

&lt;p&gt;Also, I am a little concerned about relying on DCACHE_LUSTRE_INVALID for a solution.  Lustre on the client side is already supposed to work with a patchless kernel, so relying on a kernel patch for correctness is a problem.&lt;/p&gt;</comment>
                            <comment id="31829" author="laisiyao" created="Wed, 21 Mar 2012 23:37:31 +0000"  >&lt;p&gt;Actually DCACHE_LUSTRE_INVALID is redefined in llite_internal.h if it&apos;s not in kernel header file. And in the future it&apos;s planned to move into struct ll_dentry_data to avoid conflict with kernel flags.&lt;/p&gt;

&lt;p&gt;Yes, with &lt;a href=&quot;http://review.whamcloud.com/#change,1865&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#change,1865&lt;/a&gt;, referenced dentry will never be dropped if the file is not unlinked or renamed.&lt;/p&gt;

&lt;p&gt;Could you explain a bit on why your application rely on this? IMHO d_unlinked() normally makes sense for local filesystem, but for network filesystem, it often means dentry is invalid and dropped from dcache, and client needs lookup from server again (eg. NFS has such semantic). However with the patch mentioned, Lustre can act the same as local filesystem, though the original intention of the patch is not for this. If you do need this, I can help port this patch to 2.1.&lt;/p&gt;</comment>
                            <comment id="31993" author="morrone" created="Fri, 23 Mar 2012 16:26:19 +0000"  >&lt;p&gt;The linux kernel uses d_unlinked() this way, not an application.&lt;/p&gt;

&lt;p&gt;The application impact comes when a user tries to use a user-space debugger, but the debugger will not work because the executable name pointed to by /proc/&amp;lt;pid&amp;gt;/exe contains the string &quot; (deleted)&quot;.&lt;/p&gt;

&lt;p&gt;Please do make a fix for 2.1.&lt;/p&gt;</comment>
                            <comment id="32152" author="morrone" created="Mon, 26 Mar 2012 19:37:16 +0000"  >&lt;blockquote&gt;
&lt;p&gt;If the user still has this executable available, it should be possible to compare &quot;ls -li&quot; and/or &quot;lfs path2fid&quot; and/or &quot;lfs getstripe -v&quot; for the deleted binary with the existing binary to see if they are in fact the same file.&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;How do we get a handle to the &quot;deleted binary&quot; on which to run &quot;ls -li&quot; or anything else if it has been deleted? &lt;img class=&quot;emoticon&quot; src=&quot;https://jira.whamcloud.com/images/icons/emoticons/smile.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;

&lt;p&gt;We could perhaps use lsof to get the inode of the in-use binary and compare it to the current binary&apos;s inode using &quot;ls -li&quot;.&lt;/p&gt;

&lt;p&gt;But I am fairly certain that the file has not been deleted.  The &quot; (deleted)&quot; extension disappears after time for the same running binary, which should definitely not happen if the file was legitimately deleted or overwritten.&lt;/p&gt;</comment>
                            <comment id="32310" author="laisiyao" created="Wed, 28 Mar 2012 13:18:04 +0000"  >&lt;p&gt;Review is on &lt;a href=&quot;http://review.whamcloud.com/#change,2400&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#change,2400&lt;/a&gt;.&lt;/p&gt;</comment>
                            <comment id="32984" author="hudson" created="Fri, 30 Mar 2012 18:44:16 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://iu-build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://iu-build.whamcloud.com/job/lustre-reviews/./arch=i686,build_type=client,distro=el6,ib_stack=inkernel/4594/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; i686,client,el6,inkernel #4594&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1234&quot; title=&quot;Executing binary stored on Lustre results in &amp;quot; (deleted)&amp;quot; appended to /proc/self/exec&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1234&quot;&gt;&lt;del&gt;LU-1234&lt;/del&gt;&lt;/a&gt; dcache: don&apos;t drop invalid dentry arbitrarily (Revision c7619a3c9c0b5ddc040612169402f6ab75bb3a49)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Lai Siyao : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=c7619a3c9c0b5ddc040612169402f6ab75bb3a49&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;c7619a3c9c0b5ddc040612169402f6ab75bb3a49&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/statahead.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/namei.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
	&lt;li&gt;lustre/include/linux/lustre_patchless_compat.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/include/linux/lustre_compat25.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32985" author="hudson" created="Fri, 30 Mar 2012 18:50:31 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://iu-build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://iu-build.whamcloud.com/job/lustre-reviews/./arch=x86_64,build_type=client,distro=el5,ib_stack=inkernel/4594/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; x86_64,client,el5,inkernel #4594&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1234&quot; title=&quot;Executing binary stored on Lustre results in &amp;quot; (deleted)&amp;quot; appended to /proc/self/exec&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1234&quot;&gt;&lt;del&gt;LU-1234&lt;/del&gt;&lt;/a&gt; dcache: don&apos;t drop invalid dentry arbitrarily (Revision c7619a3c9c0b5ddc040612169402f6ab75bb3a49)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Lai Siyao : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=c7619a3c9c0b5ddc040612169402f6ab75bb3a49&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;c7619a3c9c0b5ddc040612169402f6ab75bb3a49&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/statahead.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/namei.c&lt;/li&gt;
	&lt;li&gt;lustre/include/linux/lustre_compat25.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
	&lt;li&gt;lustre/include/linux/lustre_patchless_compat.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32986" author="hudson" created="Fri, 30 Mar 2012 18:57:06 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://iu-build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://iu-build.whamcloud.com/job/lustre-reviews/./arch=i686,build_type=server,distro=el6,ib_stack=inkernel/4594/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; i686,server,el6,inkernel #4594&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1234&quot; title=&quot;Executing binary stored on Lustre results in &amp;quot; (deleted)&amp;quot; appended to /proc/self/exec&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1234&quot;&gt;&lt;del&gt;LU-1234&lt;/del&gt;&lt;/a&gt; dcache: don&apos;t drop invalid dentry arbitrarily (Revision c7619a3c9c0b5ddc040612169402f6ab75bb3a49)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Lai Siyao : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=c7619a3c9c0b5ddc040612169402f6ab75bb3a49&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;c7619a3c9c0b5ddc040612169402f6ab75bb3a49&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/namei.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
	&lt;li&gt;lustre/include/linux/lustre_compat25.h&lt;/li&gt;
	&lt;li&gt;lustre/include/linux/lustre_patchless_compat.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/statahead.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32987" author="hudson" created="Fri, 30 Mar 2012 18:57:45 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://iu-build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://iu-build.whamcloud.com/job/lustre-reviews/./arch=i686,build_type=server,distro=el5,ib_stack=inkernel/4594/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; i686,server,el5,inkernel #4594&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1234&quot; title=&quot;Executing binary stored on Lustre results in &amp;quot; (deleted)&amp;quot; appended to /proc/self/exec&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1234&quot;&gt;&lt;del&gt;LU-1234&lt;/del&gt;&lt;/a&gt; dcache: don&apos;t drop invalid dentry arbitrarily (Revision c7619a3c9c0b5ddc040612169402f6ab75bb3a49)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Lai Siyao : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=c7619a3c9c0b5ddc040612169402f6ab75bb3a49&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;c7619a3c9c0b5ddc040612169402f6ab75bb3a49&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/linux/lustre_compat25.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/namei.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/statahead.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/include/linux/lustre_patchless_compat.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32988" author="hudson" created="Fri, 30 Mar 2012 19:01:21 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://iu-build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://iu-build.whamcloud.com/job/lustre-reviews/./arch=x86_64,build_type=client,distro=el6,ib_stack=inkernel/4594/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; x86_64,client,el6,inkernel #4594&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1234&quot; title=&quot;Executing binary stored on Lustre results in &amp;quot; (deleted)&amp;quot; appended to /proc/self/exec&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1234&quot;&gt;&lt;del&gt;LU-1234&lt;/del&gt;&lt;/a&gt; dcache: don&apos;t drop invalid dentry arbitrarily (Revision c7619a3c9c0b5ddc040612169402f6ab75bb3a49)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Lai Siyao : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=c7619a3c9c0b5ddc040612169402f6ab75bb3a49&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;c7619a3c9c0b5ddc040612169402f6ab75bb3a49&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/namei.c&lt;/li&gt;
	&lt;li&gt;lustre/include/linux/lustre_patchless_compat.h&lt;/li&gt;
	&lt;li&gt;lustre/include/linux/lustre_compat25.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/statahead.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32989" author="hudson" created="Fri, 30 Mar 2012 19:02:26 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://iu-build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://iu-build.whamcloud.com/job/lustre-reviews/./arch=x86_64,build_type=server,distro=el5,ib_stack=inkernel/4594/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; x86_64,server,el5,inkernel #4594&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1234&quot; title=&quot;Executing binary stored on Lustre results in &amp;quot; (deleted)&amp;quot; appended to /proc/self/exec&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1234&quot;&gt;&lt;del&gt;LU-1234&lt;/del&gt;&lt;/a&gt; dcache: don&apos;t drop invalid dentry arbitrarily (Revision c7619a3c9c0b5ddc040612169402f6ab75bb3a49)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Lai Siyao : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=c7619a3c9c0b5ddc040612169402f6ab75bb3a49&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;c7619a3c9c0b5ddc040612169402f6ab75bb3a49&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/linux/lustre_patchless_compat.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/namei.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/statahead.c&lt;/li&gt;
	&lt;li&gt;lustre/include/linux/lustre_compat25.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32990" author="hudson" created="Fri, 30 Mar 2012 19:08:57 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://iu-build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://iu-build.whamcloud.com/job/lustre-reviews/./arch=i686,build_type=client,distro=el5,ib_stack=inkernel/4594/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; i686,client,el5,inkernel #4594&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1234&quot; title=&quot;Executing binary stored on Lustre results in &amp;quot; (deleted)&amp;quot; appended to /proc/self/exec&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1234&quot;&gt;&lt;del&gt;LU-1234&lt;/del&gt;&lt;/a&gt; dcache: don&apos;t drop invalid dentry arbitrarily (Revision c7619a3c9c0b5ddc040612169402f6ab75bb3a49)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Lai Siyao : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=c7619a3c9c0b5ddc040612169402f6ab75bb3a49&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;c7619a3c9c0b5ddc040612169402f6ab75bb3a49&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/linux/lustre_compat25.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/include/linux/lustre_patchless_compat.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/namei.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/statahead.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32991" author="hudson" created="Fri, 30 Mar 2012 19:14:25 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://iu-build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://iu-build.whamcloud.com/job/lustre-reviews/./arch=x86_64,build_type=server,distro=el6,ib_stack=inkernel/4594/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; x86_64,server,el6,inkernel #4594&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1234&quot; title=&quot;Executing binary stored on Lustre results in &amp;quot; (deleted)&amp;quot; appended to /proc/self/exec&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1234&quot;&gt;&lt;del&gt;LU-1234&lt;/del&gt;&lt;/a&gt; dcache: don&apos;t drop invalid dentry arbitrarily (Revision c7619a3c9c0b5ddc040612169402f6ab75bb3a49)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Lai Siyao : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=c7619a3c9c0b5ddc040612169402f6ab75bb3a49&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;c7619a3c9c0b5ddc040612169402f6ab75bb3a49&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/namei.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/include/linux/lustre_patchless_compat.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/statahead.c&lt;/li&gt;
	&lt;li&gt;lustre/include/linux/lustre_compat25.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="33831" author="morrone" created="Fri, 6 Apr 2012 18:52:45 +0000"  >&lt;p&gt;Someone needs to attend to the Maloo failure.&lt;/p&gt;</comment>
                            <comment id="39914" author="pjones" created="Mon, 4 Jun 2012 05:57:06 +0000"  >&lt;p&gt;Chris&lt;/p&gt;

&lt;p&gt;We will track landing this patch under &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-506&quot; title=&quot;FC15  patchless client support.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-506&quot;&gt;&lt;del&gt;LU-506&lt;/del&gt;&lt;/a&gt;. I gather that you are running this patch in production now so is it ok to close this as a duplicate of &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-506&quot; title=&quot;FC15  patchless client support.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-506&quot;&gt;&lt;del&gt;LU-506&lt;/del&gt;&lt;/a&gt;?&lt;/p&gt;

&lt;p&gt;Peter&lt;/p&gt;</comment>
                            <comment id="39940" author="morrone" created="Mon, 4 Jun 2012 14:20:33 +0000"  >&lt;p&gt;Sure.&lt;/p&gt;</comment>
                            <comment id="39946" author="pjones" created="Mon, 4 Jun 2012 15:08:32 +0000"  >&lt;p&gt;Thanks Chris&lt;/p&gt;</comment>
                            <comment id="44180" author="morrone" created="Tue, 4 Sep 2012 21:02:18 +0000"  >&lt;p&gt;&lt;a href=&quot;https://jira.whamcloud.com/browse/LU-506&quot; title=&quot;FC15  patchless client support.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-506&quot;&gt;&lt;del&gt;LU-506&lt;/del&gt;&lt;/a&gt; closed without this landing on b2_1.  The b2_1 &lt;a href=&quot;http://review.whamcloud.com/2400&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;patch&lt;/a&gt; has two +1 reviews, but is just sitting.  We are running the patch in production at LLNL on our 2.1 systems.&lt;/p&gt;</comment>
                            <comment id="48453" author="morrone" created="Tue, 27 Nov 2012 20:07:38 +0000"  >&lt;p&gt;Patch for 2.1 is still in limbo.&lt;/p&gt;</comment>
                            <comment id="49769" author="morrone" created="Fri, 28 Dec 2012 18:48:14 +0000"  >&lt;p&gt;Patch 2400 is getting stale, and conflicts on b2_1 are growing.  Can you please rebase patch &lt;a href=&quot;http://review.whamcloud.com/2400&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;2400&lt;/a&gt; onto 2.1.4?&lt;/p&gt;</comment>
                            <comment id="59796" author="morrone" created="Fri, 31 May 2013 20:52:44 +0000"  >&lt;p&gt;Patch landed on b2_1.  I assume this can be closed.&lt;/p&gt;</comment>
                            <comment id="59807" author="pjones" created="Fri, 31 May 2013 21:21:49 +0000"  >&lt;p&gt;Thanks Chris!&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|hzvshz:</customfieldvalue>

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