<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 02:34:38 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-10391] LNET: Support IPv6</title>
                <link>https://jira.whamcloud.com/browse/LU-10391</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;This improvement calls for fully supporting IPv6 throughout LNet and the LND&apos;s.  This will allow Lustre to run in IPV6 networks, in conjunction with related changes to any configuration and PtlRPC changes where NIDs are processed (e.g. config llog records, Imperative Recovery, etc.).&lt;/p&gt;</description>
                <environment></environment>
        <key id="13182">LU-10391</key>
            <summary>LNET: Support IPv6</summary>
                <type id="2" iconUrl="https://jira.whamcloud.com/secure/viewavatar?size=xsmall&amp;avatarId=11311&amp;avatarType=issuetype">New Feature</type>
                                            <priority id="3" iconUrl="https://jira.whamcloud.com/images/icons/priorities/major.svg">Major</priority>
                        <status id="4" iconUrl="https://jira.whamcloud.com/images/icons/statuses/reopened.png" description="This issue was once resolved, but the resolution was deemed incorrect. From here issues are either marked assigned or resolved.">Reopened</status>
                    <statusCategory id="2" key="new" colorName="default"/>
                                    <resolution id="-1">Unresolved</resolution>
                                        <assignee username="neilb">Neil Brown</assignee>
                                    <reporter username="doug">Doug Oucharek</reporter>
                        <labels>
                            <label>IPv6</label>
                            <label>lnet</label>
                            <label>upstream</label>
                    </labels>
                <created>Tue, 14 Feb 2012 18:28:24 +0000</created>
                <updated>Tue, 6 Feb 2024 23:18:22 +0000</updated>
                                                            <fixVersion>Upstream</fixVersion>
                    <fixVersion>Lustre 2.16.0</fixVersion>
                                        <due></due>
                            <votes>3</votes>
                                    <watches>26</watches>
                                                                            <comments>
                            <comment id="136511" author="adilger" created="Wed, 16 Dec 2015 05:19:53 +0000"  >&lt;p&gt;Comments from Multi-Rail HLD &lt;a href=&quot;https://wiki.whamcloud.com/pages/viewpage.action?pageId=31073572&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://wiki.whamcloud.com/pages/viewpage.action?pageId=31073572&lt;/a&gt; :&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;One proposal was to create an incompatible IPv6-capable network protocol, simply by increasing the field size at compile time and have separate LND types for the new protocol. Those sites that can&apos;t just switch entirely over to the IPv6 protocol could use LNet routers to translate messages between the protocols as needed.  Of course, the longer this is delayed, the more sites will be affected.&lt;/p&gt;

&lt;p&gt;In any case, increasing the field size here is trivial before implementation and the fewer places that need to be fixed in the future, the better, especially when dealing with userspace interfaces.&lt;/p&gt;

&lt;p&gt;The main issue is NIDs, which are 64 bits, with only 32 bits reserved for the node interface id.&lt;/p&gt;

&lt;p&gt;The MGS could just assign a 32 bit ID, if there were something like the MGS. But there isn&apos;t, so it can&apos;t. (In contrast, CXFS has a cellid concept separate from any IP address or other identifier, so when we did IPv6 support the work really was limited to the network layers and configurationhandling.)&lt;/p&gt;

&lt;p&gt;For this work I&apos;d really like to have some node ID separate from IP address (or whatever), as it would help resolve some edge cases. I&apos;m just not seeing an easy way to add it and retain backward compatibility. And anything complex in that area becomes a beyond-scope issue...&lt;/p&gt;

&lt;p&gt;For lnet_ping_info_t it seems fairly straight forward to set a new LNET_PING_FEAT_IPV6 flag in pi_features and then have a new lnet_ni_status32_t with a new lnet_nid32_t large enough to hold a 128-bit IPv6 NID.&lt;/p&gt;

&lt;p&gt;There is a separate problem of the other uses of lnet_nid_t in the protocol, but if we can get the initial handshake to exchange support for larger NIDs then the rest of the messages can follow suit.&lt;/p&gt;

&lt;p&gt;That said, IPv6 support is way beyond the scope of the multi-rail implementation.  My main goal is to ensure that we don&apos;t put any more roadblocks in the way of implementing that, especially in initial connection establishment messages like PING and PUSH.  If anything else can be done to make the LNet protocol &quot;more accepting&quot; of IPv6 NIDs in the future (e.g. better protocol feature exchange at connection time), that would be welcome.&lt;/p&gt;

&lt;p&gt;For the ping_info, a feature flag could indicate a separate header following the current pi_nid[] array, specifying the number of the new-format NIDs. A downrev node would ignore that part of the data.&lt;/p&gt;

&lt;p&gt;It would also be possible to use a different match bit for a new-style ping request. That way a downrev node would not be seeing the new form at all.&lt;/p&gt;

&lt;p&gt;I like the idea of adding the IPv6 (or other larger-format addresses) after the regular lnet_nid_t addresses, since that avoids sending larger packets in the case where it is not needed.&lt;/p&gt;

&lt;p&gt;For socklnd, I see it might be possible to change the ksock_hello_msg_t.kshm_version and lnet_magicversion_tactually be a bitfield of features rather than a numeric version number.  In particular, version_major and version_minor are described as compatible and incompatible &quot;versions&quot; but they could be bitfields as well (equivalent to incrementing the version in power-of-two values for old clients that don&apos;t understand the feature flags).&lt;/p&gt;

&lt;p&gt;My goal for projects like this is to try and lay the groundwork early on, if possible, and then when it comes time to implement the feature (maybe a few years/releases later) it can be done in a way that doesn&apos;t cause so many problems for older clients.&lt;/p&gt;

&lt;p&gt;At socknal level you&apos;d likely use a new ksock_hello_ipv6_msg_t. At the point where you&apos;re sending it, you know for certain whether you&apos;re talking over IPv4 or IPv6.&lt;/p&gt;

&lt;p&gt;And (hypothetically speaking) the multi-rail work should render obsolete the reason for ksocknal to send IP addresses in its hello message.&lt;/p&gt;&lt;/blockquote&gt;</comment>
                            <comment id="216357" author="adilger" created="Thu, 14 Dec 2017 20:14:29 +0000"  >&lt;p&gt;This ticket isn&apos;t due to any specific requirement for this feature, but just to preserve discussion/brainstorming on this topic in case it is needed in the future.  IPv6 support is definitely something to keep in mind as other changes are being made in the LNet layer.&lt;/p&gt;</comment>
                            <comment id="261371" author="adilger" created="Thu, 16 Jan 2020 23:39:58 +0000"  >&lt;p&gt;Some discussion ongoing at &lt;a href=&quot;https://wiki.whamcloud.com/display/LNet/Upstream+IPv6+Proposal&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://wiki.whamcloud.com/display/LNet/Upstream+IPv6+Proposal&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="261614" author="gerrit" created="Wed, 22 Jan 2020 06:27:42 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/37302&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37302&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: use data_ready callback to trigger accept()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 20aad747f31c00cc72dee23e0cb15ac5bd2891c4&lt;/p&gt;</comment>
                            <comment id="261615" author="gerrit" created="Wed, 22 Jan 2020 06:27:42 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/37303&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37303&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: discard lnet_sock_accept()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 7a201c3f7f83c36ea9312b413b88a3b3714b9af4&lt;/p&gt;</comment>
                            <comment id="263642" author="gerrit" created="Thu, 20 Feb 2020 07:13:20 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/37302/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37302/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: use data_ready callback to trigger accept()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 40e4d957e33268354a3fd938545bf717ed415372&lt;/p&gt;</comment>
                            <comment id="263643" author="gerrit" created="Thu, 20 Feb 2020 07:13:38 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/37303/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37303/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: discard lnet_sock_accept()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: a1b8fd633d2eb3f92151eafcb22e7413ec33bf03&lt;/p&gt;</comment>
                            <comment id="263931" author="gerrit" created="Mon, 24 Feb 2020 23:42:51 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/37694&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37694&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: remove &apos;accept&apos; variable.&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: e66e91a3caeeb9627425a13dcaffbc1243f32925&lt;/p&gt;</comment>
                            <comment id="263932" author="gerrit" created="Mon, 24 Feb 2020 23:55:27 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/37695&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37695&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: simplify use of lnet_count_acceptor_nets()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 055fab3e3f8d6f1a0779c145151d097a87d6d671&lt;/p&gt;</comment>
                            <comment id="263943" author="gerrit" created="Tue, 25 Feb 2020 02:43:39 +0000"  >&lt;p&gt;Andreas Dilger (adilger@whamcloud.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/37699&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37699&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: document the accept_type parameter&lt;br/&gt;
Project: doc/manual&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 32dd22eb253f15be043b50fcd86afa060d000db0&lt;/p&gt;</comment>
                            <comment id="263946" author="gerrit" created="Tue, 25 Feb 2020 05:09:11 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/37700&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37700&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: remove &apos;fatal&apos; arg from lnet_&lt;/p&gt;
{sock_}
&lt;p&gt;connect&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: ab0472426a7f21abe94eb8b8a454d630bc9a584b&lt;/p&gt;</comment>
                            <comment id="263947" author="gerrit" created="Tue, 25 Feb 2020 05:09:12 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/37701&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37701&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: change various function to return pointer&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 5504dc5b5a3b84d93f5a654c8a9c4b204b7333bf&lt;/p&gt;</comment>
                            <comment id="263948" author="gerrit" created="Tue, 25 Feb 2020 05:09:12 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/37702&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37702&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; socklnd: use interface index to track local addr&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 40c72ad9edc77cac157fcf9d5291d78754a58c82&lt;/p&gt;</comment>
                            <comment id="263949" author="gerrit" created="Tue, 25 Feb 2020 05:09:13 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/37703&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37703&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: change lnet_sock_connect to take sockaddr&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 431032f585ccaf6325a9d52381f37710256b54ea&lt;/p&gt;</comment>
                            <comment id="263950" author="gerrit" created="Tue, 25 Feb 2020 05:09:14 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/37704&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37704&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; socklnd: use sockaddr instead of __u32 addresses.&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 0195d02f9033e07c170ba5b1562d1b910f2ee8ef&lt;/p&gt;</comment>
                            <comment id="263951" author="gerrit" created="Tue, 25 Feb 2020 05:09:14 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/37705&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37705&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: allow creation of IPv6 socket.&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: ba2baedcbde4347f3417637f810c57c61683157d&lt;/p&gt;</comment>
                            <comment id="263952" author="gerrit" created="Tue, 25 Feb 2020 05:09:15 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/37706&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37706&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: allow lnet_connect() to use IPv6 addresses.&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: b18033798fe7db05f2ae3a8e73599cfc78d12ec8&lt;/p&gt;</comment>
                            <comment id="264113" author="gerrit" created="Wed, 26 Feb 2020 21:15:35 +0000"  >&lt;p&gt;Joseph Gmitter (jgmitter@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/37699/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37699/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: document the accept= parameter properly&lt;br/&gt;
Project: doc/manual&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: eb19b25530064e7622ef51083306a669f9a99419&lt;/p&gt;</comment>
                            <comment id="265052" author="gerrit" created="Wed, 11 Mar 2020 02:10:14 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/37694/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37694/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: remove &apos;accept&apos; variable.&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 24ab342d6e7b22628b096d89cdfe1d0d54d5551a&lt;/p&gt;</comment>
                            <comment id="265917" author="gerrit" created="Tue, 24 Mar 2020 05:15:46 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/37700/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37700/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: remove &apos;fatal&apos; arg from lnet_&lt;/p&gt;
{sock_}
&lt;p&gt;connect&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 97084f70a6c2956d49d8dc289aeb8ede84e5f7b4&lt;/p&gt;</comment>
                            <comment id="265918" author="gerrit" created="Tue, 24 Mar 2020 05:15:54 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/37701/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37701/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: change various function to return pointer&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 3e42620b5b79170ec219e52d2a7e915559addba4&lt;/p&gt;</comment>
                            <comment id="267507" author="gerrit" created="Tue, 14 Apr 2020 08:09:17 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/37695/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37695/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: simplify use of lnet_count_acceptor_nets()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 1477027d073be1efb6ffbb368ed68b97a65c72f1&lt;/p&gt;</comment>
                            <comment id="267508" author="gerrit" created="Tue, 14 Apr 2020 08:09:22 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/37702/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37702/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; socklnd: use interface index to track local addr&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: d720fbaadad9343a481863ae3b04ba580541328d&lt;/p&gt;</comment>
                            <comment id="268079" author="gerrit" created="Mon, 20 Apr 2020 17:50:03 +0000"  >&lt;p&gt;James Simmons (jsimmons@infradead.org) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/38287&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/38287&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; socklnd: properly order headers in socklnd.h&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 53e10cce44376f36d0a4816cf8df814e6a5d28d2&lt;/p&gt;</comment>
                            <comment id="268377" author="gerrit" created="Thu, 23 Apr 2020 16:48:56 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/37703/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37703/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: change lnet_sock_connect to take sockaddr&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: a486ca181d44682187016d41d6922c68474b226d&lt;/p&gt;</comment>
                            <comment id="268826" author="gerrit" created="Wed, 29 Apr 2020 00:42:48 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/38408&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/38408&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; socklnd: convert ksocknal_add_peer to take sockaddr&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: a368e5203ef95f23c2b133893494777088ab15f1&lt;/p&gt;</comment>
                            <comment id="269057" author="gerrit" created="Fri, 1 May 2020 04:26:35 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/38287/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/38287/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; socklnd: properly order headers in socklnd.h&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 5ba2cc615ba9e60075412cecbce9edaaf3eea2e3&lt;/p&gt;</comment>
                            <comment id="271904" author="gerrit" created="Wed, 3 Jun 2020 23:01:35 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/38823&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/38823&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: fix uninitialize var in choose_ipv4_src()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 9e9080880b644eb41b6a1fa51ba89138d1620671&lt;/p&gt;</comment>
                            <comment id="272527" author="gerrit" created="Wed, 10 Jun 2020 20:51:30 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/38823/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/38823/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: fix uninitialize var in choose_ipv4_src()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 8ea895389a92dbd08fb398dbda0a8f0f2dde063b&lt;/p&gt;</comment>
                            <comment id="275407" author="gerrit" created="Wed, 15 Jul 2020 00:58:03 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/39373&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/39373&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: extended nids.&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: d9d888e8f9d14682b85e5b4a86fc21a9b68e1e49&lt;/p&gt;</comment>
                            <comment id="293158" author="gerrit" created="Fri, 26 Feb 2021 08:23:41 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/37704/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37704/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; socklnd: use sockaddr instead of __u32 addresses.&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: c35c1babc7466ed1f49a9efc879a4aaba8d000e6&lt;/p&gt;</comment>
                            <comment id="293277" author="gerrit" created="Fri, 26 Feb 2021 21:07:42 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/37705/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37705/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: allow creation of IPv6 socket.&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: e4fa181abf1032198ad278cf9f0560e45158c9bc&lt;/p&gt;</comment>
                            <comment id="293278" author="gerrit" created="Fri, 26 Feb 2021 21:07:51 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/37706/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/37706/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: allow lnet_connect() to use IPv6 addresses.&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: fb40f0b62d77d699ad22b635cc8275fbd5d1347f&lt;/p&gt;</comment>
                            <comment id="295149" author="gerrit" created="Tue, 16 Mar 2021 18:16:33 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/38408/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/38408/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; socklnd: convert ksocknal_add_peer to take sockaddr&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: fdce7be68eb7ab2fc7945e81d2dc49f3595ec790&lt;/p&gt;</comment>
                            <comment id="295408" author="neilb" created="Fri, 19 Mar 2021 05:48:39 +0000"  >&lt;p&gt;My design for this change is to introduce a new &quot;struct lnet_nid&quot; which has room for 16 bytes of address.&lt;/p&gt;

&lt;p&gt;This will then be gradually spread throughout the code replacing &apos;lnet_nid_t&apos; which will eventually be deprecated.&lt;/p&gt;

&lt;p&gt;Where lnet_nid_t is often passed to functions, and returned, by value, &apos;struct lnet_nid&apos; is larger and will be passed or returned by reference.&#160; This change in particular means that it is easiest to change the type gradually, rather than trying to prepare all the code to allow &quot;lnet_nid_t&quot; to be atomically changed to a larger size.&lt;/p&gt;

&lt;p&gt;Where possible, we change the arguements to a function from old to new style.&#160; Sometimes we need to keep both old-style and new-style functions available concurrently.&lt;/p&gt;

&lt;p&gt;When this happens I have used two approaches to naming.&#160; If there are relatively few uses of the function, the old one is renamed to have a &quot;_4b&quot; suffix (because it supports addresses with a 4-byte address), and the name is then used for new-style format.&#160; When there are too many uses for this to be practical, a new name which is spelt slightly differently is used.&#160; e.g. libcfs_nid2str becomes libcfs_nidstr.&#160; This will probably cause confusion during the transition, but the compiler will easily warn about any such confusion.&lt;/p&gt;

&lt;p&gt;I plan to submit patches (I currently have 35, but there is quite a lot more work to do) in smallish batches over coming weeks - depending on review feedback.&lt;/p&gt;

&lt;p&gt;&#160;&lt;/p&gt;

&lt;p&gt;&#160;&lt;/p&gt;</comment>
                            <comment id="295409" author="gerrit" created="Fri, 19 Mar 2021 05:49:15 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/42100&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/42100&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: introduce struct lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 19db1615bbc436e4ed7818822a5b9fefecef9995&lt;/p&gt;</comment>
                            <comment id="295410" author="gerrit" created="Fri, 19 Mar 2021 05:49:16 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/42101&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/42101&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: change lpni_nid in lnet_peer_ni to lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: eba3fab8f2ab3c04ef7a234731919e0bdc1868f9&lt;/p&gt;</comment>
                            <comment id="295411" author="gerrit" created="Fri, 19 Mar 2021 05:49:17 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/42102&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/42102&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: change lp_primary_nid to struct lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 48157bf75bcf8d54f5d66b4f65ed83d7e9cca5ae&lt;/p&gt;</comment>
                            <comment id="295412" author="gerrit" created="Fri, 19 Mar 2021 05:49:17 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/42103&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/42103&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; socklnd: factor out key calculation for ksnd_peers&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 4487a93e2680edc303ceb8206bfbc1854ada65fe&lt;/p&gt;</comment>
                            <comment id="295413" author="gerrit" created="Fri, 19 Mar 2021 05:49:18 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/42104&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/42104&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: introduce lnet_processid for ksock_peer_ni&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 7313152304b39a87880034afed52d227e7238e06&lt;/p&gt;</comment>
                            <comment id="295414" author="gerrit" created="Fri, 19 Mar 2021 05:49:18 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/42105&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/42105&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: enhance connect/accept to support large addr&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 866363f9e278aaa03b347f0065abf4c17f27a39c&lt;/p&gt;</comment>
                            <comment id="300958" author="gerrit" created="Mon, 10 May 2021 04:13:03 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/43602&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43602&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; socklnd: don&apos;t deref lnet_hdr in LNDs&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: c7394bd6c7ac0395be62383ffc3cc7ff3c678111&lt;/p&gt;</comment>
                            <comment id="300959" author="gerrit" created="Mon, 10 May 2021 04:13:04 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/43601&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43601&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; socklnd: prepare for new KSOCK_MSG type&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: ae5785665fa0efd253350ca17240d1f80977993d&lt;/p&gt;</comment>
                            <comment id="300960" author="gerrit" created="Mon, 10 May 2021 04:13:04 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/43604&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43604&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: change lnet_hdr to store large nids.&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 7fbfd9b0fea6011d755c679c4a921f52345e5c40&lt;/p&gt;</comment>
                            <comment id="300961" author="gerrit" created="Mon, 10 May 2021 04:13:05 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/43599&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43599&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: Change lnet_send() to take large-addr nids&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 0dda32010d527a97c48281be28d2cbbd079834f0&lt;/p&gt;</comment>
                            <comment id="300962" author="gerrit" created="Mon, 10 May 2021 04:13:06 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/43596&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43596&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: extend prefered nids in struct lnet_peer_ni&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: f97d65932ddc9ed8f271f851cf1ecd6ffc94be2b&lt;/p&gt;</comment>
                            <comment id="300963" author="gerrit" created="Mon, 10 May 2021 04:13:07 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/43598&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43598&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: extend nids in struct lnet_msg&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: bac00deb99859703aadc28466b4a8bb5c387000d&lt;/p&gt;</comment>
                            <comment id="300964" author="gerrit" created="Mon, 10 May 2021 04:13:07 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/43603&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43603&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: separate lnet_hdr in msg from that in lnd.&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 859daa629790266b7bf3c22a6d6f50f77ec3220d&lt;/p&gt;</comment>
                            <comment id="300965" author="gerrit" created="Mon, 10 May 2021 04:13:08 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/43600&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43600&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: use large nids in struct lnet_event&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: a7550b6e387a5203c10650d7c9ed7e96d0ef95a3&lt;/p&gt;</comment>
                            <comment id="300966" author="gerrit" created="Mon, 10 May 2021 04:13:09 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/43594&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43594&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: extend rspt_next_hop_nid in lnet_rsp_tracker&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: c6dde91fbec7aad0bbf9735d1b250a341c9286b6&lt;/p&gt;</comment>
                            <comment id="300967" author="gerrit" created="Mon, 10 May 2021 04:13:09 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/43595&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43595&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: change tp_nid to tp_nidx in lnet_test_peer.&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 4fd69f373f972bb6d2bf3da79272fbca46b39c36&lt;/p&gt;</comment>
                            <comment id="300968" author="gerrit" created="Mon, 10 May 2021 04:13:11 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/43607&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43607&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: convert LNetGetID to return an large-addr pid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: a447f978860b2c06e4b3681ec37089a3864db62b&lt;/p&gt;</comment>
                            <comment id="300969" author="gerrit" created="Mon, 10 May 2021 04:13:12 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/43593&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43593&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: change lr_nid to struct lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 778199af877bc8a70ef5be6e55545bf826c509c5&lt;/p&gt;</comment>
                            <comment id="300970" author="gerrit" created="Mon, 10 May 2021 04:13:12 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/43605&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43605&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: change lnet_prep_send to take net_processid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: cb7e8e39bc1b84c6b41482a692c6798f5abdabe4&lt;/p&gt;</comment>
                            <comment id="300971" author="gerrit" created="Mon, 10 May 2021 04:13:13 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/43606&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43606&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: convert to struct lnet_process_id in lib-move&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 6ce5940878addceda0fcbbb27dc42a9162d41dee&lt;/p&gt;</comment>
                            <comment id="300972" author="gerrit" created="Mon, 10 May 2021 04:13:14 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/43597&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43597&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: switch to large lnet_processid for matching&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: b5ac8e556f6adc72fa894d4cb17dfe02f5e9d57b&lt;/p&gt;</comment>
                            <comment id="300973" author="gerrit" created="Mon, 10 May 2021 04:13:14 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/43608&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43608&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: alter lnd_notify_peer_down() to take lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 289b1a0101103f0cbf1565cff407f3f6759b8fc9&lt;/p&gt;</comment>
                            <comment id="300974" author="gerrit" created="Mon, 10 May 2021 04:13:15 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/43609&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43609&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; socklnd: move lnet_hdr unpack into -&amp;gt;pro_unpack&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 90dc25b7e751e33a160ea2d0678b5c8be1ddef3d&lt;/p&gt;</comment>
                            <comment id="300975" author="gerrit" created="Mon, 10 May 2021 04:13:16 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/43616&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43616&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: change LNetPrimaryNID to use struct lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 9ac20dc8f426fc958bebb0b11975f6181745f537&lt;/p&gt;</comment>
                            <comment id="300976" author="gerrit" created="Mon, 10 May 2021 04:13:17 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/43612&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43612&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: Convert ping to support 16-bytes address&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 8dceda3d5e051a6716c1f0241b6d79346da847f2&lt;/p&gt;</comment>
                            <comment id="300977" author="gerrit" created="Mon, 10 May 2021 04:13:17 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/43610&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43610&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; socklnd: Change ksock_hello_msg to struct lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: dd9daf8c0b63f4feed05903204a91c0efc52c518&lt;/p&gt;</comment>
                            <comment id="300978" author="gerrit" created="Mon, 10 May 2021 04:13:18 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/43611&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43611&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; socklnd: add hello message version 4&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 4b1b09a1b265b25df2442b5d2f25efeefc246735&lt;/p&gt;</comment>
                            <comment id="300979" author="gerrit" created="Mon, 10 May 2021 04:13:19 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/43613&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43613&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: convert nids in lnet_parse to lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 991a00743fad9f571bd536a2ffc54d51c8d38a1a&lt;/p&gt;</comment>
                            <comment id="300980" author="gerrit" created="Mon, 10 May 2021 04:13:19 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/43614&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43614&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: change src_nid arg to lnet_parse() to 16byte&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 39853c4a7a32729e1e227c18d5a4d66603c3e200&lt;/p&gt;</comment>
                            <comment id="300981" author="gerrit" created="Mon, 10 May 2021 04:13:20 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/43617&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43617&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: alter lnet_drop_rule_match() to take lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: dbea7682cf6c4ba3f8d2cb87c6eb8b421ecfd6a7&lt;/p&gt;</comment>
                            <comment id="300982" author="gerrit" created="Mon, 10 May 2021 04:13:21 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/43618&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43618&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: Change LNetDist to work with struct lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 10879bad04e4deb70f57cf6e7e82c777aa9b62c6&lt;/p&gt;</comment>
                            <comment id="300983" author="gerrit" created="Mon, 10 May 2021 04:13:21 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/43615&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43615&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: change lnet_del_route() to take lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 5fbe19203a56856b8e7035be6b7c4dd68ed28d67&lt;/p&gt;</comment>
                            <comment id="300984" author="gerrit" created="Mon, 10 May 2021 04:13:22 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/43621&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43621&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: switch LNetIsPeerLocal() to take 16-byte addr&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: ad5788250c2d66f0881772a5fad61cdb244ac77a&lt;/p&gt;</comment>
                            <comment id="300985" author="gerrit" created="Mon, 10 May 2021 04:13:23 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/43619&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43619&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: convert LNetPut to take 16byte nid and pid.&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: ddd4fe7f8ada0c96bfad1bd81cf655eee1d57eec&lt;/p&gt;</comment>
                            <comment id="300986" author="gerrit" created="Mon, 10 May 2021 04:13:23 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/43620&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43620&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: change LNetGet to take 16byte nid and pid.&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 54ea0a4448f2fc8dcad62022f903f0b318ded46f&lt;/p&gt;</comment>
                            <comment id="303790" author="gerrit" created="Tue, 8 Jun 2021 04:13:12 +0000"  >&lt;p&gt;Neil Brown (neilb@suse.de) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/43942&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43942&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: add string formating/parsing for IPv6 nids&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 5258926381c4fb8a54d8ffe6a3d641445280ba5f&lt;/p&gt;</comment>
                            <comment id="310004" author="gerrit" created="Thu, 12 Aug 2021 01:36:36 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/44620&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/44620&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: change lp_disc_*_nid to struct lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: c4952d2a83901ad1d7395531a9d89e6734a20de1&lt;/p&gt;</comment>
                            <comment id="310005" author="gerrit" created="Thu, 12 Aug 2021 01:36:37 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/44621&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/44621&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; socklnd: pass large processid to ksocknal_add_peer&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 32041048a2317a81b3b14305f92d404166ebeb68&lt;/p&gt;</comment>
                            <comment id="310006" author="gerrit" created="Thu, 12 Aug 2021 01:36:38 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/44622&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/44622&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; socklnd: large processid for ksocknal_get_peer_info&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 09e0aecf97e8d31036e99815c3655e1f944f7f1d&lt;/p&gt;</comment>
                            <comment id="310007" author="gerrit" created="Thu, 12 Aug 2021 01:36:38 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/44623&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/44623&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; socklnd: switch ksocknal_del_peer to lnet_processid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 9e13ee1b530124c279b5c902fe050a379006675f&lt;/p&gt;</comment>
                            <comment id="310008" author="gerrit" created="Thu, 12 Aug 2021 01:36:39 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/44624&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/44624&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: discard some peer_ni lookup functions&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 4c07cecc9fd9fe473e5a32aae973d447fbfc11b5&lt;/p&gt;</comment>
                            <comment id="310009" author="gerrit" created="Thu, 12 Aug 2021 01:36:40 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/44625&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/44625&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: change lnet_*_peer_ni to take struct lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 67fb98b61af337770bcbdc83a04863f0c3615c23&lt;/p&gt;</comment>
                            <comment id="310010" author="gerrit" created="Thu, 12 Aug 2021 01:36:40 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/44626&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/44626&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: change ni_status in lnet_ni to __u32*&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 1f4f6b2f23f41d9eaf1bb48658ba7996bd116a58&lt;/p&gt;</comment>
                            <comment id="310011" author="gerrit" created="Thu, 12 Aug 2021 01:36:41 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/44627&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/44627&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: track pinginfo size in bytes, not nis.&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: abf0640a9e45c04fc04cbed942f0aeea48a58f5a&lt;/p&gt;</comment>
                            <comment id="310012" author="gerrit" created="Thu, 12 Aug 2021 01:36:41 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/44628&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/44628&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: allow ping packet to contain large nids&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: c7ac157f919458313373d1a58c1ad695440c90b9&lt;/p&gt;</comment>
                            <comment id="310013" author="gerrit" created="Thu, 12 Aug 2021 01:36:42 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/44629&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/44629&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: extend lnet_is_nid_in_ping_info()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: b8b175d8cb939e86f9157b35696d02bd126f09ba&lt;/p&gt;</comment>
                            <comment id="310014" author="gerrit" created="Thu, 12 Aug 2021 01:36:42 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/44630&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/44630&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: lnet_peer_merge_data to understand large addr&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: d51a36f6cab7dd93a99f4ecfa488fd46b5ceee2e&lt;/p&gt;</comment>
                            <comment id="310015" author="gerrit" created="Thu, 12 Aug 2021 01:36:43 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/44631&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/44631&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: router_discover - handle large addrs in ping&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 6bc2bceab7f0d24d5a3816d0579c054af97cb221&lt;/p&gt;</comment>
                            <comment id="310016" author="gerrit" created="Thu, 12 Aug 2021 01:36:44 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/44632&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/44632&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: find correct primary for peer&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 1c4adbe11b16051c8767b3daf3c585032a3be128&lt;/p&gt;</comment>
                            <comment id="310017" author="gerrit" created="Thu, 12 Aug 2021 01:36:44 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/44633&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/44633&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: change lnet_notify() to take struct lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 460b98629d91ea5405c318d420bdf2b773cd4bf6&lt;/p&gt;</comment>
                            <comment id="310018" author="gerrit" created="Thu, 12 Aug 2021 01:36:45 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/44634&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/44634&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: discard lnet_nid2ni_*()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 267eb4571541b01aa163bab26dac138e521824ee&lt;/p&gt;</comment>
                            <comment id="310019" author="gerrit" created="Thu, 12 Aug 2021 01:36:45 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/44635&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/44635&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: change lnet_debug_peer() to struct lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 583c900d253b9a99e3a44cec34edbe61389daad8&lt;/p&gt;</comment>
                            <comment id="310020" author="gerrit" created="Thu, 12 Aug 2021 01:36:46 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/44636&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/44636&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; ptlrpc: change rq_self to struct lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 669f9afefa9b44120f02b60b0fd81dc2e4efc9b7&lt;/p&gt;</comment>
                            <comment id="310021" author="gerrit" created="Thu, 12 Aug 2021 01:36:47 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/44637&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/44637&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; ptlrpc: pass net num to ptlrpc_uuid_to_connection&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: c435255f13b0e08538b45ec4e3e83e2dfbd7b258&lt;/p&gt;</comment>
                            <comment id="310022" author="gerrit" created="Thu, 12 Aug 2021 01:36:47 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/44638&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/44638&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; ptlrpc: change rq_peer to struct lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: bec60629e3dfac689ffc1d51283575dce9a06f72&lt;/p&gt;</comment>
                            <comment id="310023" author="gerrit" created="Thu, 12 Aug 2021 01:36:48 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/44639&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/44639&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; ptlrpc: change rq_source to struct lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 3490718fbb01b4a3124c13a34e7b63960722973a&lt;/p&gt;</comment>
                            <comment id="310024" author="gerrit" created="Thu, 12 Aug 2021 01:36:48 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/44640&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/44640&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; ptlrpc: change bd_sender in ptlrpc_bulk_frag_ops&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 7e86d6a36273dbb3b2f14a3a46c2fd6eb0bb6521&lt;/p&gt;</comment>
                            <comment id="310025" author="gerrit" created="Thu, 12 Aug 2021 01:36:49 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/44641&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/44641&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; ptlrpc: pass lnet_nid for self to ptl_send_buf()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 5a6f85755294486200a6fe939a7be10f0c532fe2&lt;/p&gt;</comment>
                            <comment id="310026" author="gerrit" created="Thu, 12 Aug 2021 01:36:49 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/44642&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/44642&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; ptlrpc: lprocfs_exp_setup() to take struct lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 0203e4cfbfc13ba10f6db201c3c418b6d21d84fc&lt;/p&gt;</comment>
                            <comment id="311636" author="gerrit" created="Tue, 31 Aug 2021 05:19:18 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/42100/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/42100/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: introduce struct lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 82a17076f880770a267746eafc9d956998189531&lt;/p&gt;</comment>
                            <comment id="311637" author="gerrit" created="Tue, 31 Aug 2021 05:19:26 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/43942/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43942/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: add string formating/parsing for IPv6 nids&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 7224b21156639a639d9755e1c2bf05affde50785&lt;/p&gt;</comment>
                            <comment id="311638" author="gerrit" created="Tue, 31 Aug 2021 05:19:32 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/42101/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/42101/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: change lpni_nid in lnet_peer_ni to lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 6c5561a1e1eeab18e8226d410f4aa9922fbab0d8&lt;/p&gt;</comment>
                            <comment id="311639" author="gerrit" created="Tue, 31 Aug 2021 05:19:37 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/42102/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/42102/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: change lp_primary_nid to struct lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 36dd83ee8e143a4726317565e1bdc8834edcbe70&lt;/p&gt;</comment>
                            <comment id="311640" author="gerrit" created="Tue, 31 Aug 2021 05:19:43 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/44620/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/44620/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: change lp_disc_*_nid to struct lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: f38529cd3a1722119e48abe0931c3e232d3cc1f7&lt;/p&gt;</comment>
                            <comment id="311641" author="gerrit" created="Tue, 31 Aug 2021 05:19:49 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/42103/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/42103/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; socklnd: factor out key calculation for ksnd_peers&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 96a0c378c2e0a0c8f7e21404252e66944e163100&lt;/p&gt;</comment>
                            <comment id="311642" author="gerrit" created="Tue, 31 Aug 2021 05:19:55 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/42104/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/42104/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: introduce lnet_processid for ksock_peer_ni&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: e1dbfdd53e2ce95433f17ea610a5987c128e9c51&lt;/p&gt;</comment>
                            <comment id="311643" author="gerrit" created="Tue, 31 Aug 2021 05:20:00 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/42105/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/42105/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: enhance connect/accept to support large addr&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 9b0738c53c962f4269178e420d45565f9ec5bd09&lt;/p&gt;</comment>
                            <comment id="311644" author="gerrit" created="Tue, 31 Aug 2021 05:20:07 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/43593/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43593/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: change lr_nid to struct lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: d1e2f6fc688762222c63095173cfb5d19a93d377&lt;/p&gt;</comment>
                            <comment id="311645" author="gerrit" created="Tue, 31 Aug 2021 05:20:14 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/43594/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43594/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: extend rspt_next_hop_nid in lnet_rsp_tracker&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: a34afe7f20ec7d618d3c6a129f0eda3a18972928&lt;/p&gt;</comment>
                            <comment id="312024" author="gerrit" created="Fri, 3 Sep 2021 03:25:05 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/44838&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/44838&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: Fix NULL-deref in lnet_nidstr_r()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 0a1ae426338e3e6866536fc57cb02ba3e8df45a3&lt;/p&gt;</comment>
                            <comment id="312104" author="gerrit" created="Fri, 3 Sep 2021 23:26:32 +0000"  >&lt;p&gt;&quot;James Simmons &amp;lt;jsimmons@infradead.org&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/44844&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/44844&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; uapi: move out kernel only code.&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: a0bd88c47d458e3d20d3e0866fec5ef5cd33e688&lt;/p&gt;</comment>
                            <comment id="318726" author="gerrit" created="Sat, 20 Nov 2021 06:24:15 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/43595/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43595/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: change tp_nid to 16byte in lnet_test_peer.&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 7e89b556ea7dc4b4cf5e6bce3b1da6bed0190e8b&lt;/p&gt;</comment>
                            <comment id="318727" author="gerrit" created="Sat, 20 Nov 2021 06:24:21 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/43596/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43596/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: extend prefered nids in struct lnet_peer_ni&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 47cc77462343533b4d706836e7e087f7a1844318&lt;/p&gt;</comment>
                            <comment id="318728" author="gerrit" created="Sat, 20 Nov 2021 06:24:29 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/43597/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43597/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: switch to large lnet_processid for matching&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: db49fbf00d24edc8347006241f314fb0f82f1b63&lt;/p&gt;</comment>
                            <comment id="318818" author="simmonsja" created="Sun, 21 Nov 2021 15:41:46 +0000"  >&lt;p&gt;In the interop testing 2.12.7 is being used which always fails racer for RHEL7. A fix has landed to 2.12.8. Can someone bump the version the interop testing is being done against. Thanks.&lt;/p&gt;</comment>
                            <comment id="318819" author="adilger" created="Sun, 21 Nov 2021 16:32:44 +0000"  >&lt;p&gt;That will happen when 2.12.8 is released. &lt;/p&gt;</comment>
                            <comment id="319454" author="gerrit" created="Tue, 30 Nov 2021 03:45:09 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/44844/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/44844/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; uapi: move out kernel only code.&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 0631caae7d804720de275ac557dda52d7f6e5084&lt;/p&gt;</comment>
                            <comment id="322974" author="gerrit" created="Tue, 18 Jan 2022 09:08:17 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/43598/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43598/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: extend nids in struct lnet_msg&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 57c03f3070753146a1d374939197e8c838a0bcc1&lt;/p&gt;</comment>
                            <comment id="322975" author="gerrit" created="Tue, 18 Jan 2022 09:08:23 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/43599/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43599/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: Change lnet_send() to take large-addr nids&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 005bd7075c8710fb8efaede1148870d2c0601aad&lt;/p&gt;</comment>
                            <comment id="322976" author="gerrit" created="Tue, 18 Jan 2022 09:08:30 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/43600/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43600/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: use large nids in struct lnet_event&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: e1d0224fb4045571a2d71e3a802095d82086e5e9&lt;/p&gt;</comment>
                            <comment id="322977" author="gerrit" created="Tue, 18 Jan 2022 09:08:43 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/43601/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43601/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; socklnd: prepare for new KSOCK_MSG type&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 6940303aad5375bb2c83160f87c0cacf9129b5aa&lt;/p&gt;</comment>
                            <comment id="322978" author="gerrit" created="Tue, 18 Jan 2022 09:08:49 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/43602/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43602/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; socklnd: don&apos;t deref lnet_hdr in LNDs&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 321fe9fa12d244bb70a6662d3d4d9a6c1709fe3e&lt;/p&gt;</comment>
                            <comment id="323937" author="gerrit" created="Wed, 26 Jan 2022 05:12:47 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/43603/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43603/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: separate lnet_hdr in msg from that in lnd.&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 4ea5cf154a4663a73621dad687873b05290cd420&lt;/p&gt;</comment>
                            <comment id="323938" author="gerrit" created="Wed, 26 Jan 2022 05:12:52 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/43604/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43604/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: change lnet_hdr to store large nids.&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 5bb421cdfd4ce6a29202ce9d680c5d95d04a5254&lt;/p&gt;</comment>
                            <comment id="323939" author="gerrit" created="Wed, 26 Jan 2022 05:12:57 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/43605/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43605/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: change lnet_prep_send to take net_processid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: c0ccfaf1e359352731b50d07e33a79c69c21a791&lt;/p&gt;</comment>
                            <comment id="323940" author="gerrit" created="Wed, 26 Jan 2022 05:13:02 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/43606/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43606/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: convert to struct lnet_process_id in lib-move&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 9feddf7e5d01be437e1a4bd2bd4f417a1206edf3&lt;/p&gt;</comment>
                            <comment id="323941" author="gerrit" created="Wed, 26 Jan 2022 05:13:07 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/43607/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43607/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: convert LNetGetID to return an large-addr pid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: a42e0f6471bf5aad37f15b929be5bf3e76f892ef&lt;/p&gt;</comment>
                            <comment id="323942" author="gerrit" created="Wed, 26 Jan 2022 05:13:12 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/43608/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43608/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: alter lnd_notify_peer_down() to take lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 6a9bdf59e6306d49c4d2d44e95773a257114c639&lt;/p&gt;</comment>
                            <comment id="323943" author="gerrit" created="Wed, 26 Jan 2022 05:13:17 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/43609/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43609/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; socklnd: move lnet_hdr unpack into -&amp;gt;pro_unpack&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 15365f3de34ed7d25166d347d0df9b6741deffe7&lt;/p&gt;</comment>
                            <comment id="323944" author="gerrit" created="Wed, 26 Jan 2022 05:13:23 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/43610/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43610/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; socklnd: Change ksock_hello_msg to struct lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: d1fb459cca931f84f087aae5519bd86eca92009f&lt;/p&gt;</comment>
                            <comment id="323945" author="gerrit" created="Wed, 26 Jan 2022 05:13:28 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/43611/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43611/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; socklnd: add hello message version 4&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 7b31ef0bbac99bfd0f681fb9256f82db8bc9b20d&lt;/p&gt;</comment>
                            <comment id="323946" author="gerrit" created="Wed, 26 Jan 2022 05:13:33 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/43612/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43612/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: Convert ping to support 16-bytes address&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 3e37ac8bb7e068a3070f5770570766ad87270186&lt;/p&gt;</comment>
                            <comment id="323947" author="gerrit" created="Wed, 26 Jan 2022 05:13:38 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/43613/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43613/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: convert nids in lnet_parse to lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: ac439ce87b0acbff35deaf52c283e3fa93e52510&lt;/p&gt;</comment>
                            <comment id="323948" author="gerrit" created="Wed, 26 Jan 2022 05:13:43 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/43614/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43614/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: change src_nid arg to lnet_parse() to 16byte&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: eb0eedbb1a68297b879cbec691ce85e1f208b89e&lt;/p&gt;</comment>
                            <comment id="323949" author="gerrit" created="Wed, 26 Jan 2022 05:13:49 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/44838/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/44838/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: Fix NULL-deref in lnet_nidstr_r()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 8ed370864c4747281dab22f3fafceb5310c1cd53&lt;/p&gt;</comment>
                            <comment id="323950" author="gerrit" created="Wed, 26 Jan 2022 05:13:55 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/43615/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43615/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: change lnet_del_route() to take lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 58993799f29d12c1a60c24d9e096e38ed998ff87&lt;/p&gt;</comment>
                            <comment id="336331" author="gerrit" created="Mon, 30 May 2022 19:02:41 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/43616/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43616/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: change LNetPrimaryNID to use struct lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: ac881498fa19e6b04cbd51e206376657d24a8eb9&lt;/p&gt;</comment>
                            <comment id="336332" author="gerrit" created="Mon, 30 May 2022 19:02:46 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/43617/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43617/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: alter lnet_drop_rule_match() to take lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 57b7b3d36f5fa15274cc8da939556f4d814cbbb7&lt;/p&gt;</comment>
                            <comment id="336333" author="gerrit" created="Mon, 30 May 2022 19:02:53 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/43618/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43618/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: Change LNetDist to work with struct lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: c87f70acd86c59425c9fd89682cd46498dcaeef5&lt;/p&gt;</comment>
                            <comment id="336334" author="gerrit" created="Mon, 30 May 2022 19:02:59 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/43619/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43619/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: convert LNetPut to take 16byte nid and pid.&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 50f6bb62987c54ea9a5d622df4871ad9a416c018&lt;/p&gt;</comment>
                            <comment id="336335" author="gerrit" created="Mon, 30 May 2022 19:03:09 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/43620/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43620/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: change LNetGet to take 16byte nid and pid.&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: d727ec56b26cbd1b8444e83e05fe408aa97cbeb1&lt;/p&gt;</comment>
                            <comment id="336336" author="gerrit" created="Mon, 30 May 2022 19:03:15 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/43621/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/43621/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: switch LNetIsPeerLocal() to take 16-byte addr&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 3b8f253c10759027d37d45cf6e961f77fc9c0f81&lt;/p&gt;</comment>
                            <comment id="336337" author="gerrit" created="Mon, 30 May 2022 19:03:20 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/44621/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/44621/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; socklnd: pass large processid to ksocknal_add_peer&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 6deddc3d46704643dbc6c91b63ee52b1d91ce212&lt;/p&gt;</comment>
                            <comment id="336338" author="gerrit" created="Mon, 30 May 2022 19:03:25 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/44622/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/44622/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; socklnd: large processid for ksocknal_get_peer_info&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: e4a49294530a5d5f78b970f562165f598813c3fc&lt;/p&gt;</comment>
                            <comment id="336339" author="gerrit" created="Mon, 30 May 2022 19:03:30 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/44623/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/44623/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; socklnd: switch ksocknal_del_peer to lnet_processid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 782e37e54f5c54886972320e526845da422d9a03&lt;/p&gt;</comment>
                            <comment id="340006" author="gerrit" created="Mon, 11 Jul 2022 06:49:08 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/44624/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/44624/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: discard some peer_ni lookup functions&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 9768d8929a305588f07caaffe9c9d16087133bf7&lt;/p&gt;</comment>
                            <comment id="340007" author="gerrit" created="Mon, 11 Jul 2022 06:49:15 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/44625/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/44625/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: change lnet_*_peer_ni to take struct lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: d9af9b5a7ee7066607d14d61f92aec5350a36008&lt;/p&gt;</comment>
                            <comment id="340706" author="simmonsja" created="Mon, 18 Jul 2022 17:50:10 +0000"  >&lt;p&gt;Currently I&apos;m working on the user land interface to support IPv6 which will unify both the per MR and DLC apis we currently support. This will enable us to test the IPv6.&lt;/p&gt;</comment>
                            <comment id="345289" author="gerrit" created="Thu, 1 Sep 2022 05:52:32 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/44626/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/44626/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: change ni_status in lnet_ni to u32*&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 9e2df7e5cc5fca3c60e048f3e4004fb8d10f03c1&lt;/p&gt;</comment>
                            <comment id="346549" author="simmonsja" created="Tue, 13 Sep 2022 19:01:45 +0000"  >&lt;p&gt;Neil using my Netlink patch I attempted to bring up an IPv6 NID but it failed. Looking at ksocklnd it&apos;s still hardcoded to ipv4. Could you update the LND driver while I work on the Netlink ping patch.&lt;/p&gt;</comment>
                            <comment id="346858" author="gerrit" created="Fri, 16 Sep 2022 01:17:40 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/48569&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/48569&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: add iface index to struct lnet_inetdev&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 8a3a766d7f0f9c159aef6619b2a4a77099ca4d82&lt;/p&gt;</comment>
                            <comment id="346859" author="gerrit" created="Fri, 16 Sep 2022 01:17:41 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/48570&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/48570&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; socklnd: support IPv6 in ksocknal_ip2index()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 854e687fc52b400c7d54a06159a938bc1d22d90c&lt;/p&gt;</comment>
                            <comment id="346860" author="gerrit" created="Fri, 16 Sep 2022 01:17:42 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/48571&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/48571&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: only use PUBLIC IP6 addresses for connections&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: b6ea6fc7e3b20d1006de2015e3792e6f0e887483&lt;/p&gt;</comment>
                            <comment id="346861" author="gerrit" created="Fri, 16 Sep 2022 01:17:42 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/48572&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/48572&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: support IPv6 in lnet_inet_enumerate()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: bceef444a747c9667e6eab97462791094150668e&lt;/p&gt;</comment>
                            <comment id="347818" author="simmonsja" created="Sat, 24 Sep 2022 15:26:00 +0000"  >&lt;p&gt;With the ksocklnd patches and my Netlink work I can bring up IPv6 interfaces.&lt;/p&gt;

&lt;p&gt;lctl list_nids &lt;br/&gt;
fe80::f68:45bd:7b60:e933@tcp&lt;/p&gt;

&lt;p&gt;I also created a Netlink ping patch and testing pinging with IPv6. I&apos;m seeing&lt;/p&gt;

&lt;p&gt;89440.313309] LNetError: 336027:0:(lib-socket.c:307:lnet_sock_create()) Error trying to bind to port 1023: -22 &lt;br/&gt;
&lt;span class=&quot;error&quot;&gt;&amp;#91;89440.323903&amp;#93;&lt;/span&gt; LNetError: 11e-e: Unexpected error -22 connecting to fe80::f68:45bd:7b60:e933@tcp at host &lt;span class=&quot;error&quot;&gt;&amp;#91;fe80:0000:0000:0000:0f68:45bd:7b60:e933&amp;#93;&lt;/span&gt;:988 &lt;br/&gt;
&lt;span class=&quot;error&quot;&gt;&amp;#91;89501.674740&amp;#93;&lt;/span&gt; LNetError: 336028:0:(lib-socket.c:307:lnet_sock_create()) Error trying to bind to port 1023: -22 &lt;br/&gt;
&lt;span class=&quot;error&quot;&gt;&amp;#91;89501.685288&amp;#93;&lt;/span&gt; LNetError: 11e-e: Unexpected error -22 connecting to fe80::f68:45bd:7b60:e933@tcp at host &lt;span class=&quot;error&quot;&gt;&amp;#91;fe80:0000:0000:0000:0f68:45bd:7b60:e933&amp;#93;&lt;/span&gt;:988 &lt;br/&gt;
&lt;span class=&quot;error&quot;&gt;&amp;#91;89677.568616&amp;#93;&lt;/span&gt; LNetError: 336029:0:(lib-socket.c:307:lnet_sock_create()) Error trying to bind to port 1023: -22 &lt;br/&gt;
&lt;span class=&quot;error&quot;&gt;&amp;#91;89677.579170&amp;#93;&lt;/span&gt; LNetError: 11e-e: Unexpected error -22 connecting to fe80::a242:3fff:fe39:d974@tcp at host &lt;span class=&quot;error&quot;&gt;&amp;#91;fe80:0000:0000:0000:a242:3fff:fe39:d974&amp;#93;&lt;/span&gt;:988 &lt;br/&gt;
&lt;span class=&quot;error&quot;&gt;&amp;#91;89752.123634&amp;#93;&lt;/span&gt; LNetError: 336030:0:(lib-socket.c:307:lnet_sock_create()) Error trying to bind to port 1023: -22 &lt;br/&gt;
&lt;span class=&quot;error&quot;&gt;&amp;#91;89752.134238&amp;#93;&lt;/span&gt; LNetError: 11e-e: Unexpected error -22 connecting to fe80::a242:3fff:fe39:d974@tcp at host &lt;span class=&quot;error&quot;&gt;&amp;#91;fe80:0000:0000:0000:a242:3fff:fe39:d974&amp;#93;&lt;/span&gt;:988&lt;/p&gt;



&lt;p&gt;This is ping the local NID and a remote NID.&lt;/p&gt;</comment>
                            <comment id="347828" author="adilger" created="Sat, 24 Sep 2022 22:27:25 +0000"  >&lt;blockquote&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;host [fe80:0000:0000:0000:0f68:45bd:7b60:e933]:988
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;Can&apos;t help with the LNet part, but please update theIPv6  NID printing to use the standard shortcut to skip blocks that are all-zero:&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;[fe80::::0f68:45bd:7b60:e933]
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</comment>
                            <comment id="347839" author="neilb" created="Sun, 25 Sep 2022 06:02:19 +0000"  >&lt;p&gt;&amp;gt; but please update theIPv6 NID printing to use the standard shortcut to skip blocks that are all-zero:&lt;/p&gt;

&lt;p&gt;What are there two struct netstrfns libcfs_netstrfns[], one in libcfs and one in lnet?&lt;/p&gt;

&lt;p&gt;The one in lnet will get this right, the one in libcfs doesn&apos;t - because I didn&apos;t realise there were two and that I needed to extend them both.&lt;/p&gt;

&lt;p&gt;&#160;&lt;/p&gt;</comment>
                            <comment id="347966" author="adilger" created="Mon, 26 Sep 2022 22:01:06 +0000"  >&lt;p&gt;It looks&#160; like&#160; one for&#160; the kernel and one for the userspace utils.&#160; These functions used to be shared between the kernel and userspace, but they were split into two separate copies in commit v2_7_51_0-30-g05d13ca333:&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;LU-6245 libcfs: create userland and kernel string operations
    
Additonal string handling and NID string parsing code are both
used by kernel space and user land. This prevents us from
moving forward for cleaning up the userland and kernel space
headers. With the code duplicated for both environments we
can then clean up the headers independently. Since NID string
handling is only done for LNET we move it there.
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;At a minimum, it would make sense to add a comment to both copies of this struct reporting on its peer&apos;s existence, and possibly have some sanity checking for consistency.&lt;/p&gt;</comment>
                            <comment id="348140" author="neilb" created="Wed, 28 Sep 2022 04:38:33 +0000"  >&lt;p&gt;Sorry - I didn&apos;t realise that the libcfs was in the user-space libcfs, not the kernel-space one.&#160; That makes more sense.&lt;/p&gt;

&lt;p&gt;So I&apos;ve looked at the problem again and now see that I misunderstood it.&#160; The IPv6 address stored in a nid IS being formatted correctly by libcfs_strnid().&#160; The problem is that when an address (not in a NID) is being reported in the error message, it has the less desirable format.&lt;/p&gt;

&lt;p&gt;This can be fixed by using %pIScp rather than %pISp for reporting network addresses.&#160; The &apos;c&apos; means compressed, and is ignored for IPv4.&lt;/p&gt;</comment>
                            <comment id="348141" author="gerrit" created="Wed, 28 Sep 2022 04:47:12 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/48685&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/48685&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: use %pISc for formatting IP addresses&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 892269b27a859bf07ee91a29bfe8b85bb2ad80b2&lt;/p&gt;</comment>
                            <comment id="348679" author="gerrit" created="Tue, 4 Oct 2022 19:32:37 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/44627/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/44627/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: track pinginfo size in bytes, not nis.&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 941218e09e1d6bb9b5b3ed4780e1c60ed75dbce7&lt;/p&gt;</comment>
                            <comment id="348681" author="gerrit" created="Tue, 4 Oct 2022 19:33:00 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/48569/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/48569/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: add iface index to struct lnet_inetdev&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 860182ee6e84d391aaa8b7e3cf810b6e030b1672&lt;/p&gt;</comment>
                            <comment id="348682" author="gerrit" created="Tue, 4 Oct 2022 19:33:10 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/48570/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/48570/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; socklnd: support IPv6 in ksocknal_ip2index()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: c0fdf9efbf927db405fa662292bd7f5d4001e1bb&lt;/p&gt;</comment>
                            <comment id="348683" author="gerrit" created="Tue, 4 Oct 2022 19:33:21 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/48571/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/48571/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: only use PUBLIC IP6 addresses for connections&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: cd3b89be221b4c5b67e14aa32001cd97ac3d54a8&lt;/p&gt;</comment>
                            <comment id="349080" author="gerrit" created="Mon, 10 Oct 2022 05:37:06 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/48685/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/48685/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: use %pISc for formatting IP addresses&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: ed6b125bab5f7e383d8fa00acf75836922cfcb2a&lt;/p&gt;</comment>
                            <comment id="349775" author="gerrit" created="Sat, 15 Oct 2022 05:54:53 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/48572/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/48572/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: support IPv6 in lnet_inet_enumerate()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 781499eee645a635d065f40a5400a3b0de3aa051&lt;/p&gt;</comment>
                            <comment id="349904" author="simmonsja" created="Mon, 17 Oct 2022 18:58:49 +0000"  >&lt;p&gt;I added attachments from LAD 2022 developers day when I went over the Netlink YAML API I developed. It&apos;s an 1.5 hour discussion which does with the presentation.&lt;/p&gt;</comment>
                            <comment id="350037" author="simmonsja" created="Tue, 18 Oct 2022 18:38:34 +0000"  >&lt;p&gt;Fixed the IPv6 ping issues. It works in my testing. Please review the patch set.&lt;/p&gt;</comment>
                            <comment id="351274" author="gerrit" created="Mon, 31 Oct 2022 16:47:59 +0000"  >&lt;p&gt;&quot;James Simmons &amp;lt;jsimmons@infradead.org&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/48990&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/48990&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: fix build issue when IPv6 is disabled.&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 35dd40a9cfd82028eaebfbba702a9144fbdf004d&lt;/p&gt;</comment>
                            <comment id="352091" author="gerrit" created="Tue, 8 Nov 2022 08:50:19 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/44628/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/44628/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: allow ping packet to contain large nids&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: db0fb8f2b649c0c389a6915f1bbd49b36bfec4b9&lt;/p&gt;</comment>
                            <comment id="352096" author="gerrit" created="Tue, 8 Nov 2022 08:50:58 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/48990/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/48990/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: fix build issue when IPv6 is disabled.&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 896cd5b7bcf94d4fd2ec20c808d66e11ca87939f&lt;/p&gt;</comment>
                            <comment id="352186" author="simmonsja" created="Tue, 8 Nov 2022 16:07:39 +0000"  >&lt;p&gt;Ping patches are ready for review.&lt;/p&gt;</comment>
                            <comment id="353283" author="gerrit" created="Thu, 17 Nov 2022 06:54:51 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/44629/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/44629/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: extend lnet_is_nid_in_ping_info()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 56bcfbf22d91b96c3367533145e5099e63f26d14&lt;/p&gt;</comment>
                            <comment id="353284" author="gerrit" created="Thu, 17 Nov 2022 06:55:09 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/44632/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/44632/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: find correct primary for peer&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 022b46d887603f703ecc897c0aaa40e609f2d926&lt;/p&gt;</comment>
                            <comment id="353285" author="gerrit" created="Thu, 17 Nov 2022 06:55:22 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/44633/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/44633/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: change lnet_notify() to take struct lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 4a88236f40a47c05d0cc6a253dcfc105427987f4&lt;/p&gt;</comment>
                            <comment id="353286" author="gerrit" created="Thu, 17 Nov 2022 06:55:36 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/44634/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/44634/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: discard lnet_nid2ni_*()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: cbfbe6d132c6d0fe5c53118c792d9924b1bfb58e&lt;/p&gt;</comment>
                            <comment id="353287" author="gerrit" created="Thu, 17 Nov 2022 06:55:53 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/44635/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/44635/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: change lnet_debug_peer() to struct lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: e834ad5992adef5989332abce1d8eb2102f86cd2&lt;/p&gt;</comment>
                            <comment id="353337" author="gerrit" created="Thu, 17 Nov 2022 15:42:50 +0000"  >&lt;p&gt;&quot;James Simmons &amp;lt;jsimmons@infradead.org&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/49181&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/49181&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: change lnet_find_best_lpni to handle large NIDs&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 5eac75b6cba0c0f01c01ae06c969f53f54016c8e&lt;/p&gt;</comment>
                            <comment id="354434" author="gerrit" created="Tue, 29 Nov 2022 07:05:55 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/44630/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/44630/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: lnet_peer_merge_data to understand large addr&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 57bcd6aa7f5f347de81665307e76ce47c7491052&lt;/p&gt;</comment>
                            <comment id="354435" author="gerrit" created="Tue, 29 Nov 2022 07:06:07 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/44631/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/44631/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: router_discover - handle large addrs in ping&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 2d916eec68e8a7d353ae4ae2a4923d7f6cfcec0d&lt;/p&gt;</comment>
                            <comment id="355142" author="simmonsja" created="Mon, 5 Dec 2022 19:39:32 +0000"  >&lt;p&gt;Status update:&lt;/p&gt;

&lt;p&gt;One LNet core patch is outstanding. We have code to handle sending new LNet headers for bulk I/O&#160; but its not available to send over the wire when using a large NID. Once we have that in place we can send data between two IPv6 based NIDs. I&apos;m working on more Netlink code to allow us to use the new large NIDs for user land APIs. I just pushed LNet selftest group querying handling to Netlink. The last bits for lnetctl / lctl ping for large NIDs is almost done. After that LNet peer support for large NIDs will be added.&lt;/p&gt;</comment>
                            <comment id="355157" author="adilger" created="Mon, 5 Dec 2022 20:39:08 +0000"  >&lt;p&gt;James, has any effort been spent on the Lustre side of this equation yet (&lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13307&quot; title=&quot;add LCFG_NODEMAP_ADD_RANGEv6 records for IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13307&quot;&gt;&lt;del&gt;LU-13307&lt;/del&gt;&lt;/a&gt;, &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13308&quot; title=&quot;update changelog_ext_nid to handle IPv6 addresses&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13308&quot;&gt;LU-13308&lt;/a&gt;, &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13340&quot; title=&quot;add LCFG_ADD_UUIDv6 and related commands&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13340&quot;&gt;&lt;del&gt;LU-13340&lt;/del&gt;&lt;/a&gt;, &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-14288&quot; title=&quot;Enhance nodemap ranges to work better with IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-14288&quot;&gt;LU-14288&lt;/a&gt;)?&lt;/p&gt;

&lt;p&gt;Getting some of these issues addressed (in particular the basic config llog and Imperative Recovery records) to allow IPv6 addresses in the logs (even if the clients don&apos;t know how to connect to them yet) would avoid interoperability issues with older clients seeing these larger records.  It would great if something could be included into 2.12.10 (which will be the end of the line for 2.12 releases) to maximize the backward compatibility.&lt;/p&gt;</comment>
                            <comment id="355167" author="simmonsja" created="Mon, 5 Dec 2022 21:37:07 +0000"  >&lt;p&gt;I like to get traffic flowing between LNet nodes first. I really want to make sure we get Lustre support right.&lt;/p&gt;

&lt;p&gt;If we can get &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10360&quot; title=&quot;use Imperative Recovery logs for client-&amp;gt;MDT/OST connections&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10360&quot;&gt;LU-10360&lt;/a&gt; working then Lustre can bring up LNet itself without any user configuration.&#160; This setup could be a way to test Lustre with IPv6 without the need for LNet utilities being totally updated.&lt;/p&gt;</comment>
                            <comment id="355213" author="gerrit" created="Tue, 6 Dec 2022 02:42:28 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/49181/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/49181/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: change lnet_find_best_lpni to handle large NIDs&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 4c0c01e29c891d100b134d0988947cfb3aeee6c1&lt;/p&gt;</comment>
                            <comment id="358184" author="gerrit" created="Fri, 6 Jan 2023 21:11:46 +0000"  >&lt;p&gt;&quot;James Simmons &amp;lt;jsimmons@infradead.org&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/49574&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/49574&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: migrate peer NI control to Netlink&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 887112ef909ac191ee103e44b84ed503650c7aed&lt;/p&gt;</comment>
                            <comment id="362389" author="bolausson" created="Fri, 10 Feb 2023 08:48:15 +0000"  >&lt;p&gt;Hej,&lt;/p&gt;

&lt;p&gt;what is the staus of the overall Lustre/LNet IPv6 support? Is it ready for prime time?&lt;/p&gt;

&lt;p&gt;I am working on a tender (100 PB, 1.25 GB/s, HDR or NDR InfiniBand) that requires IPv6.&lt;/p&gt;

&lt;p&gt;Greetings,&lt;br/&gt;
Bjoern&lt;/p&gt;</comment>
                            <comment id="362396" author="neilb" created="Fri, 10 Feb 2023 09:45:28 +0000"  >&lt;p&gt;IPv6 support is getting close to the point where we might be able to start testing some bits of the new code.&lt;br/&gt;
The LNET side might be mostly functional in the near future.&lt;/p&gt;

&lt;p&gt;We are still quite a way before we could think about trying to mount a Lustre filesystem using IPv6.&lt;/p&gt;

&lt;p&gt;So no - not ready for prime time yet.&lt;/p&gt;

&lt;p&gt;&#160;&lt;/p&gt;</comment>
                            <comment id="362400" author="bolausson" created="Fri, 10 Feb 2023 10:20:17 +0000"  >&lt;p&gt;Thanks Neil,&lt;/p&gt;

&lt;p&gt;is there a rough ETA?&lt;/p&gt;</comment>
                            <comment id="362458" author="simmonsja" created="Fri, 10 Feb 2023 19:04:57 +0000"  >&lt;p&gt;I plan to push all the LNet user interface changes needed to support IPv6 to the repo by the end of the month. It will take time to review and merge the patches. Currently I&apos;m working on regression found with multi interface nodes and then I have a few patches out standing to collect peer and router information. I also pushed a patch for managing peers but it needs an update. What is missing is full collecting of the LNet NI (lnetctl net show) and managing the routes. That should cover most of tools for LNet with IPv6. LNet selftest is still in the works.&lt;/p&gt;

&lt;p&gt;How much do you need done to start your testing?&#160;&lt;/p&gt;

&lt;p&gt;P.S&#160; &#160; I do want to aim at getting AF_IB support going as well before the close window of this release.&lt;/p&gt;</comment>
                            <comment id="363657" author="gerrit" created="Tue, 21 Feb 2023 22:52:08 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50085&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50085&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: change LNetAddPeer() to take struct lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 39d2920231348a7bc14a29a8d615c958af04eade&lt;/p&gt;</comment>
                            <comment id="363658" author="gerrit" created="Tue, 21 Feb 2023 22:52:09 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50086&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50086&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; obdclass: change class_add/check_uuid to large nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 0e1fbb0a8f6f844e4d095358143d458f1cfea012&lt;/p&gt;</comment>
                            <comment id="363659" author="gerrit" created="Tue, 21 Feb 2023 22:52:09 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50087&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50087&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; obdclass: support large nids in mgs_nidtbl_entry&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: ac136b0128958026ea260d01a441da43195f970f&lt;/p&gt;</comment>
                            <comment id="363660" author="gerrit" created="Tue, 21 Feb 2023 22:52:10 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50088&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50088&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lustre: rename class_parse_nid to class_parse_nid4&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: afebbbd2b887852b45858a3051c8abbd63d3845a&lt;/p&gt;</comment>
                            <comment id="363661" author="gerrit" created="Tue, 21 Feb 2023 22:52:11 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50089&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50089&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lustre: introduce class_parse_nid()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 00d99d2fa85a0890bf413b988090b1491ace9dd0&lt;/p&gt;</comment>
                            <comment id="363662" author="gerrit" created="Tue, 21 Feb 2023 22:52:12 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50090&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50090&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; obdclass: change class_match_nid to take lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: dc37eff5987c1803f07f993a807c4cb063000652&lt;/p&gt;</comment>
                            <comment id="363663" author="gerrit" created="Tue, 21 Feb 2023 22:52:12 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50091&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50091&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; mgs: fix lots of white-space irregularities&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 15c2bdd883541f6ff3857bb786434619ad3e4589&lt;/p&gt;</comment>
                            <comment id="363664" author="gerrit" created="Tue, 21 Feb 2023 22:52:13 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50092&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50092&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; libcfs: add large-nid string conversion functions.&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 7cd75e3f836b19c247dd02548dfd2b2dfaaf1a6d&lt;/p&gt;</comment>
                            <comment id="363665" author="gerrit" created="Tue, 21 Feb 2023 22:52:14 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50093&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50093&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; mgs: change record_add_uuid() to take large nids&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 25664092879a652c79c877e176c3668d586aaeff&lt;/p&gt;</comment>
                            <comment id="363666" author="gerrit" created="Tue, 21 Feb 2023 22:52:14 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50094&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50094&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; mgs: convert class_parse_nid4 to class_parse_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 839d002c831371e0840cdef1131bc1e5e6f7b231&lt;/p&gt;</comment>
                            <comment id="363667" author="gerrit" created="Tue, 21 Feb 2023 22:52:15 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50095&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50095&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; obdclass: remove class_parse_nid4()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 02f663527f487fdf238c824bdf98a6f17760e10c&lt;/p&gt;</comment>
                            <comment id="363668" author="gerrit" created="Tue, 21 Feb 2023 22:52:16 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50096&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50096&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lustre: Support large nids in LCFG_ADD_UUID&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 3f80a0e0a4a88b3ce873553491129a322bdc4a51&lt;/p&gt;</comment>
                            <comment id="363669" author="gerrit" created="Tue, 21 Feb 2023 22:52:17 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50097&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50097&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lustre: obd_connect and reconnect now use large nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 8b88d0a0c36253bbe27b9276c3133ac311c06f4e&lt;/p&gt;</comment>
                            <comment id="363670" author="gerrit" created="Tue, 21 Feb 2023 22:52:17 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50098&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50098&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lustre: change cfs_match_nid to take large nid.&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 8b41dd0101e98ae55b7c186607ab6ec47fa03ada&lt;/p&gt;</comment>
                            <comment id="363671" author="gerrit" created="Tue, 21 Feb 2023 22:52:18 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50099&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50099&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; mdd: add LLOG_F_EXT_X_NID_BE&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 2e8e4abef2cbeecf23da56729f6707d60dcf928d&lt;/p&gt;</comment>
                            <comment id="363672" author="gerrit" created="Tue, 21 Feb 2023 22:52:19 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50100&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50100&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; ptlrpc: change cc_nid in nrs to be struct lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: e01d8bffacba81c9d052e32f30678deeed83d8ba&lt;/p&gt;</comment>
                            <comment id="363673" author="gerrit" created="Tue, 21 Feb 2023 22:52:19 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50101&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50101&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; ptlrpc: change tc_nid in nrs to be struct lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 05c37fe41328b43f9d1ec5cb215547ce7e770f9a&lt;/p&gt;</comment>
                            <comment id="363674" author="gerrit" created="Tue, 21 Feb 2023 22:52:20 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50102&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50102&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; ptlrpc: switch sptlrpc_rule_set_choose to large nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 6b8098c5ce3a5e9471caf89a43ef5083989d6fee&lt;/p&gt;</comment>
                            <comment id="363675" author="gerrit" created="Tue, 21 Feb 2023 22:52:21 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50103&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50103&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; mdt: change md_perm.mp_nid to large nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 6c5242c07c495f02b146dcc6d099f12351448549&lt;/p&gt;</comment>
                            <comment id="363676" author="gerrit" created="Tue, 21 Feb 2023 22:52:22 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50104&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50104&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; mdt: extend downcall to handle large nids&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: f6dedc86a2e142336cb22900e6fb0d6b8398bf08&lt;/p&gt;</comment>
                            <comment id="365452" author="gerrit" created="Fri, 10 Mar 2023 02:53:04 +0000"  >&lt;p&gt;&quot;jsimmons &amp;lt;jsimmons@infradead.org&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50253&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50253&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: handle discovery with Netlink&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 7cd4b3b712a87410266a7d30936a76751f1fa1d2&lt;/p&gt;</comment>
                            <comment id="365453" author="gerrit" created="Fri, 10 Mar 2023 03:31:11 +0000"  >&lt;p&gt;&quot;jsimmons &amp;lt;jsimmons@infradead.org&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50254&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50254&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: migrate router management to Netlink&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 4cf54ec382d73647d4ff71b7ae165b887e1888e4&lt;/p&gt;</comment>
                            <comment id="365454" author="gerrit" created="Fri, 10 Mar 2023 03:52:53 +0000"  >&lt;p&gt;&quot;jsimmons &amp;lt;jsimmons@infradead.org&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50255&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50255&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: migrate full LNet NI information collection&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: bb7bcc11d4608ebba33d09b7fe1758019e871a13&lt;/p&gt;</comment>
                            <comment id="365455" author="simmonsja" created="Fri, 10 Mar 2023 03:57:12 +0000"  >&lt;p&gt;Since several people are looking to give this a go I pushed what I have so far. Some is ready for ready and some needs more work.&lt;/p&gt;

&lt;p&gt;These are ready.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://review.whamcloud.com/#/c/fs/lustre-release/+50026&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/#/c/fs/lustre-release/+50026&lt;/a&gt;&lt;br/&gt;
&lt;a href=&quot;https://review.whamcloud.com/#/c/fs/lustre-release/+49516&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/#/c/fs/lustre-release/+49516&lt;/a&gt;&lt;br/&gt;
&lt;a href=&quot;https://review.whamcloud.com/#/c/fs/lustre-release/+49839&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/#/c/fs/lustre-release/+49839&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&#160;&lt;/p&gt;

&lt;p&gt;More work is need for the following but you use them for general testing.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://review.whamcloud.com/#/c/fs/lustre-release/+49361&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/#/c/fs/lustre-release/+49361&lt;/a&gt;&lt;br/&gt;
&lt;a href=&quot;https://review.whamcloud.com/#/c/fs/lustre-release/+50253&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/#/c/fs/lustre-release/+50253&lt;/a&gt;&lt;br/&gt;
&lt;a href=&quot;https://review.whamcloud.com/#/c/fs/lustre-release/+49574&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/#/c/fs/lustre-release/+49574&lt;/a&gt;&lt;br/&gt;
&lt;a href=&quot;https://review.whamcloud.com/#/c/fs/lustre-release/+50254&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/#/c/fs/lustre-release/+50254&lt;/a&gt;&lt;br/&gt;
&lt;a href=&quot;https://review.whamcloud.com/#/c/fs/lustre-release/+50255&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/#/c/fs/lustre-release/+50255&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="366808" author="gerrit" created="Wed, 22 Mar 2023 01:51:15 +0000"  >&lt;p&gt;&quot;James Simmons &amp;lt;jsimmons@infradead.org&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50362&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50362&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; utils: enable large NID support for convert_hostnames&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: eaf9a0e171190d75f04e614e8af21ac957f13497&lt;/p&gt;</comment>
                            <comment id="367906" author="simmonsja" created="Thu, 30 Mar 2023 17:50:26 +0000"  >&lt;p&gt;In patch &lt;a href=&quot;https://review.whamcloud.com/#/c/fs/lustre-release/+/49516&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/#/c/fs/lustre-release/+/49516&lt;/a&gt; Oleg has reported an __might_sleep. I believe this to be a bug in the RHEL7 kernel where it is lacking a fix (git commit 707693c8a498697aa8db240b93eb76ec62e30892). I have asked Oleg to try the IPv6 patch out with a RHEL8 debug&#160; kernel or perhaps patch his debug kernel with the mentioned patch to see if it resolves it. If does come to this issue I can open a ticket with RedHat to have the patch applied to its RHEL7 kernels.&lt;/p&gt;</comment>
                            <comment id="369112" author="gerrit" created="Tue, 11 Apr 2023 20:02:20 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50085/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50085/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: change LNetAddPeer() to take struct lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 42b49afdc8a4d2ec6597d3db6553ed79bad7fed8&lt;/p&gt;</comment>
                            <comment id="369113" author="gerrit" created="Tue, 11 Apr 2023 20:02:31 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50086/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50086/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; obdclass: change class_add/check_uuid to large nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 16d84b030520c431daafcca4f1df00a1de5d20bb&lt;/p&gt;</comment>
                            <comment id="369114" author="gerrit" created="Tue, 11 Apr 2023 20:02:41 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50088/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50088/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lustre: rename class_parse_nid to class_parse_nid4&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: b4a28a3269fadb105912325054c4ba82984a981c&lt;/p&gt;</comment>
                            <comment id="369115" author="gerrit" created="Tue, 11 Apr 2023 20:02:55 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50089/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50089/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lustre: introduce class_parse_nid()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 163331cb81c9f7d7aaaed2056691abb5401580f0&lt;/p&gt;</comment>
                            <comment id="369116" author="gerrit" created="Tue, 11 Apr 2023 20:03:17 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50090/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50090/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; obdclass: change class_match_nid to take lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: a6915dd9d82e2f2b47b9a103baae4391eedf94e2&lt;/p&gt;</comment>
                            <comment id="369118" author="gerrit" created="Tue, 11 Apr 2023 20:03:42 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50091/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50091/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; mgs: fix lots of white-space irregularities&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 60e6e35f4cad3f79b2e96ddf41a8d8a02d6047ac&lt;/p&gt;</comment>
                            <comment id="369119" author="gerrit" created="Tue, 11 Apr 2023 20:03:54 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50100/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50100/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; ptlrpc: change cc_nid in nrs to be struct lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 36a199db2b174ba95b683b5e641443357ad24036&lt;/p&gt;</comment>
                            <comment id="369529" author="adilger" created="Fri, 14 Apr 2023 18:14:53 +0000"  >&lt;p&gt;I&apos;ve filed &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-16738&quot; title=&quot;Improve mount.lustre with many MGS NIDs&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-16738&quot;&gt;LU-16738&lt;/a&gt;, which relates to how the &lt;tt&gt;mount.lustre&lt;/tt&gt; command can be improved for multiple NIDs on the command line.  While it is useful for systems today, I think it will be increasingly important for IPv6 due to the longer NID length.&lt;/p&gt;</comment>
                            <comment id="370228" author="gerrit" created="Sat, 22 Apr 2023 17:28:06 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50092/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50092/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; libcfs: add large-nid string conversion functions.&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: b6c702df5d4de8e5a806169404ba1c069ea8fff2&lt;/p&gt;</comment>
                            <comment id="370229" author="gerrit" created="Sat, 22 Apr 2023 17:28:20 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50095/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50095/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; obdclass: remove class_parse_nid4()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 89aac3d3b39f68982530287e11fb29fef0edf456&lt;/p&gt;</comment>
                            <comment id="370230" author="gerrit" created="Sat, 22 Apr 2023 17:28:32 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50098/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50098/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lustre: change cfs_match_nid to take large nid.&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 3d0b1b0200542f845ceb00c7d2be9a85fcf19388&lt;/p&gt;</comment>
                            <comment id="370231" author="gerrit" created="Sat, 22 Apr 2023 17:28:43 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50101/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50101/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; ptlrpc: change tc_nid in nrs to be struct lnet_nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: e2602bd49c1d670b8bf0ad75cdd115941b885575&lt;/p&gt;</comment>
                            <comment id="370290" author="gerrit" created="Sun, 23 Apr 2023 00:19:23 +0000"  >&lt;p&gt;&quot;James Simmons &amp;lt;jsimmons@infradead.org&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50716&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50716&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: set msg field for lnet message header&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 818c7fb748b5d7e13208bffd283d67cea67aa9d0&lt;/p&gt;</comment>
                            <comment id="370668" author="gerrit" created="Wed, 26 Apr 2023 06:27:53 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50097/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50097/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lustre: obd_connect and reconnect now use large nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 3b2926161d27906642a747f3449006267fecba18&lt;/p&gt;</comment>
                            <comment id="371020" author="gerrit" created="Mon, 1 May 2023 06:23:13 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50813&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50813&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; mgc: gracefully ignore unrecognised recovery logs&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 2c5d73fc8a9606b120db71b33e8aab2adae9faba&lt;/p&gt;</comment>
                            <comment id="371591" author="gerrit" created="Tue, 9 May 2023 05:45:52 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50716/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50716/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: set msg field for lnet message header&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 562865630e67afb06d0fbf679ebee243691bec66&lt;/p&gt;</comment>
                            <comment id="371949" author="simmonsja" created="Thu, 11 May 2023 14:24:24 +0000"  >&lt;p&gt;The following patches are ready for review:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://review.whamcloud.com/#/c/fs/lustre-release/+/49839/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/#/c/fs/lustre-release/+/49839/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://review.whamcloud.com/#/c/fs/lustre-release/+/50254/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/#/c/fs/lustre-release/+/50254/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://review.whamcloud.com/#/c/fs/lustre-release/+/50440/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/#/c/fs/lustre-release/+/50440/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://review.whamcloud.com/#/c/fs/lustre-release/+/49574/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/#/c/fs/lustre-release/+/49574/&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="374010" author="gerrit" created="Wed, 31 May 2023 19:02:50 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50102/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50102/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; ptlrpc: switch sptlrpc_rule_set_choose to large nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 80a4a2ebe0a269d564e13b0931c9852379da86d8&lt;/p&gt;</comment>
                            <comment id="374897" author="simmonsja" created="Thu, 8 Jun 2023 23:04:10 +0000"  >&lt;p&gt;Status update:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://jira.whamcloud.com/browse/LU-13306&quot; title=&quot;allow clients to accept mgs_nidtbl_entry with IPv6 NIDs&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-13306&quot;&gt;&lt;del&gt;LU-13306&lt;/del&gt;&lt;/a&gt; : patch for MGS to handle large NIDs is ready for review. Its passing all test. &#160;&lt;a href=&quot;https://review.whamcloud.com/#/c/fs/lustre-release/+/50896/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/#/c/fs/lustre-release/+/50896/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt;:&#160; patch &lt;a href=&quot;https://review.whamcloud.com/#/c/fs/lustre-release/+/50103&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/#/c/fs/lustre-release/+/50103&lt;/a&gt; for internal MDS identity upcall is ready to land and is in master-next&lt;/p&gt;

&lt;p&gt;&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; patch &lt;a href=&quot;https://review.whamcloud.com/#/c/fs/lustre-release/+/50362/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/#/c/fs/lustre-release/+/50362 &lt;/a&gt;is ready to handle large NID strings for mounting&lt;/p&gt;

&lt;p&gt;Several patches for IPv6 support for LNet are also ready for review.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://review.whamcloud.com/#/c/fs/lustre-release/+/50254&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/#/c/fs/lustre-release/+/50254&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://review.whamcloud.com/#/c/fs/lustre-release/+/50440/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/#/c/fs/lustre-release/+/50440/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://review.whamcloud.com/#/c/fs/lustre-release/+/49574/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/#/c/fs/lustre-release/+/49574/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://review.whamcloud.com/#/c/fs/lustre-release/+/49516/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/#/c/fs/lustre-release/+/49516/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://review.whamcloud.com/#/c/fs/lustre-release/+/50255/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/#/c/fs/lustre-release/+/50255/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&#160;&lt;/p&gt;</comment>
                            <comment id="374919" author="gerrit" created="Fri, 9 Jun 2023 05:24:07 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50103/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50103/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; mdt: change md_perm.mp_nid to large nid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 8683b953347fc16a7fa55a838d30b0754df95cfa&lt;/p&gt;</comment>
                            <comment id="375959" author="simmonsja" created="Tue, 20 Jun 2023 12:38:19 +0000"  >&lt;p&gt;My latest batch of LNet IPv6 work went without a review for 3 weeks outside of Chris Horn. Has this work been slated for the 2.17 release?&lt;/p&gt;</comment>
                            <comment id="376281" author="adilger" created="Thu, 22 Jun 2023 18:03:56 +0000"  >&lt;p&gt;I was away for ISC and two weeks vacation, so didn&apos;t do (m)any patch reviews during that time, but I&apos;d hope that Neil or Serguei or Frank would have done reviews on at least the first patches in the series to keep it moving along in my absence.&lt;/p&gt;</comment>
                            <comment id="376452" author="gerrit" created="Mon, 26 Jun 2023 04:07:20 +0000"  >&lt;p&gt;&quot;Neil Brown &amp;lt;neilb@suse.de&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/51442&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/51442&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; gnilnd: typo fixes for lnet_notify() changes.&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 9dc7f816ef1a650f7df91d62c54b73fcbadc9a51&lt;/p&gt;</comment>
                            <comment id="383504" author="gerrit" created="Thu, 24 Aug 2023 04:32:09 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50362/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50362/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; obdclass: handle large NIDs for mount strings&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 101f6e84889a9b48238ca320557101058d935fb0&lt;/p&gt;</comment>
                            <comment id="384639" author="tappro" created="Sat, 2 Sep 2023 11:03:20 +0000"  >&lt;p&gt;the patch &quot;&lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; obdclass: handle large NIDs for mount strings&quot; caused my local system stops to mount servers with error like this:&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;[11210.421883] LNetError: 120-3: Refusing connection from 192.168.56.101 for 0.0.0.0@tcp: No matching NI
[11210.423194] LNetError: 122557:0:(socklnd_cb.c:1783:ksocknal_recv_hello()) Error -104 reading HELLO from 192.168.56.101
[11210.424063] LNetError: 11b-b: Connection to 0.0.0.0@tcp at host 0.0.0.0:988 was reset: is it running a compatible version of Lustre and is 0.0.0.0@tcp one of its NIDs?
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;the reason was that my hostname listed in &apos;&lt;tt&gt;/etc/hostname&apos;&lt;/tt&gt; was not listed in &apos;&lt;tt&gt;/etc/hosts&lt;/tt&gt;&apos; with related address. I am not sure that is correct solution for the problem because without that patch it worked, so problem occurred due to patch and I suppose it should be&#160; fixed in patch as well. Anyway, if there will be a report about &lt;tt&gt;0.0.0.0@&lt;/tt&gt; address that can be fixed by listing hostname in &lt;tt&gt;/etc/hosts&lt;/tt&gt;&lt;/p&gt;</comment>
                            <comment id="385796" author="simmonsja" created="Wed, 13 Sep 2023 14:56:41 +0000"  >&lt;p&gt;The change was the move from gethostname() which only supports IPv4 to getaddrinfo() which supports both IPvv4 and IPv6. What did your /etc/hostname look like so I can reproduce this. I suspect your /etc/hostname lacked an actually IP.&lt;/p&gt;</comment>
                            <comment id="385801" author="simmonsja" created="Wed, 13 Sep 2023 15:07:03 +0000"  >&lt;p&gt;Ah to support what you want you need to install the package containing nss-myhostname. Try that and let me know if it works.&#160;&lt;/p&gt;</comment>
                            <comment id="385847" author="tappro" created="Wed, 13 Sep 2023 18:05:20 +0000"  >&lt;p&gt;James, I had the following in configs:&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;[root@nodez ~]# cat /etc/hostname&#160;
nodez
[root@nodez ~]# cat /etc/hosts
127.0.0.1 &#160; localhost localhost.localdomain localhost4 localhost4.localdomain4
::1 &#160; &#160; &#160; &#160; localhost localhost.localdomain localhost6 localhost6.localdomain6
192.168.56.101 &#160; nodez &amp;lt;--- this one was added later
[root@nodez ~]# 
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;The last line in &lt;tt&gt;/etc/hosts&lt;/tt&gt; was added to fix the issue. Without it the address of &lt;tt&gt;nodez&lt;/tt&gt; was reported as 0.0.0.0&lt;/p&gt;

&lt;p&gt;I have no nss-myhostname tool in my Centos 8 and didn&apos;t figure out yet what package contains it. Any ideas?&lt;/p&gt;</comment>
                            <comment id="390565" author="gerrit" created="Wed, 25 Oct 2023 18:02:25 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50255/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50255/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: migrate full LNet NI information collection&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: d15bfca07858c175c67ac6715fca2a876834b1ce&lt;/p&gt;</comment>
                            <comment id="390567" author="gerrit" created="Wed, 25 Oct 2023 18:02:54 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/49574/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/49574/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: migrate peer NI control to Netlink&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 8a0fdfa0b281b20b6acdd25ceb4c3fb5a9efacb3&lt;/p&gt;</comment>
                            <comment id="391223" author="gerrit" created="Tue, 31 Oct 2023 16:58:40 +0000"  >&lt;p&gt;&quot;James Simmons &amp;lt;jsimmons@infradead.org&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52911&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52911&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; ksocklnd: use ksocknal_protocol v4 for IPv6&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 373d879460210248513679495ec7a59a7550106c&lt;/p&gt;</comment>
                            <comment id="391585" author="gerrit" created="Fri, 3 Nov 2023 04:01:12 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50254/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50254/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: migrate router management to Netlink&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 6557cd4b8c8cf8f8a7d33dadf5a86b4fe0d6eaa2&lt;/p&gt;</comment>
                            <comment id="391898" author="gerrit" created="Mon, 6 Nov 2023 13:46:14 +0000"  >&lt;p&gt;&quot;James Simmons &amp;lt;jsimmons@infradead.org&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53003&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53003&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: update Netlink commands functionality&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: c27ff2701f5d42963c642cb2aaa801b2f4b3d2fd&lt;/p&gt;</comment>
                            <comment id="392036" author="gerrit" created="Tue, 7 Nov 2023 15:52:51 +0000"  >&lt;p&gt;&quot;James Simmons &amp;lt;jsimmons@infradead.org&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53013&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53013&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: support setting LND timeouts&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 6f9a02948f58f02fec6b2d1af04078706f2869c4&lt;/p&gt;</comment>
                            <comment id="392043" author="gerrit" created="Tue, 7 Nov 2023 16:07:13 +0000"  >&lt;p&gt;&quot;James Simmons &amp;lt;jsimmons@infradead.org&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53016&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53016&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: use lnet_ni_get_status_locked for lnet_net_show_dump&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: e6ea13f6d9d896aea87e93685512c1008246bef7&lt;/p&gt;</comment>
                            <comment id="392048" author="gerrit" created="Tue, 7 Nov 2023 16:15:40 +0000"  >&lt;p&gt;&quot;James Simmons &amp;lt;jsimmons@infradead.org&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53018&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53018&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: missing some peer functionality&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: f5bbe42a780d58f20c3a114eb85eae69fbcfb683&lt;/p&gt;</comment>
                            <comment id="392052" author="gerrit" created="Tue, 7 Nov 2023 16:33:10 +0000"  >&lt;p&gt;&quot;James Simmons &amp;lt;jsimmons@infradead.org&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53019&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53019&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: hops -1 is valid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 79f27873db318a064d966dbfe005dd1269f386a5&lt;/p&gt;</comment>
                            <comment id="392057" author="gerrit" created="Tue, 7 Nov 2023 16:42:13 +0000"  >&lt;p&gt;&quot;James Simmons &amp;lt;jsimmons@infradead.org&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53020&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53020&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: filter out white spaces&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 6a821b38391841447a8b2e7d896900ad1f6f31ba&lt;/p&gt;</comment>
                            <comment id="392294" author="gerrit" created="Wed, 8 Nov 2023 21:59:21 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/50253/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/50253/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: handle discovery with Netlink&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 68254c484abfb5a9e212f72f937c0af9710dfb73&lt;/p&gt;</comment>
                            <comment id="392298" author="gerrit" created="Wed, 8 Nov 2023 22:00:51 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/52911/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/52911/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; ksocklnd: use ksocknal_protocol v4 for IPv6&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: cb5f92c0e38eaca4b76f17356ba6d7817c220f56&lt;/p&gt;</comment>
                            <comment id="392895" author="gerrit" created="Mon, 13 Nov 2023 15:30:53 +0000"  >&lt;p&gt;&quot;James Simmons &amp;lt;jsimmons@infradead.org&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53115&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53115&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; mgs: copy fill nid string&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 7949932586ae660929e61b16508eb3f92d7349df&lt;/p&gt;</comment>
                            <comment id="392898" author="gerrit" created="Mon, 13 Nov 2023 15:36:57 +0000"  >&lt;p&gt;&quot;James Simmons &amp;lt;jsimmons@infradead.org&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53117&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53117&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; ptlrpc: update import debugfs to support IPv6 formats&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: b77af6a674c1714ebe35e078a9f3da312aa259d7&lt;/p&gt;</comment>
                            <comment id="393051" author="simmonsja" created="Tue, 14 Nov 2023 20:25:07 +0000"  >&lt;p&gt;Pushed the 3 needed patches required that we need to allow mounting Lustre with IPv6. Something kind of works but its unknown what is lacking with testing. I have shorten IPv6 address so I haven&apos;t seen the UUID overflow just yet. That needs to be fix but it works in general.&lt;/p&gt;</comment>
                            <comment id="393174" author="gerrit" created="Wed, 15 Nov 2023 18:00:40 +0000"  >&lt;p&gt;&quot;James Simmons &amp;lt;jsimmons@infradead.org&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53150&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53150&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; socklnd: handle IPv6 for zero copy messages&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 2e0a2b218ecdbf21922707dd43f1b5152bfb4843&lt;/p&gt;</comment>
                            <comment id="393497" author="gerrit" created="Sat, 18 Nov 2023 21:42:10 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53013/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53013/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: support setting LND timeouts&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: aa2fa25325edfb6ee03ee343a46cfc2acfd68b42&lt;/p&gt;</comment>
                            <comment id="393498" author="gerrit" created="Sat, 18 Nov 2023 21:42:19 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53016/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53016/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: use lnet_ni_get_status_locked for lnet_net_show_dump&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: f3237a16e367e13eb8d29bab66903757ba8fdd62&lt;/p&gt;</comment>
                            <comment id="393499" author="gerrit" created="Sat, 18 Nov 2023 21:42:29 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53019/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53019/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: hops -1 is valid&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: c75b6fe3f147206ee3fd10fb0ee55a06245c0a4f&lt;/p&gt;</comment>
                            <comment id="393500" author="gerrit" created="Sat, 18 Nov 2023 21:43:07 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53020/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53020/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: filter out white spaces&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 0f61c9ff72f34270b31e1b0a5d0a67691b815994&lt;/p&gt;</comment>
                            <comment id="394800" author="gerrit" created="Wed, 29 Nov 2023 21:25:13 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53018/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53018/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: missing some peer functionality&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 774c3d2883c86117e9e2da992843756a5b721064&lt;/p&gt;</comment>
                            <comment id="394803" author="gerrit" created="Wed, 29 Nov 2023 21:26:23 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53115/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53115/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; mgs: copy full nid string&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 8276ade19d573c6eb3b561dbcbc30de607a703fd&lt;/p&gt;</comment>
                            <comment id="394804" author="gerrit" created="Wed, 29 Nov 2023 21:26:45 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53150/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53150/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; socklnd: handle IPv6 for zero copy messages&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 17c1cdf40e54f7be235f6b896dee575ef897d7a1&lt;/p&gt;</comment>
                            <comment id="395403" author="gerrit" created="Mon, 4 Dec 2023 21:24:19 +0000"  >&lt;p&gt;&quot;Chris Horn &amp;lt;chris.horn@hpe.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53320&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53320&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: Ping target corrupted&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: fc2fc1176be1c71b50583d40b152cf652977994e&lt;/p&gt;</comment>
                            <comment id="395593" author="simmonsja" created="Wed, 6 Dec 2023 00:08:03 +0000"  >&lt;p&gt;Status update:&lt;/p&gt;

&lt;p&gt;Patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53117&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53117&lt;/a&gt; is in master-next and ready to land. The other patch needed for mounting lustre with IPv6 is &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53135&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53135&lt;/a&gt; which is currently being actively worked on. With this work we can be considered feature complete.&lt;/p&gt;

&lt;p&gt;Addition work is needed and for more complete LNet setup support we need 3 patches:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/49361&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/49361&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53003&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53003&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53004&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53004&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Those patch are WIP but they mostly work for me. Bugs are being worked out.&lt;/p&gt;</comment>
                            <comment id="396169" author="gerrit" created="Sun, 10 Dec 2023 15:24:31 +0000"  >&lt;p&gt;&quot;James Simmons &amp;lt;jsimmons@infradead.org&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53399&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53399&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; nrs: use struct lnet_nid for nrs_crrn_hashfn()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 923e6442c8871b5002f40b431b83eeb47b4a8ae3&lt;/p&gt;</comment>
                            <comment id="396580" author="gerrit" created="Wed, 13 Dec 2023 12:18:00 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53117/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53117/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; ptlrpc: update import debugfs to support IPv6 formats&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 03f4ef7f32692cfdbe9fc20c218fea75ec3aee08&lt;/p&gt;</comment>
                            <comment id="396719" author="simmonsja" created="Wed, 13 Dec 2023 22:09:26 +0000"  >&lt;p&gt;Status report:&lt;/p&gt;

&lt;p&gt;For basic support for mount and using lustre with IPv6 we are done to one patch needed to mount. That is patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53135.&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53135.&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;As you can see we have a bunch of patches to make testing pass.&lt;/p&gt;</comment>
                            <comment id="397529" author="gerrit" created="Wed, 20 Dec 2023 01:44:31 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53320/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53320/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: Ping target corrupted&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 1b099c404ae4780179bbcd0622fac255edf40352&lt;/p&gt;</comment>
                            <comment id="398129" author="gerrit" created="Wed, 27 Dec 2023 19:19:34 +0000"  >&lt;p&gt;&quot;James Simmons &amp;lt;jsimmons@infradead.org&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53560&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53560&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: support updating LNet local NI settings&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: f3906ada20ea243d933c1a35d452ba5f20857be4&lt;/p&gt;</comment>
                            <comment id="398301" author="gerrit" created="Tue, 2 Jan 2024 13:51:04 +0000"  >&lt;p&gt;&quot;James Simmons &amp;lt;jsimmons@infradead.org&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53571&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53571&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; mgs: handle strscpy return value properly&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 0a1217e26a34e0317014b9c9eaf3baf8dac379bd&lt;/p&gt;</comment>
                            <comment id="398363" author="gerrit" created="Wed, 3 Jan 2024 03:01:44 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/49361/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/49361/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: update ping to handle multiple NIDs&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: c384a39d2889e93229813a204f7de5ca5f6bd142&lt;/p&gt;</comment>
                            <comment id="398599" author="gerrit" created="Thu, 4 Jan 2024 19:39:47 +0000"  >&lt;p&gt;&lt;del&gt;&quot;Andreas Dilger &amp;lt;adilger@whamcloud.com&amp;gt;&quot; uploaded a new patch:&lt;/del&gt; &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53592&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53592&lt;/a&gt;&lt;br/&gt;
&lt;del&gt;Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; revert: &quot;lnet: update ping to handle multiple NIDs&quot;&lt;/del&gt;&lt;br/&gt;
&lt;del&gt;Project: fs/lustre-release&lt;/del&gt;&lt;br/&gt;
&lt;del&gt;Branch: master&lt;/del&gt;&lt;br/&gt;
&lt;del&gt;Current Patch Set: 1&lt;/del&gt;&lt;br/&gt;
&lt;del&gt;Commit: 0b4eac4e80b7556f4521a3d9f4d80445ad0e29f0&lt;/del&gt;&lt;/p&gt;</comment>
                            <comment id="398601" author="adilger" created="Thu, 4 Jan 2024 19:45:37 +0000"  >&lt;p&gt;I&apos;ve pushed a revert for the most recent patch in this ticket because it is causing almost constant failures since 2024-01-03 when it landed (build version 2.15.60.1).  Almost all of the PASS results since that date are for patches that have not yet rebased:&lt;br/&gt;
&lt;a href=&quot;https://testing.whamcloud.com/search?client_branch_type_id=24a6947e-04a9-11e1-bb5f-52540025f9af&amp;amp;server_branch_type_id=24a6947e-04a9-11e1-bb5f-52540025f9af&amp;amp;test_set_script_id=a2b1c4b2-b449-11e9-b88c-52540065bddc&amp;amp;sub_test_script_id=5a631bd3-f3e2-48aa-937f-fa3662bd2d47&amp;amp;start_date=2024-01-03&amp;amp;end_date=2024-01-04&amp;amp;source=sub_tests#redirect&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://testing.whamcloud.com/search?client_branch_type_id=24a6947e-04a9-11e1-bb5f-52540025f9af&amp;amp;server_branch_type_id=24a6947e-04a9-11e1-bb5f-52540025f9af&amp;amp;test_set_script_id=a2b1c4b2-b449-11e9-b88c-52540065bddc&amp;amp;sub_test_script_id=5a631bd3-f3e2-48aa-937f-fa3662bd2d47&amp;amp;start_date=2024-01-03&amp;amp;end_date=2024-01-04&amp;amp;source=sub_tests#redirect&lt;/a&gt;&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;/usr/sbin/lnetctl set transaction_timeout 10
Added delay rule 10.240.39.244@tcp-&amp;gt;10.240.39.245@tcp (1/1)
Issued 8 pings to 10.240.39.245@tcp from 10.240.39.244@tcp
Removed 1 delay rules
ping:
- primary nid: 10.240.39.245@tcp
  Multi-Rail: true
  peer_ni:
  - nid: 10.240.39.245@tcp
 sanity-lnet test_253: @@@@@@ FAIL: Expect 1 dropped GET but found 0 
  Trace dump:
  = /usr/lib64/lustre/tests/test-framework.sh:6947:error()
  = /usr/lib64/lustre/tests/sanity-lnet.sh:3330:do_expired_message_drop_test()
  = /usr/lib64/lustre/tests/sanity-lnet.sh:3340:test_253()
  = /usr/lib64/lustre/tests/test-framework.sh:7287:run_one()
  = /usr/lib64/lustre/tests/test-framework.sh:7343:run_one_logged()
  = /usr/lib64/lustre/tests/test-framework.sh:7173:run_test()
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</comment>
                            <comment id="398602" author="simmonsja" created="Thu, 4 Jan 2024 19:58:14 +0000"  >&lt;p&gt;It might be good to expect the test for now. It doesn&apos;t fail all the time so I suspect its a timing issue with the test.&lt;/p&gt;</comment>
                            <comment id="398603" author="gerrit" created="Thu, 4 Jan 2024 20:04:38 +0000"  >&lt;p&gt;&quot;James Simmons &amp;lt;jsimmons@infradead.org&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53593&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53593&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; tests: recent landing for ping support has timing issue&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: a70b9a6d31de4547ca2a9588b7061c1f9a7676a1&lt;/p&gt;</comment>
                            <comment id="398604" author="gerrit" created="Thu, 4 Jan 2024 20:11:15 +0000"  >&lt;p&gt;&quot;James Simmons &amp;lt;jsimmons@infradead.org&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53594&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53594&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; tests: debug ping failures&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: b749bc8be9af0c0133dd069c568f15e731718c54&lt;/p&gt;</comment>
                            <comment id="398615" author="gerrit" created="Thu, 4 Jan 2024 21:37:53 +0000"  >&lt;p&gt;&quot;Andreas Dilger &amp;lt;adilger@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53597&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53597&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: use GFP_ATOMIC for alloc under spinlock&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: f2aa2ca04ccf0980b4897ef7823847ce52eecf5d&lt;/p&gt;</comment>
                            <comment id="398619" author="adilger" created="Thu, 4 Jan 2024 21:57:37 +0000"  >&lt;blockquote&gt;
&lt;p&gt;It doesn&apos;t fail all the time so I suspect its a timing issue with the test.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;It fails about 90% of the runs since the patch landed, so it should be possible to debug fairly easily.&lt;/p&gt;

&lt;p&gt;The recent patch about GFP_ATOMIC doesn&apos;t have anything to do with this sanity-lnet failure, but just fixing a longstanding problem in &lt;tt&gt;lnet_discover()&lt;/tt&gt; that shows up in Gerrit Janitor testing.&lt;/p&gt;</comment>
                            <comment id="398689" author="gerrit" created="Fri, 5 Jan 2024 17:40:34 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53593/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53593/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; tests: except sanity-lnet/253+254 due to failures&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 3bfc335b04500041adf4d6ea19a6d6c52520605e&lt;/p&gt;</comment>
                            <comment id="399079" author="gerrit" created="Wed, 10 Jan 2024 07:28:53 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53571/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53571/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; mgs: handle strscpy return value properly&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 015f645651173fbc65ee21eadb14470881d4d512&lt;/p&gt;</comment>
                            <comment id="400147" author="gerrit" created="Thu, 18 Jan 2024 06:14:44 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53597/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53597/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: use GFP_ATOMIC for alloc under spinlock&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 7d9643b5b9373b1f89caa64c92c624f4b68a08b3&lt;/p&gt;</comment>
                            <comment id="400266" author="gerrit" created="Thu, 18 Jan 2024 20:19:27 +0000"  >&lt;p&gt;&quot;Chris Horn &amp;lt;chris.horn@hpe.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53727&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53727&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; tests: Skip tests lacking large NID support&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 39e9095a21401d0e1956bab00a69aedbdce29e2d&lt;/p&gt;</comment>
                            <comment id="400267" author="gerrit" created="Thu, 18 Jan 2024 20:19:28 +0000"  >&lt;p&gt;&quot;Chris Horn &amp;lt;chris.horn@hpe.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53728&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53728&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; tests: Update sanity-lnet router tests for IPv6&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: a8d631f71a7c3d574799023972a6342c776c6f5c&lt;/p&gt;</comment>
                            <comment id="400268" author="gerrit" created="Thu, 18 Jan 2024 20:19:29 +0000"  >&lt;p&gt;&quot;Chris Horn &amp;lt;chris.horn@hpe.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53729&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53729&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: Add yaml event helpers&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 8005abd8f73d5a8fd323c5fd07740cba03a91fe8&lt;/p&gt;</comment>
                            <comment id="400269" author="gerrit" created="Thu, 18 Jan 2024 20:19:29 +0000"  >&lt;p&gt;&quot;Chris Horn &amp;lt;chris.horn@hpe.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53730&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53730&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: Add helper for netlink initialization&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 745a348f0fa344b637a28073a4fb9e5553b71ff5&lt;/p&gt;</comment>
                            <comment id="400593" author="gerrit" created="Mon, 22 Jan 2024 15:10:57 +0000"  >&lt;p&gt;&quot;James Simmons &amp;lt;jsimmons@infradead.org&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53761&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53761&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; ksocklnd: support IPv6 for link state&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: ee1694cb0cdaa9c688bf0482d6f21bc8cade6931&lt;/p&gt;</comment>
                            <comment id="400896" author="gerrit" created="Tue, 23 Jan 2024 23:06:17 +0000"  >&lt;p&gt;&quot;Chris Horn &amp;lt;chris.horn@hpe.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53791&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53791&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; lnet: Fix lnetctl peer set --all&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: c95dfcb87363789c96884ddbe7a3fd9f8b1bd14f&lt;/p&gt;</comment>
                            <comment id="402281" author="gerrit" created="Thu, 1 Feb 2024 19:07:48 +0000"  >&lt;p&gt;&quot;Chris Horn &amp;lt;chris.horn@hpe.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53882&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53882&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; obd: Update lmd_parse to handle IPv6 NIDs&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: ed6d9689aceed0218b7cf04f94cc94d296b4721d&lt;/p&gt;</comment>
                            <comment id="402940" author="gerrit" created="Tue, 6 Feb 2024 23:18:22 +0000"  >&lt;p&gt;&quot;James Simmons &amp;lt;jsimmons@infradead.org&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/53946&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53946&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-10391&quot; title=&quot;LNET: Support IPv6&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-10391&quot;&gt;LU-10391&lt;/a&gt; tests: collect gdb backtrace&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 0016c918d201debc08457a7a11815eff43f80da0&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10120">
                    <name>Blocker</name>
                                            <outwardlinks description="is blocking">
                                                        </outwardlinks>
                                                        </issuelinktype>
                            <issuelinktype id="10011">
                    <name>Related</name>
                                            <outwardlinks description="is related to ">
                                        <issuelink>
            <issuekey id="42271">LU-8915</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="56278">LU-12511</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="27500">LU-5881</issuekey>
        </issuelink>
                            </outwardlinks>
                                                                <inwardlinks description="is related to">
                                        <issuelink>
            <issuekey id="78982">LU-17294</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="59464">LU-13642</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="48372">LU-10003</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="68184">LU-15478</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="47644">LU-9823</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="63097">LU-14477</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="68436">LU-15508</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="49665">LU-10360</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="59418">LU-13625</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="62193">LU-14288</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="80395">LU-17479</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="49664">LU-10359</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="58215">LU-13308</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="75582">LU-16738</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="76020">LU-16822</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="78847">LU-17273</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="58213">LU-13306</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="58214">LU-13307</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="58307">LU-13340</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="76021">LU-16823</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                    </issuelinks>
                <attachments>
                            <attachment id="46094" name="NetlinkDiscussion.m4a" size="43205403" author="simmonsja" created="Mon, 17 Oct 2022 18:54:57 +0000"/>
                            <attachment id="46095" name="NetlinkYAML.pptx" size="2692295" author="simmonsja" created="Mon, 17 Oct 2022 18:57:51 +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|hzwlcn:</customfieldvalue>

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