<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 01:16:28 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-1419] Tracking ticket for gnilnd push</title>
                <link>https://jira.whamcloud.com/browse/LU-1419</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;Cray is preparing to submit gnilnd for upstream adoption. This ticket is for tracking that work.&lt;/p&gt;</description>
                <environment></environment>
        <key id="14471">LU-1419</key>
            <summary>Tracking ticket for gnilnd push</summary>
                <type id="2" iconUrl="https://jira.whamcloud.com/secure/viewavatar?size=xsmall&amp;avatarId=11311&amp;avatarType=issuetype">New Feature</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="wc-triage">WC Triage</assignee>
                                    <reporter username="hornc">Chris Horn</reporter>
                        <labels>
                            <label>lnet</label>
                    </labels>
                <created>Thu, 17 May 2012 12:12:51 +0000</created>
                <updated>Wed, 19 Dec 2012 19:42:51 +0000</updated>
                            <resolved>Wed, 19 Dec 2012 19:42:51 +0000</resolved>
                                                    <fixVersion>Lustre 2.4.0</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>6</watches>
                                                                            <comments>
                            <comment id="39001" author="simmonsja" created="Thu, 17 May 2012 12:39:37 +0000"  >&lt;p&gt;Will this work only be aimed at the master branch? Also during ORNL testing of IR recovery we discovered some old left over code from the catamount days that impacted the recovery time. Should we merge that fix under this ticket? Its just the INITIAL_CONNECT_TIMEOUT in obd_support.h.&lt;/p&gt;</comment>
                            <comment id="39057" author="spitzcor" created="Fri, 18 May 2012 12:03:33 +0000"  >&lt;p&gt;Yes, we&apos;ll aim at master.  Then, if there is reason to push back, we can do so later.&lt;/p&gt;

&lt;p&gt;Other changes that aren&apos;t related to the gnilnd should be tracked in a different ticket.  James, can you open one for the INITIAL_CONNECT_TIMEOUT problem?&lt;/p&gt;</comment>
                            <comment id="39060" author="simmonsja" created="Fri, 18 May 2012 12:32:12 +0000"  >&lt;p&gt;The ticket is in &lt;a href=&quot;http://jira.whamcloud.com/browse/LU-1422&quot; class=&quot;external-link&quot; rel=&quot;nofollow&quot;&gt;http://jira.whamcloud.com/browse/LU-1422&lt;/a&gt; for this. Want to let you know for peer review. Thanks&lt;/p&gt;</comment>
                            <comment id="41714" author="spitzcor" created="Wed, 11 Jul 2012 15:16:47 +0000"  >&lt;p&gt;Our push of gnilnd is eminent.  However, it was written before we adopted the retab policy.  Can we please submit with the old whitespace style?  It would help us from touching every single line or keeping our version and the contributed version different.  Thoughts or suggestions?&lt;/p&gt;</comment>
                            <comment id="41715" author="simmonsja" created="Wed, 11 Jul 2012 15:37:41 +0000"  >&lt;p&gt;Here is a handy script I used for re-tabbing.After you commit your code just run it and then push it upstream.&lt;br/&gt;
.&lt;br/&gt;
#!/bin/bash -e&lt;br/&gt;
#&lt;/p&gt;
&lt;ol&gt;
	&lt;li&gt;Rewrite the last commit to remove any trailing whitespace&lt;/li&gt;
	&lt;li&gt;in the new version of changed lines.&lt;/li&gt;
	&lt;li&gt;Then replace space-based indentation with TAB based indentation&lt;/li&gt;
	&lt;li&gt;based on TABS at every eight position&lt;br/&gt;
#&lt;br/&gt;
[[ -z $TRACE ]] || set -x&lt;br/&gt;
trap &quot;rm -f $tmpf&quot; 0&lt;br/&gt;
tmpf1=$TMP/$$.1.diff&lt;br/&gt;
tmpf2=$TMP/$$.2.diff&lt;br/&gt;
git show --binary &amp;gt;$tmpf1&lt;br/&gt;
perl -p -e &apos;s/&lt;sup&gt;(&amp;#43;.&lt;b&gt;?)[ \t]+$/$1/; while(m/&lt;/sup&gt;(&amp;#43;\t&lt;/b&gt;)( 
{1,7}
&lt;p&gt;\t| &lt;/p&gt;
{8}
&lt;p&gt;)(.*)/) &lt;/p&gt;
{ $_=$1.&quot;\t&quot;.$3.&quot;\n&quot;; }
&lt;p&gt;&apos; &amp;lt;$tmpf1 &amp;gt;$tmpf2&lt;br/&gt;
if ! cmp -s $tmpf1 $tmpf2&lt;br/&gt;
then&lt;br/&gt;
    git apply --binary --index -R --whitespace=nowarn $tmpf1&lt;br/&gt;
    git apply --binary --index $tmpf2&lt;br/&gt;
    GIT_EDITOR=true git commit --amend&lt;br/&gt;
else&lt;br/&gt;
    echo &quot;No changes&quot;&lt;br/&gt;
fi&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;
</comment>
                            <comment id="41717" author="simmonsja" created="Wed, 11 Jul 2012 15:39:18 +0000"  >&lt;p&gt;Attached to ticket since JIRA managed my script.&lt;/p&gt;</comment>
                            <comment id="41721" author="hornc" created="Wed, 11 Jul 2012 18:42:51 +0000"  >&lt;p&gt;&lt;a href=&quot;http://review.whamcloud.com/#change,3381&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#change,3381&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="42566" author="doug" created="Wed, 1 Aug 2012 18:28:08 +0000"  >&lt;p&gt;Question: What will be Cray&apos;s policy for keeping the gnilnd code synchronized between the Lustre main repository and the Cray repository?  Will you be doing code drops to match shipping versions?  How will changes made by non-Cray community members be handled?&lt;/p&gt;</comment>
                            <comment id="42602" author="spitzcor" created="Thu, 2 Aug 2012 11:17:26 +0000"  >&lt;p&gt;Doug, good question.  I don&apos;t know exactly, it likely won&apos;t be an instantaneous sync.  However, Cray won&apos;t make code drops to match shipping versions.  We intend to keep to the &apos;master&apos; model.  (The version submitted here is already &quot;ahead&quot; of our released versions).  Cray will push up changes on as a regular basis as we can manage.  Surely, it would be nice to stay current with &apos;master&apos;.  For other contributions, I suggest that we handle those as any other: through Gerrit with community review.&lt;/p&gt;</comment>
                            <comment id="42604" author="simmonsja" created="Thu, 2 Aug 2012 11:43:10 +0000"  >&lt;p&gt;Hi Cory.&lt;/p&gt;

&lt;p&gt;   I have been regularly testing master on our Gemini test bed so I have a motivation to keep this driver working &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; If Cray doesn&apos;t mind I have no issue with keeping this driver in sync. Please look it over. The error code you can inject have changed and I just guessed what the values are so if you attempt to regression test internally this latest patch your test will most likely fail. So we need to sync up on that. Also from your earlier patch some of the Whamcloud engineers had concerns about the certain parts of the code. I didn&apos;t want to change those parts of the code without a serious inspection from the cray engineer working on this LNET driver as well. Any changes will be welcomed for testing.&lt;/p&gt;</comment>
                            <comment id="47580" author="simmonsja" created="Thu, 8 Nov 2012 10:09:23 +0000"  >&lt;p&gt;I have pushed a updated driver with Isaac suggestions. The driver appears to work pretty well. The only thing I have observed with the driver is that on server node after LNET is brought up it can&apos;t ping the MGS until after I first ping the routers. Issac have any idea what could be causing that?&lt;/p&gt;</comment>
                            <comment id="47956" author="isaac" created="Fri, 16 Nov 2012 15:35:37 +0000"  >&lt;p&gt;Can you reproduce it?&lt;/p&gt;</comment>
                            <comment id="47995" author="simmonsja" created="Mon, 19 Nov 2012 08:50:08 +0000"  >&lt;p&gt;Found the bug in the driver causing this. The latest patch works now.&lt;/p&gt;</comment>
                            <comment id="49469" author="pjones" created="Wed, 19 Dec 2012 19:42:51 +0000"  >&lt;p&gt;Patch landed for 2.4. I suggest that any subsequent updates are handled under separate tickets for clarity.&lt;/p&gt;</comment>
                    </comments>
                    <attachments>
                            <attachment id="11683" name="git-cleanup.sh" size="661" author="simmonsja" created="Wed, 11 Jul 2012 15:39:00 +0000"/>
                    </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|hzvqaf:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10090" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>8135</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                </customfields>
    </item>
</channel>
</rss>