<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 02:28:18 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-9680] Improve the user land to kernel space interface for lustre</title>
                <link>https://jira.whamcloud.com/browse/LU-9680</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;Lustre currently has a complex assortment of ioctls for both the file system component and the LNet layer. Many of the those ioctls are no longer used or can be replaced with accessing files in the sysfs or debugfs file systems. With the initial review of lustre in the upstream kernel two topics on how ioctls are managed to brought to our attention. One is the dislike of the ioctl redirection that is done in lustre. The seconds is the request that we use the netlink userland API, in particular with the LNet layer. The netlink API could also be used for lustre.&lt;/p&gt;</description>
                <environment></environment>
        <key id="46759">LU-9680</key>
            <summary>Improve the user land to kernel space interface for lustre</summary>
                <type id="4" iconUrl="https://jira.whamcloud.com/secure/viewavatar?size=xsmall&amp;avatarId=11310&amp;avatarType=issuetype">Improvement</type>
                                            <priority id="3" iconUrl="https://jira.whamcloud.com/images/icons/priorities/major.svg">Major</priority>
                        <status id="3" iconUrl="https://jira.whamcloud.com/images/icons/statuses/inprogress.png" description="This issue is being actively worked on at the moment by the assignee.">In Progress</status>
                    <statusCategory id="4" key="indeterminate" colorName="inprogress"/>
                                    <resolution id="-1">Unresolved</resolution>
                                        <assignee username="simmonsja">James A Simmons</assignee>
                                    <reporter username="simmonsja">James A Simmons</reporter>
                        <labels>
                    </labels>
                <created>Sun, 18 Jun 2017 18:11:30 +0000</created>
                <updated>Fri, 2 Feb 2024 15:33:08 +0000</updated>
                                            <version>Lustre 2.11.0</version>
                                    <fixVersion>Upstream</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>17</watches>
                                                                            <comments>
                            <comment id="199629" author="ashehata" created="Mon, 19 Jun 2017 17:24:51 +0000"  >&lt;p&gt;James, we already started working on a project to access module parameters and stats from sysfs. So we should coordinate that effort so we don&apos;t over write each other. I attached a requirements document I wrote that outlines what we plan to do for sysfs. Please take a look at it and provide feedback. My opinion is to use that as a starting point to plan out what needs to be done. thoughts?&lt;/p&gt;</comment>
                            <comment id="232316" author="simmonsja" created="Mon, 20 Aug 2018 21:09:07 +0000"  >&lt;p&gt;The first&#160;candidate for netlink usage has shown up from ticket &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-7659&quot; title=&quot;Replace KUC by more standard mechanisms&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-7659&quot;&gt;LU-7659&lt;/a&gt;. First it would be good to go over why I&apos;m pushing Lustre to move toward netlink to fill in people like Yohn. The major reason is the data size limitation with ioctls. Some of the data reported by lustre overflows the size limitation such as stats. In the past the way around this was using proc which by using kernel seq_files allowing virtual unlimited size. With the move away from proc we end up in debugfs which only root is suppose to access. Second benefit is for I/O forwarding system which tend not to like ioctls.&lt;/p&gt;

&lt;p&gt;So the areas I was hoping to tackle with netlink are as follows:&lt;/p&gt;

&lt;p&gt;1) LNet seftest (&lt;a href=&quot;https://jira.whamcloud.com/browse/LU-8915&quot; title=&quot;Don&amp;#39;t use linux list structure as user land arguments for lnet selftest&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-8915&quot;&gt;LU-8915&lt;/a&gt;) which currently pass in kernel link list which is bad in many ways.&lt;/p&gt;

&lt;p&gt;2) lustre stats like md_stats so non-root users can collect stats.&lt;/p&gt;

&lt;p&gt;3) Replace the generic lustre ioctl interface we have. (&lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6202&quot; title=&quot;clean up ioctl handling&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6202&quot;&gt;LU-6202&lt;/a&gt;)&lt;/p&gt;

&lt;p&gt;4) Use it to replace the HSM communication infrastructure. (&lt;a href=&quot;https://jira.whamcloud.com/browse/LU-7659&quot; title=&quot;Replace KUC by more standard mechanisms&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-7659&quot;&gt;LU-7659&lt;/a&gt;)&lt;/p&gt;

&lt;p&gt;---------------------------------------------------------------------------------------------------------&lt;/p&gt;

&lt;p&gt;In the linux kernel their is only a limited number of core netlink services available. 32 to be exact and 22 have been taken. So lustre would need 2 since LNet is its own separate entity. It would be really hard press to get 2. What the kernel has done to get around this limitation is create a &apos;generic&apos; netlink service. I would suggest we move to the interface. This way we don&apos;t need one netlink server in obdclass as well.&#160;&lt;/p&gt;</comment>
                            <comment id="233805" author="simmonsja" created="Thu, 20 Sep 2018 14:11:07 +0000"  >&lt;p&gt;Adding &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-7659&quot; title=&quot;Replace KUC by more standard mechanisms&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-7659&quot;&gt;LU-7659&lt;/a&gt; since the first implementation of netlink is being done.&lt;/p&gt;</comment>
                            <comment id="241749" author="gerrit" created="Tue, 12 Feb 2019 02:02:11 +0000"  >&lt;p&gt;James Simmons (uja.ornl@yahoo.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/34230&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/34230&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9680&quot; title=&quot;Improve the user land to kernel space interface for lustre&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9680&quot;&gt;LU-9680&lt;/a&gt; utils: add netlink infrastructure to liblustreapi&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 30b2f9ee687f0521ac09278e56cf36b0e94b1a27&lt;/p&gt;</comment>
                            <comment id="250065" author="simmonsja" created="Wed, 26 Jun 2019 13:43:24 +0000"  >&lt;p&gt;Discussing with Amir and Olaf Weber the decision was to present all network collected data in YAML format.&#160; With this approach we can actually piece together complex trees. One of things to come out of this is listing obd devices. With YAML output I have currently:&lt;/p&gt;

&lt;p&gt;devices:&lt;/p&gt;
&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;index: 0&lt;br/&gt;
 &#160; status: UP&lt;br/&gt;
 &#160; type: mgc&lt;br/&gt;
 &#160; name: MGC10.37.248.114@o2ib1&lt;br/&gt;
 &#160; uuid: 1a74da83-ca50-4&lt;br/&gt;
 &#160; refcount: 4&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;Would anyone want a different format? For me I think replacing index as the first field with the actual device name.&lt;/p&gt;</comment>
                            <comment id="250068" author="olaf" created="Wed, 26 Jun 2019 13:49:04 +0000"  >&lt;p&gt;Including the device name makes sense to me. Whether &lt;tt&gt;index&lt;/tt&gt; as a separate field is worth retaining at that point is a different question. It depends on what consumers of this data will want to use it for.&lt;/p&gt;</comment>
                            <comment id="250081" author="simmonsja" created="Wed, 26 Jun 2019 15:47:33 +0000"  >&lt;p&gt;That is the beauty of netlink. You can transmit only what you want. This leads me to the idea of creating templates. I was planning on using this concept for stats and you gave me the idea that the template the user provide could take the ordering literally. So the ordering of the template fields that the user asked for can be used to create an YAML output tree in the same exact order. The other idea with this template approach is to also added filters so only under certain conditions will the data set be returned. For example we have the ioctl&#160;OBD_IOC_NAME2DEV. Here the filter would be the obd device name and the template would only request the obd index.&#160;&lt;/p&gt;</comment>
                            <comment id="305902" author="gerrit" created="Wed, 30 Jun 2021 15:25:45 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/34230/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/34230/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9680&quot; title=&quot;Improve the user land to kernel space interface for lustre&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9680&quot;&gt;LU-9680&lt;/a&gt; utils: add netlink infrastructure&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 3c39dac19aaf7f3f4fdee104ce6da92dd1962776&lt;/p&gt;</comment>
                            <comment id="305910" author="simmonsja" created="Wed, 30 Jun 2021 15:47:36 +0000"  >&lt;p&gt;Their is another patch outstanding.&lt;/p&gt;</comment>
                            <comment id="307523" author="JIRAUSER16704" created="Fri, 16 Jul 2021 02:50:13 +0000"  >&lt;p&gt;&amp;gt;&#160;Would anyone want a different format? For me I think replacing index as the first field with the actual device name.&lt;br/&gt;
&#160;&lt;br/&gt;
This will be amazing!&lt;/p&gt;

&lt;p&gt;One comment I do have, is that with with YAML (this is a problem with JSON too), is that it would be great if the actual key names were fixed, i.e. &apos;name&apos;, &apos;index&apos;, &apos;target&apos;, etc. Just nothing dynamic!&lt;/p&gt;



&lt;p&gt;good&lt;/p&gt;
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
devices:
  - name: osc.testfs2-OST0000
    status: UP
    uuid: dog 
  - name: osc.testfs2-OST0001
    status: UP
    uuid: cat &lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;bad:&#160;&lt;/p&gt;
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
devices:
  - osc.testfs2-OST0000:
    status: UP
    uuid: dog 
  - osc.testfs2-OST0001:
    status: UP
    uuid: cat  &lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;bad2:&lt;/p&gt;
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
devices:
  osc.testfs2-OST0000:
    status: UP
    uuid: dog 
  osc.testfs2-OST0001:
    status: UP
    uuid: cat  &lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;it makes it much, much easier to unmarshal this type of data with fixed keys, i.e: &lt;a href=&quot;https://zhwt.github.io/yaml-to-go/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://zhwt.github.io/yaml-to-go/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I&apos;ve had to deal with this with REST APIs before that had dynamic keys (w/ JSON), and it&apos;s sadness.&#160;&lt;/p&gt;</comment>
                            <comment id="307862" author="gerrit" created="Tue, 20 Jul 2021 16:55:08 +0000"  >&lt;p&gt;James Simmons (jsimmons@infradead.org) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/44358&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/44358&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9680&quot; title=&quot;Improve the user land to kernel space interface for lustre&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9680&quot;&gt;LU-9680&lt;/a&gt; net: Netlink improvements&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 16d33295fd1480cdd37384abb6e4a3635b5b47d9&lt;/p&gt;</comment>
                            <comment id="318821" author="gerrit" created="Sun, 21 Nov 2021 20:49: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/44358/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/44358/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9680&quot; title=&quot;Improve the user land to kernel space interface for lustre&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9680&quot;&gt;LU-9680&lt;/a&gt; net: Netlink improvements&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 82835a1952dcb37e8aac8c9d0666016557ea58e7&lt;/p&gt;</comment>
                            <comment id="318823" author="simmonsja" created="Sun, 21 Nov 2021 22:21:37 +0000"  >&lt;p&gt;More work is left.&lt;/p&gt;</comment>
                            <comment id="338944" author="gerrit" created="Tue, 28 Jun 2022 00:05:26 +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/47802&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/47802&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9680&quot; title=&quot;Improve the user land to kernel space interface for lustre&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9680&quot;&gt;LU-9680&lt;/a&gt; utils: fix Netlink / YAML library handling&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 565c30a5878b96a471d88b4cb04f74b6f2944bf2&lt;/p&gt;</comment>
                            <comment id="342945" author="gerrit" created="Mon, 8 Aug 2022 19:52:48 +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/47802/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/47802/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9680&quot; title=&quot;Improve the user land to kernel space interface for lustre&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9680&quot;&gt;LU-9680&lt;/a&gt; utils: fix Netlink / YAML library handling&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 70149f4ea89aa9f5c002b63f56d0c98afcafbad9&lt;/p&gt;</comment>
                            <comment id="349078" author="gerrit" created="Mon, 10 Oct 2022 05:36: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/+/31618/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/31618/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9680&quot; title=&quot;Improve the user land to kernel space interface for lustre&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9680&quot;&gt;LU-9680&lt;/a&gt; obdclass: user netlink to collect devices information&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 86ba46c24430f67bbe0d2768f67ed0c894b2ece1&lt;/p&gt;</comment>
                            <comment id="349121" author="simmonsja" created="Mon, 10 Oct 2022 13:21:11 +0000"  >&lt;p&gt;much more coming&lt;/p&gt;</comment>
                            <comment id="349463" author="bzzz" created="Thu, 13 Oct 2022 05:17:32 +0000"  >&lt;p&gt;sanity/104d fails constantly on a local setup:&lt;/p&gt;
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
== sanity test 104d: runas -u 500 -g 500 lctl dl test ==== 03:25:28 (1665631528)
running as uid/gid/euid/egid 500/500/500/500, groups:
 [/mnt/build/lustre/tests/../utils/lctl] [dl]
running as uid/gid/euid/egid 500/500/500/500, groups:
 [/mnt/build/lustre/tests/../utils/lctl] [dl]
 sanity test_104d: @@@@@@ FAIL: lctl dl reports wrong number of OST devices 
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;possible fix:&lt;/p&gt;
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
@@ -11990,11 +11990,12 @@ test_104d() {
        [ &lt;span class=&quot;code-quote&quot;&gt;&quot;$($RUNAS $LCTL dl | wc -l)&quot;&lt;/span&gt; -ge 3 ] ||
                error &lt;span class=&quot;code-quote&quot;&gt;&quot;lctl dl doesn&apos;t work &lt;span class=&quot;code-keyword&quot;&gt;for&lt;/span&gt; non root&quot;&lt;/span&gt;
 
-       ost_count=&lt;span class=&quot;code-quote&quot;&gt;&quot;$($RUNAS $LCTL dl | grep $FSNAME-OST* | wc -l)&quot;&lt;/span&gt;
+       ost_count=&lt;span class=&quot;code-quote&quot;&gt;&quot;$($RUNAS $LCTL dl | grep &quot;&lt;/span&gt;obdfilter $FSNAME-OST*&lt;span class=&quot;code-quote&quot;&gt;&quot; | wc -l)&quot;&lt;/span&gt;
+       $RUNAS $LCTL dl | grep obdfilter*$FSNAME-OST*
        [ &lt;span class=&quot;code-quote&quot;&gt;&quot;$ost_count&quot;&lt;/span&gt; -eq $OSTCOUNT ]  ||
                error &lt;span class=&quot;code-quote&quot;&gt;&quot;lctl dl reports wrong number of OST devices&quot;&lt;/span&gt;
 
-       mdt_count=&lt;span class=&quot;code-quote&quot;&gt;&quot;$($RUNAS $LCTL dl | grep $FSNAME-MDT* | wc -l)&quot;&lt;/span&gt;
+       mdt_count=&lt;span class=&quot;code-quote&quot;&gt;&quot;$($RUNAS $LCTL dl | grep &quot;&lt;/span&gt;mdt $FSNAME-MDT*&lt;span class=&quot;code-quote&quot;&gt;&quot; | wc -l)&quot;&lt;/span&gt;
        [ &lt;span class=&quot;code-quote&quot;&gt;&quot;$mdt_count&quot;&lt;/span&gt; -eq $MDSCOUNT ]  ||
                error &lt;span class=&quot;code-quote&quot;&gt;&quot;lctl dl reports wrong number of MDT devices&quot;&lt;/span&gt;
 }
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</comment>
                            <comment id="352495" author="gerrit" created="Thu, 10 Nov 2022 07:49:55 +0000"  >&lt;p&gt;&quot;Jian Yu &amp;lt;yujian@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/49091&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/49091&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9680&quot; title=&quot;Improve the user land to kernel space interface for lustre&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9680&quot;&gt;LU-9680&lt;/a&gt; utils: fix Netlink / YAML library handling&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: b2_15&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 87672c666a8b4990043ec1751dd9eed74ff58e57&lt;/p&gt;</comment>
                            <comment id="355965" author="gerrit" created="Sat, 10 Dec 2022 19:54:56 +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/+/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-9680&quot; title=&quot;Improve the user land to kernel space interface for lustre&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9680&quot;&gt;LU-9680&lt;/a&gt; lnet: replace IOC_LIBCS_PING_PEER 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: cf4b2a1589ea5cd12c8086d631c92981558ba059&lt;/p&gt;</comment>
                            <comment id="357269" author="gerrit" created="Thu, 22 Dec 2022 22:17: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/+/49491&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/49491&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9680&quot; title=&quot;Improve the user land to kernel space interface for lustre&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9680&quot;&gt;LU-9680&lt;/a&gt; utils: new llapi_param_display_value().&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: afef4c07a724d32015fc54187032d7af6bb4ca0a&lt;/p&gt;</comment>
                            <comment id="357482" author="gerrit" created="Mon, 26 Dec 2022 14:44:45 +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/+/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;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9680&quot; title=&quot;Improve the user land to kernel space interface for lustre&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9680&quot;&gt;LU-9680&lt;/a&gt; lnet: collect data about peer_ni by using Netlink&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 4ccc999280b9e1221b715e8b8f76d358d6325e4f&lt;/p&gt;</comment>
                            <comment id="360451" author="gerrit" created="Thu, 26 Jan 2023 03:08:59 +0000"  >&lt;p&gt;&quot;Jian Yu &amp;lt;yujian@whamcloud.com&amp;gt;&quot; uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/49775&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/49775&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9680&quot; title=&quot;Improve the user land to kernel space interface for lustre&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9680&quot;&gt;LU-9680&lt;/a&gt; obdclass: user netlink to collect devices information&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: b2_15&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 946036ace0e81e92b85a6e138bcad4c3bea0c84e&lt;/p&gt;</comment>
                            <comment id="360561" author="gerrit" created="Fri, 27 Jan 2023 00:31:48 +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/+/49491/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/49491/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9680&quot; title=&quot;Improve the user land to kernel space interface for lustre&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9680&quot;&gt;LU-9680&lt;/a&gt; utils: new llapi_param_display_value().&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: ba0d5ffc1c0eaa0ac0b59cacc992928e80a15bf2&lt;/p&gt;</comment>
                            <comment id="360726" author="bzzz" created="Fri, 27 Jan 2023 19:53:06 +0000"  >&lt;p&gt;with &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9680&quot; title=&quot;Improve the user land to kernel space interface for lustre&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9680&quot;&gt;LU-9680&lt;/a&gt; utils: new llapi_param_display_value() landed I&apos;m hitting number of failures, especially in sanity-quota. and it seems the patch breaks lctl dl&apos;s output:&lt;/p&gt;
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;
 31 UP mdc lustre-MDT0000-mdc-ffff8d0a1a124000 43e60cbe-0f7e-4f8d-8b45-020bcdd4b297 4
 32 UP mdc lustre-MDT0001-mdc-ffff8d0a1a124000 43e60cbe-0f7e-4f8d-8b45-020bcdd4b297 4
 33 UP osc lustre
 34 UP osc lustre-OST0001-osc-ffff8d0a1a124000 43e60cbe-0f7e-4f8d-8b45-020bcdd4b297 4
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;notice line 33 UP ...&lt;/p&gt;</comment>
                            <comment id="361028" author="gerrit" created="Tue, 31 Jan 2023 14:10:56 +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/+/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;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9680&quot; title=&quot;Improve the user land to kernel space interface for lustre&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9680&quot;&gt;LU-9680&lt;/a&gt; lnet: collect data about routes by using Netlink&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 00bd32ea0902abeb75dcc9fc4f50a4e4d73b123b&lt;/p&gt;</comment>
                            <comment id="363052" author="gerrit" created="Thu, 16 Feb 2023 18:05:52 +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/+/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;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9680&quot; title=&quot;Improve the user land to kernel space interface for lustre&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9680&quot;&gt;LU-9680&lt;/a&gt; lnet:&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 6fb935b1c3f0cc1891dd7670cb1d758e4c2f41e5&lt;/p&gt;</comment>
                            <comment id="365216" author="gerrit" created="Wed, 8 Mar 2023 06:44:01 +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/+/49091/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/49091/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9680&quot; title=&quot;Improve the user land to kernel space interface for lustre&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9680&quot;&gt;LU-9680&lt;/a&gt; utils: fix Netlink / YAML library handling&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: b2_15&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 4ebc91a7b8caea4a99529fa00f9713c9e45033be&lt;/p&gt;</comment>
                            <comment id="367624" author="gerrit" created="Tue, 28 Mar 2023 22:09: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/+/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;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9680&quot; title=&quot;Improve the user land to kernel space interface for lustre&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9680&quot;&gt;LU-9680&lt;/a&gt; lnet: handle multi-rail setups&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 6fab1fe4a5c5615d4d8f74832c9c5984625b8668&lt;/p&gt;</comment>
                            <comment id="374009" author="gerrit" created="Wed, 31 May 2023 19:02: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/+/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;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9680&quot; title=&quot;Improve the user land to kernel space interface for lustre&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9680&quot;&gt;LU-9680&lt;/a&gt; lnet: collect data about routes by using Netlink&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 4ccac8297d0a600275f1e04deaad5ff9e1148e4d&lt;/p&gt;</comment>
                            <comment id="376984" author="gerrit" created="Thu, 29 Jun 2023 19:51:08 +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/+/51508&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/51508&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9680&quot; title=&quot;Improve the user land to kernel space interface for lustre&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9680&quot;&gt;LU-9680&lt;/a&gt; contrib: share libyaml C code generator&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 3746701cc76529b5b34dd9727eb9b9ab3f7c6d8f&lt;/p&gt;</comment>
                            <comment id="379335" author="gerrit" created="Wed, 19 Jul 2023 16:30:26 +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/+/51715&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/51715&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9680&quot; title=&quot;Improve the user land to kernel space interface for lustre&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9680&quot;&gt;LU-9680&lt;/a&gt; utils: add updating the key table for Netlink.&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 19ae0f22817bda193adf917a8b63bc7082bdb58d&lt;/p&gt;</comment>
                            <comment id="380833" author="gerrit" created="Tue, 1 Aug 2023 06:12: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/c/fs/lustre-release/+/51508/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/51508/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9680&quot; title=&quot;Improve the user land to kernel space interface for lustre&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9680&quot;&gt;LU-9680&lt;/a&gt; contrib: share libyaml C code generator&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: ebcfe25232387c894d8284e76f8fe6011364f25e&lt;/p&gt;</comment>
                            <comment id="380834" author="gerrit" created="Tue, 1 Aug 2023 06:12: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/c/fs/lustre-release/+/51715/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/51715/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9680&quot; title=&quot;Improve the user land to kernel space interface for lustre&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9680&quot;&gt;LU-9680&lt;/a&gt; utils: add updating the key table for Netlink.&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: dff466c2bacd2db0d28087bba8c6250cdd5eeb8e&lt;/p&gt;</comment>
                            <comment id="390566" author="gerrit" created="Wed, 25 Oct 2023 18:02:39 +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/+/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;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9680&quot; title=&quot;Improve the user land to kernel space interface for lustre&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9680&quot;&gt;LU-9680&lt;/a&gt; lnet: collect data about peer_ni by using Netlink&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: f0be00678cc8005ec122fa1982d3aa432f6e3cbd&lt;/p&gt;</comment>
                            <comment id="391899" author="gerrit" created="Mon, 6 Nov 2023 13:56:11 +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/+/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;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9680&quot; title=&quot;Improve the user land to kernel space interface for lustre&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9680&quot;&gt;LU-9680&lt;/a&gt; lnet: add NLM_F_DUMP_FILTERED support&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: c12bab0ded1af72b4de1160207206e36b9629d14&lt;/p&gt;</comment>
                            <comment id="395869" author="gerrit" created="Thu, 7 Dec 2023 16:39:03 +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/+/53366&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53366&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9680&quot; title=&quot;Improve the user land to kernel space interface for lustre&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9680&quot;&gt;LU-9680&lt;/a&gt; lnet: Empty route/peer table is not an error&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 33b298ea5b35ebbcb08cccecf3e091e9f23fb529&lt;/p&gt;</comment>
                            <comment id="398364" author="gerrit" created="Wed, 3 Jan 2024 03:01:56 +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/+/53366/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53366/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9680&quot; title=&quot;Improve the user land to kernel space interface for lustre&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9680&quot;&gt;LU-9680&lt;/a&gt; lnet: Empty route/peer table is not an error&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 0031ab371ddd0ffda157629fb64c101203a3b1e2&lt;/p&gt;</comment>
                            <comment id="400270" author="gerrit" created="Thu, 18 Jan 2024 20:19:30 +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/+/53731&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53731&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9680&quot; title=&quot;Improve the user land to kernel space interface for lustre&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9680&quot;&gt;LU-9680&lt;/a&gt; lnet: Convert net_fault.c to work with 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: d51f88e49bdbf94cdb10479e53b1cdc99fe66165&lt;/p&gt;</comment>
                            <comment id="400271" author="gerrit" created="Thu, 18 Jan 2024 20:19:31 +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/+/53732&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53732&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9680&quot; title=&quot;Improve the user land to kernel space interface for lustre&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9680&quot;&gt;LU-9680&lt;/a&gt; lnet: Fault injection add/del ioctls 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: 85559cb1eacc03eff5c41301ab54f2418b70b44e&lt;/p&gt;</comment>
                            <comment id="400272" author="gerrit" created="Thu, 18 Jan 2024 20:19:32 +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/+/53733&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53733&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9680&quot; title=&quot;Improve the user land to kernel space interface for lustre&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9680&quot;&gt;LU-9680&lt;/a&gt; lnet: Fault injection list ioctls 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: 94b2c1948673f9c4702799301219bd86322db257&lt;/p&gt;</comment>
                            <comment id="400273" author="gerrit" created="Thu, 18 Jan 2024 20:19:33 +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/+/53734&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53734&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9680&quot; title=&quot;Improve the user land to kernel space interface for lustre&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9680&quot;&gt;LU-9680&lt;/a&gt; lnet: Convert lnetctl debug recovery 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: f6e4fecc98f25dcc57aa6b6e905ab11ff5d1d9b4&lt;/p&gt;</comment>
                            <comment id="402391" author="gerrit" created="Fri, 2 Feb 2024 15:33:08 +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/+/53889&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/53889&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-9680&quot; title=&quot;Improve the user land to kernel space interface for lustre&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-9680&quot;&gt;LU-9680&lt;/a&gt; utils: fix nested attribute handling in liblnetconfig&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: b86ab2cb34936524987fd510a6185d3ceab5a942&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10011">
                    <name>Related</name>
                                            <outwardlinks description="is related to ">
                                        <issuelink>
            <issuekey id="28520">LU-6202</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="41571">LU-8834</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="46704">LU-9667</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="34089">LU-7659</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="52043">LU-10968</issuekey>
        </issuelink>
                            </outwardlinks>
                                                                <inwardlinks description="is related to">
                                        <issuelink>
            <issuekey id="75455">LU-16715</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="62606">LU-14391</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="54493">LU-11850</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="42271">LU-8915</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="48372">LU-10003</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="73918">LU-16460</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="55440">LU-12198</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="64504">LU-14732</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="72810">LU-16241</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="73397">LU-16346</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="73947">LU-16462</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="74649">LU-16552</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="56278">LU-12511</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="64128">LU-14680</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                    </issuelinks>
                <attachments>
                            <attachment id="27059" name="LNet-LNetCtlUtilityImprovements-130617-1906-1164.pdf" size="137585" author="ashehata" created="Mon, 19 Jun 2017 17:25:11 +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|hzzfbb:</customfieldvalue>

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