<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 01:56:02 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-5963] wrong hashing in LU-4647</title>
                <link>https://jira.whamcloud.com/browse/LU-5963</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;Sometimes recovery-small tests 50-52 failed on 8 CPU box. with leak a export reference. After some investigation i see nodemap don&apos;t able to found own entry for an export, but export still linked to node map. (i don&apos;t know why intel land something without any debug options in code?). per additional investigation i see someone &lt;/p&gt;

&lt;p&gt;commit 83f04354ff68a14d7492e35a9576c91492a1206c&lt;br/&gt;
Author: Joshua Walgenbach &amp;lt;jjw@iu.edu&amp;gt;&lt;br/&gt;
Date:   Mon Mar 3 09:10:20 2014 +0100&lt;/p&gt;

&lt;p&gt;    &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-4647&quot; title=&quot;Add idmapping functions for nodemap&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-4647&quot;&gt;&lt;del&gt;LU-4647&lt;/del&gt;&lt;/a&gt; nodemap: add mapping functional&lt;br/&gt;
     Signed-off-by: Joshua Walgenbach &amp;lt;jjw@iu.edu&amp;gt;&lt;br/&gt;
    Signed-off-by: Kit Westneat &amp;lt;kit.westneat@gmail.com&amp;gt;&lt;br/&gt;
    Reviewed-on: &lt;a href=&quot;http://review.whamcloud.com/9299&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/9299&lt;/a&gt;&lt;br/&gt;
    Tested-by: Jenkins&lt;br/&gt;
    Reviewed-by: Andreas Dilger &amp;lt;andreas.dilger@intel.com&amp;gt;&lt;br/&gt;
    Reviewed-by: Nathaniel Clark &amp;lt;nathaniel.l.clark@intel.com&amp;gt;&lt;/p&gt;

&lt;p&gt;have a bad inspection and allow to &quot;hash&quot; an export pointer as string.&lt;br/&gt;
so if any byte will be changed in export after add - we don&apos;t able to find something in hash.&lt;/p&gt;</description>
                <environment>master from now.</environment>
        <key id="27742">LU-5963</key>
            <summary>wrong hashing in LU-4647</summary>
                <type id="1" iconUrl="https://jira.whamcloud.com/secure/viewavatar?size=xsmall&amp;avatarId=11303&amp;avatarType=issuetype">Bug</type>
                                            <priority id="1" iconUrl="https://jira.whamcloud.com/images/icons/priorities/blocker.svg">Blocker</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="utopiabound">Nathaniel Clark</assignee>
                                    <reporter username="shadow">Alexey Lyashkov</reporter>
                        <labels>
                            <label>HB</label>
                            <label>nodemap</label>
                            <label>patch</label>
                    </labels>
                <created>Fri, 28 Nov 2014 19:58:57 +0000</created>
                <updated>Wed, 3 Dec 2014 13:47:04 +0000</updated>
                            <resolved>Wed, 3 Dec 2014 13:47:04 +0000</resolved>
                                    <version>Lustre 2.7.0</version>
                                    <fixVersion>Lustre 2.7.0</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>5</watches>
                                                                            <comments>
                            <comment id="100243" author="shadow" created="Fri, 28 Nov 2014 20:00:33 +0000"  >&lt;p&gt;this patch fixes problem&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;@@ -50,7 +52,12 @@ void nm_member_putref(struct obd_export *exp)
 &lt;span class=&quot;code-keyword&quot;&gt;static&lt;/span&gt; __u32 nm_member_hashfn(cfs_hash_t *hash_body,
                           &lt;span class=&quot;code-keyword&quot;&gt;const&lt;/span&gt; void *key, unsigned mask)
 {
-       &lt;span class=&quot;code-keyword&quot;&gt;return&lt;/span&gt; cfs_hash_djb2_hash(key, strlen(key), mask);
+       unsigned &lt;span class=&quot;code-object&quot;&gt;long&lt;/span&gt; hash;
+&lt;span class=&quot;code-comment&quot;&gt;//     &lt;span class=&quot;code-keyword&quot;&gt;return&lt;/span&gt; cfs_hash_djb2_hash(key, strlen(key), mask);
&lt;/span&gt;+       hash = hash_long((unsigned &lt;span class=&quot;code-object&quot;&gt;long&lt;/span&gt;)key, hash_body-&amp;gt;hs_bkt_bits) &amp;amp; mask;
+
+       CDEBUG(D_INFO, &lt;span class=&quot;code-quote&quot;&gt;&quot;hashing %p -&amp;gt; %lu\n&quot;&lt;/span&gt;, key, hash);
+       &lt;span class=&quot;code-keyword&quot;&gt;return&lt;/span&gt; hash;
 }
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</comment>
                            <comment id="100249" author="gerrit" created="Sat, 29 Nov 2014 08:57:29 +0000"  >&lt;p&gt;Alexey Lyashkov (alexey.lyashkov@seagate.com) uploaded a new patch: &lt;a href=&quot;http://review.whamcloud.com/12881&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/12881&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5963&quot; title=&quot;wrong hashing in LU-4647&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5963&quot;&gt;&lt;del&gt;LU-5963&lt;/del&gt;&lt;/a&gt; nodemap: use proper hashing&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: b42e666cab01a40d867f88c0691846b03fc3fa25&lt;/p&gt;</comment>
                            <comment id="100250" author="shadow" created="Sat, 29 Nov 2014 08:57:45 +0000"  >&lt;p&gt;&lt;a href=&quot;http://review.whamcloud.com/12881&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/12881&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="100534" author="gerrit" created="Wed, 3 Dec 2014 02:27:21 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;http://review.whamcloud.com/12881/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/12881/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5963&quot; title=&quot;wrong hashing in LU-4647&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5963&quot;&gt;&lt;del&gt;LU-5963&lt;/del&gt;&lt;/a&gt; nodemap: use proper hashing&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: b0236f7b024b5f76d8915334480dd6387f71451f&lt;/p&gt;</comment>
                            <comment id="100552" author="utopiabound" created="Wed, 3 Dec 2014 13:47:04 +0000"  >&lt;p&gt;Merged to master&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10011">
                    <name>Related</name>
                                            <outwardlinks description="is related to ">
                                        <issuelink>
            <issuekey id="23201">LU-4647</issuekey>
        </issuelink>
                            </outwardlinks>
                                                                <inwardlinks description="is related to">
                                        <issuelink>
            <issuekey id="27628">LU-5928</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_10390" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hzx1nj:</customfieldvalue>

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