<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 01:58:13 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-6210] change positional struct initializers to C99 initializers</title>
                <link>https://jira.whamcloud.com/browse/LU-6210</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;In the libcfs and lnet code there are many places where positional struct initializers are used instead of named C99 initializers:&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;&lt;span class=&quot;code-keyword&quot;&gt;static&lt;/span&gt; struct netstrfns  libcfs_netstrfns[] = {
        {&lt;span class=&quot;code-comment&quot;&gt;/* .nf_type      */&lt;/span&gt;  LOLND,
         &lt;span class=&quot;code-comment&quot;&gt;/* .nf_name      */&lt;/span&gt;  &lt;span class=&quot;code-quote&quot;&gt;&quot;lo&quot;&lt;/span&gt;,
         &lt;span class=&quot;code-comment&quot;&gt;/* .nf_modname   */&lt;/span&gt;  &lt;span class=&quot;code-quote&quot;&gt;&quot;klolnd&quot;&lt;/span&gt;,
         &lt;span class=&quot;code-comment&quot;&gt;/* .nf_addr2str  */&lt;/span&gt;  libcfs_decnum_addr2str,
         &lt;span class=&quot;code-comment&quot;&gt;/* .nf_str2addr  */&lt;/span&gt;  libcfs_lo_str2addr,
         &lt;span class=&quot;code-comment&quot;&gt;/* .nf_parse_addr*/&lt;/span&gt;  libcfs_num_parse,
         &lt;span class=&quot;code-comment&quot;&gt;/* .nf_print_addrlist*/&lt;/span&gt;  libcfs_num_addr_range_print,
         &lt;span class=&quot;code-comment&quot;&gt;/* .nf_match_addr*/&lt;/span&gt;      libcfs_num_match,
         &lt;span class=&quot;code-comment&quot;&gt;/* .nf_is_contiguous */&lt;/span&gt;  cfs_num_is_contiguous,
         &lt;span class=&quot;code-comment&quot;&gt;/* .nf_min_max   */&lt;/span&gt;      cfs_num_min_max},
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;instead of&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;&lt;span class=&quot;code-keyword&quot;&gt;static&lt;/span&gt; struct netstrfns  libcfs_netstrfns[] = {
        {
                 .nf_type              =  LOLND,
                 .nf_name              = &lt;span class=&quot;code-quote&quot;&gt;&quot;lo&quot;&lt;/span&gt;,
                 .nf_modname           = &lt;span class=&quot;code-quote&quot;&gt;&quot;klolnd&quot;&lt;/span&gt;,
                 .nf_addr2str          = libcfs_decnum_addr2str,
                 .nf_str2addr          = libcfs_lo_str2addr,
                 .nf_parse_addr        = libcfs_num_parse,
                 .nf_print_addrlist    = libcfs_num_addr_range_print,
                 .nf_match_addr        = libcfs_num_match,
                 .nf_is_contiguous     = cfs_num_is_contiguous,
                 .nf_min_max           = cfs_num_min_max},
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;This was done because WinNT didn&apos;t have C99 initializer support, but we don&apos;t care about that anymore.&lt;/p&gt;

&lt;p&gt;All of the positional struct initializers in libcfs, lnet, and lustre should be changed to named initializers, probably in several independent patches for different subdirectories.&lt;/p&gt;</description>
                <environment></environment>
        <key id="28562">LU-6210</key>
            <summary>change positional struct initializers to C99 initializers</summary>
                <type id="3" iconUrl="https://jira.whamcloud.com/secure/viewavatar?size=xsmall&amp;avatarId=11318&amp;avatarType=issuetype">Task</type>
                                            <priority id="4" iconUrl="https://jira.whamcloud.com/images/icons/priorities/minor.svg">Minor</priority>
                        <status id="6" iconUrl="https://jira.whamcloud.com/images/icons/statuses/closed.png" description="The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.">Closed</status>
                    <statusCategory id="3" key="done" colorName="success"/>
                                    <resolution id="1">Fixed</resolution>
                                        <assignee username="sguminsx">Steve Guminski</assignee>
                                    <reporter username="adilger">Andreas Dilger</reporter>
                        <labels>
                            <label>easy</label>
                            <label>patch</label>
                    </labels>
                <created>Wed, 4 Feb 2015 23:53:08 +0000</created>
                <updated>Wed, 31 Jan 2018 22:05:33 +0000</updated>
                            <resolved>Wed, 31 Jan 2018 22:05:33 +0000</resolved>
                                                    <fixVersion>Lustre 2.11.0</fixVersion>
                    <fixVersion>Lustre 2.10.3</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>6</watches>
                                                                            <comments>
                            <comment id="116990" author="gerrit" created="Sun, 31 May 2015 16:02:00 +0000"  >&lt;p&gt;James Simmons (uja.ornl@yahoo.com) uploaded a new patch: &lt;a href=&quot;http://review.whamcloud.com/15088&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/15088&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; lnet: Use C99 initializers for struct netstrfns&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 6b7a727b5da8107b170248f5223ec8c994aed386&lt;/p&gt;</comment>
                            <comment id="119096" author="simmonsja" created="Fri, 19 Jun 2015 13:08:00 +0000"  >&lt;p&gt;Are their any others besides struct netstrfns that need to be changed?&lt;/p&gt;</comment>
                            <comment id="123870" author="jgmitter" created="Tue, 11 Aug 2015 17:52:22 +0000"  >&lt;p&gt;Hi Dmitry,&lt;br/&gt;
Can you have a look at the patch?&lt;br/&gt;
Thanks.&lt;br/&gt;
Joe&lt;/p&gt;</comment>
                            <comment id="125477" author="gerrit" created="Fri, 28 Aug 2015 02:07:29 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;http://review.whamcloud.com/15088/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/15088/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; lnet: Use C99 initializers for struct netstrfns&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: f5c36c5fd310f305860b2d693cd61879c7d9fb69&lt;/p&gt;</comment>
                            <comment id="125481" author="simmonsja" created="Fri, 28 Aug 2015 03:00:25 +0000"  >&lt;p&gt;Please leave this ticket open. I except more patches in the future.&lt;/p&gt;</comment>
                            <comment id="170311" author="simmonsja" created="Wed, 19 Oct 2016 15:46:58 +0000"  >&lt;p&gt;Does anyone know of a good grep to find the remaining C89 initializers left? I haven&apos;t come up with a good yet.&lt;/p&gt;</comment>
                            <comment id="170312" author="sguminsx" created="Wed, 19 Oct 2016 15:55:46 +0000"  >&lt;p&gt;Not yet.  My attempt with grep required me to manually inspect the results.  I&apos;ve been considering using Perl or Python.&lt;/p&gt;</comment>
                            <comment id="170725" author="sguminsx" created="Mon, 24 Oct 2016 12:07:54 +0000"  >&lt;p&gt;I wrote a Python script (see attachments for this ticket above) to parse through the source tree to find any struct initializations that use C89 syntax.  So far, I&apos;ve noticed it generated one false positive, but otherwise it seems to be helpful in automating the search for obsolete initializers.&lt;/p&gt;

&lt;p&gt;Just run it in the top directory of the source code tree, and the results will be printed to stdout.&lt;/p&gt;</comment>
                            <comment id="170747" author="gerrit" created="Mon, 24 Oct 2016 14:57:34 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;http://review.whamcloud.com/23332&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/23332&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; libcfs: Change positional struct initializers to C99&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: b0d266d42b85ae450cb4132ee0c8b0f4a264bc01&lt;/p&gt;</comment>
                            <comment id="171533" author="gerrit" created="Fri, 28 Oct 2016 10:36:24 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;http://review.whamcloud.com/23463&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/23463&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; snmp: Change positional struct initializers to C99&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 0a095570c8230a4ea67ead0a1d4562cd9cd53e9e&lt;/p&gt;</comment>
                            <comment id="171773" author="gerrit" created="Mon, 31 Oct 2016 16:51:29 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;http://review.whamcloud.com/23493&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/23493&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; lnet: Change positional struct initializers to C99&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: e2c98d9d6754415d96677078219d0d36b4ec2876&lt;/p&gt;</comment>
                            <comment id="172007" author="gerrit" created="Wed, 2 Nov 2016 13:15:12 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;http://review.whamcloud.com/23537&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/23537&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Change positional struct initializers to C99&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 54cbef288fb931acaff6d5b4688db7df4318f660&lt;/p&gt;</comment>
                            <comment id="172203" author="gerrit" created="Thu, 3 Nov 2016 17:08:49 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;http://review.whamcloud.com/23568&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/23568&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; tests: Change positional struct initializers to C99&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 035ac369064086791d03c0f3d00fd152091bc5e5&lt;/p&gt;</comment>
                            <comment id="172977" author="gerrit" created="Wed, 9 Nov 2016 18:36:23 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;http://review.whamcloud.com/23677&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/23677&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; gss: Change positional struct initializers to C99&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 1f25d8f2f4b2d2f6ed7de5bf0565a7359792d270&lt;/p&gt;</comment>
                            <comment id="173109" author="gerrit" created="Thu, 10 Nov 2016 15:28:25 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;http://review.whamcloud.com/23697&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/23697&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; obd: Change positional struct initializers to C99&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: fa8d511e929ca2df797ff07247c04b91b1df7420&lt;/p&gt;</comment>
                            <comment id="173159" author="gerrit" created="Thu, 10 Nov 2016 18:30:43 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;http://review.whamcloud.com/23702&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/23702&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; mdt: Change positional struct initializers to C99&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: bcd5652194f160360e4b830f20ff25f91c4e7ed1&lt;/p&gt;</comment>
                            <comment id="173450" author="gerrit" created="Mon, 14 Nov 2016 14:06:42 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;http://review.whamcloud.com/23743&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/23743&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; ldlm: Change positional struct initializers to C99&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 4849d5ea2cc3df7acde1a2bf116bca40483bdbcc&lt;/p&gt;</comment>
                            <comment id="173470" author="gerrit" created="Mon, 14 Nov 2016 16:13:41 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;http://review.whamcloud.com/23747&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/23747&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; mdd: Change positional struct initializers to C99&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 39ed194aee23d6db54c4b5aac2d49159cf579d56&lt;/p&gt;</comment>
                            <comment id="173494" author="gerrit" created="Mon, 14 Nov 2016 18:17:13 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;http://review.whamcloud.com/23754&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/23754&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; lod: Change positional struct initializers to C99&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 163a83ddb6ba7fbaa55b1a16e437c181ac924fa7&lt;/p&gt;</comment>
                            <comment id="173684" author="gerrit" created="Tue, 15 Nov 2016 19:43:08 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;http://review.whamcloud.com/23770&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/23770&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; osd: Change positional struct initializers to C99&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: ec43d3752424f50bb02eacd322bb4d745d6956f6&lt;/p&gt;</comment>
                            <comment id="173815" author="gerrit" created="Wed, 16 Nov 2016 14:26:56 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;http://review.whamcloud.com/23789&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/23789&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; fid: Change positional struct initializers to C99&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 2008e1d3a63fc0d53f5b3b432d25c606f4beca23&lt;/p&gt;</comment>
                            <comment id="173835" author="gerrit" created="Wed, 16 Nov 2016 15:32:43 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;http://review.whamcloud.com/23794&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/23794&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; mgs: Change positional struct initializers to C99&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 6a376830b02c3333c5cfe3b18e18d21305adc232&lt;/p&gt;</comment>
                            <comment id="178213" author="gerrit" created="Sat, 17 Dec 2016 05:42:15 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/23332/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/23332/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; libcfs: Change positional struct initializers to C99&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: ef6bb2cd842d18e6fbe4f6160467a9318c1862e0&lt;/p&gt;</comment>
                            <comment id="178373" author="simmonsja" created="Mon, 19 Dec 2016 16:21:45 +0000"  >&lt;p&gt;Besides the converts you have done we also have cases like:&lt;/p&gt;

&lt;p&gt;const struct ldlm_callback_suite null_cbs = &lt;/p&gt;
{ NULL }
&lt;p&gt;;&lt;/p&gt;
</comment>
                            <comment id="179293" author="gerrit" created="Sun, 1 Jan 2017 02:00:56 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/23463/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/23463/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; snmp: Change positional struct initializers to C99&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: c7558380b8e6dc6ac23879959731938bd5d32709&lt;/p&gt;</comment>
                            <comment id="179294" author="gerrit" created="Sun, 1 Jan 2017 02:01:02 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/23568/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/23568/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; tests: Change positional struct initializers to C99&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: f13b2a4cea69d8c4c079d03d58f55d32a54a9679&lt;/p&gt;</comment>
                            <comment id="179295" author="gerrit" created="Sun, 1 Jan 2017 02:01:17 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/23697/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/23697/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; obd: Change positional struct initializers to C99&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 4ddad88d15d8f9e36c5cbb9fd5611a3d8e16ea8c&lt;/p&gt;</comment>
                            <comment id="179296" author="gerrit" created="Sun, 1 Jan 2017 02:01:26 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/23702/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/23702/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; mdt: Change positional struct initializers to C99&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: e439ba810daaebd7a51a112100a182caca72ac35&lt;/p&gt;</comment>
                            <comment id="179297" author="gerrit" created="Sun, 1 Jan 2017 02:01:35 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/23743/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/23743/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; ldlm: Change positional struct initializers to C99&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: ee41ed7803c860cb79782b3d7df8ac2b8e0ab31a&lt;/p&gt;</comment>
                            <comment id="179298" author="gerrit" created="Sun, 1 Jan 2017 02:01:48 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/23770/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/23770/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; osd: Change positional struct initializers to C99&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 226fdfbd8d177587787f473f4fb48714e1ffad91&lt;/p&gt;</comment>
                            <comment id="179299" author="gerrit" created="Sun, 1 Jan 2017 02:01:57 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/23789/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/23789/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; fid: Change positional struct initializers to C99&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: cc311c0c9f884234a3458f471640a40d24c011b5&lt;/p&gt;</comment>
                            <comment id="179300" author="gerrit" created="Sun, 1 Jan 2017 02:02:06 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/23794/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/23794/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; mgs: Change positional struct initializers to C99&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 5419eabdfedd80d3f30aa456ad7dd35c3198729b&lt;/p&gt;</comment>
                            <comment id="181206" author="gerrit" created="Wed, 18 Jan 2017 18:59:58 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/23754/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/23754/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; lod: Change positional struct initializers to C99&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 874690977923f9fa984f608e7bf1d6effda04e6b&lt;/p&gt;</comment>
                            <comment id="181236" author="mdiep" created="Wed, 18 Jan 2017 20:36:09 +0000"  >&lt;p&gt;Landed for 2.10&lt;/p&gt;</comment>
                            <comment id="181246" author="simmonsja" created="Wed, 18 Jan 2017 21:12:42 +0000"  >&lt;p&gt;More patches are left.&lt;/p&gt;</comment>
                            <comment id="181982" author="gerrit" created="Tue, 24 Jan 2017 19:54:14 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/25063&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/25063&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Change positional struct initializers to C99&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 39247780ce19e634c0561b0923ae13a6821eeccd&lt;/p&gt;</comment>
                            <comment id="182702" author="gerrit" created="Tue, 31 Jan 2017 04:10:22 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/23493/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/23493/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; lnet: Change positional struct initializers to C99&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 587a25e227024c89eb0802d1b311b5521fd5793c&lt;/p&gt;</comment>
                            <comment id="182703" author="gerrit" created="Tue, 31 Jan 2017 04:10:31 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/23677/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/23677/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; gss: Change positional struct initializers to C99&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 80d5a0ed4faab5bb21bcbf856765fd804002d145&lt;/p&gt;</comment>
                            <comment id="184899" author="gerrit" created="Wed, 15 Feb 2017 01:03:20 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/23537/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/23537/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Change positional struct initializers to C99&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 70e9d4ecc9130aeed1260d78cd8b33a5cde6edd7&lt;/p&gt;</comment>
                            <comment id="186552" author="gerrit" created="Wed, 1 Mar 2017 05:11:13 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/23747/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/23747/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; mdd: Change positional struct initializers to C99&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 37cef588d339191f4ed0b8f1f11822f0231dcd78&lt;/p&gt;</comment>
                            <comment id="193591" author="simmonsja" created="Wed, 26 Apr 2017 14:45:13 +0000"  >&lt;p&gt;Actually their is one lonely patch left so I think this can make it for 2.10 &lt;img class=&quot;emoticon&quot; src=&quot;https://jira.whamcloud.com/images/icons/emoticons/smile.png&quot; height=&quot;16&quot; width=&quot;16&quot; align=&quot;absmiddle&quot; alt=&quot;&quot; border=&quot;0&quot;/&gt;&lt;/p&gt;</comment>
                            <comment id="193594" author="sguminsx" created="Wed, 26 Apr 2017 14:56:19 +0000"  >&lt;p&gt;I&apos;ve been working on this ticket as a background task, and I actually have several local patches that I haven&apos;t submitted yet.&#160; There seems to be a lot of activity in this area, so the patch that I have submitted has failed to merge several times due to conflicts.&#160; I refrained from submitting all of the patches as a series since a merge failure in a single patch would&#160;require the entire series to be rebased and retested whenever a single patch got a conflict.&#160; At this point, should I just submit all of my local patches using separate topic branches in the hope that some of them can land?&lt;/p&gt;</comment>
                            <comment id="193596" author="pjones" created="Wed, 26 Apr 2017 15:01:45 +0000"  >&lt;p&gt;James - I did talk to Steve about this before descoping it. Any patches ready in the 2.10 timeframe can still land but its just noise to track it as if it has to be fixed for 2.10 &lt;img class=&quot;emoticon&quot; src=&quot;https://jira.whamcloud.com/images/icons/emoticons/smile.png&quot; height=&quot;16&quot; width=&quot;16&quot; align=&quot;absmiddle&quot; alt=&quot;&quot; border=&quot;0&quot;/&gt;&lt;/p&gt;</comment>
                            <comment id="193598" author="simmonsja" created="Wed, 26 Apr 2017 15:19:02 +0000"  >&lt;p&gt;Oh, sorry I misunderstood. Thanks Peter for clarifying. Thank you Steve for the update. I personally would recommend not doing a series. Just do the shotgun approach and submit each patch individually. This way some will land. Yeah you have to deal with rebasing some of the patch after they land but is this any different what happens now with the unrelated changes and maloo failures that require rebasing.&lt;/p&gt;</comment>
                            <comment id="193599" author="sguminsx" created="Wed, 26 Apr 2017 15:23:54 +0000"  >&lt;p&gt;Thanks, James.&#160; I&apos;ll submit what I&apos;ve got as individual patches and deal with any merge failures as they occur.&#160; Hopefully at least some of the patches will be able to land cleanly. &lt;img class=&quot;emoticon&quot; src=&quot;https://jira.whamcloud.com/images/icons/emoticons/biggrin.png&quot; height=&quot;16&quot; width=&quot;16&quot; align=&quot;absmiddle&quot; alt=&quot;&quot; border=&quot;0&quot;/&gt;&lt;/p&gt;</comment>
                            <comment id="198528" author="gerrit" created="Wed, 7 Jun 2017 20:31:22 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/25063/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/25063/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializers in lfs_setstripe()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: d61792d0f5fa1e313ec216a5dcb833381cbec92b&lt;/p&gt;</comment>
                            <comment id="198573" author="pjones" created="Wed, 7 Jun 2017 23:30:53 +0000"  >&lt;p&gt;Dare I ask - is that the last one?!&lt;/p&gt;</comment>
                            <comment id="198609" author="sguminsx" created="Thu, 8 Jun 2017 11:10:36 +0000"  >&lt;p&gt;Unfortunately, I was having so much trouble getting this landed due to conflicts that I had to split this up into several smaller patches.&#160; Due to higher priority work and a severe laptop problem last week, I was not able to get a chance to submit these other patches yet.&#160; The patches are written and locally tested, and I plan to rebase and submit them today.&lt;/p&gt;</comment>
                            <comment id="198657" author="gerrit" created="Thu, 8 Jun 2017 17:11:41 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/27513&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27513&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializers in lfs_find()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 3d557a670bf83bbaa2e6cc8521510528d24f6aa3&lt;/p&gt;</comment>
                            <comment id="198659" author="gerrit" created="Thu, 8 Jun 2017 17:15:56 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/27514&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27514&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 initializers in lfs_getstripe_internal&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 652f289a2984cb5d6e8fa912f2cfb98870825144&lt;/p&gt;</comment>
                            <comment id="198661" author="gerrit" created="Thu, 8 Jun 2017 17:17:08 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/27515&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27515&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 initializers in lfs_setdirstripe()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 59d2a27dfca272888984f03400b1d0d51307418e&lt;/p&gt;</comment>
                            <comment id="198662" author="gerrit" created="Thu, 8 Jun 2017 17:23:16 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/27516&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27516&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializers in lfs_mv()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: f0ee36ab67e7568d1752d18573b0982665a8b32a&lt;/p&gt;</comment>
                            <comment id="198663" author="gerrit" created="Thu, 8 Jun 2017 17:24:27 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/27517&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27517&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializers in mntdf()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: f5bae0f7b45ac5c10693fca78500d4b77f0cf55e&lt;/p&gt;</comment>
                            <comment id="198664" author="gerrit" created="Thu, 8 Jun 2017 17:25:41 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/27518&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27518&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializers in lfs_df()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 5e663c601de8dd0e08dce830de1d3a4b1dd9d53b&lt;/p&gt;</comment>
                            <comment id="198666" author="gerrit" created="Thu, 8 Jun 2017 17:26:55 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/27519&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27519&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 initializers in lfs_setquota_times()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 345417bf857e53247cbf8c78b3f8dbef78349f2a&lt;/p&gt;</comment>
                            <comment id="198667" author="gerrit" created="Thu, 8 Jun 2017 17:28:06 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/27521&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27521&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializers in lfs_setquota()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: e25b1ea4a831c72cc3da12802d2aef45de69837d&lt;/p&gt;</comment>
                            <comment id="198668" author="gerrit" created="Thu, 8 Jun 2017 17:29:17 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/27522&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27522&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializers in lfs_ls()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: aa45b3b43f375bc748736e3ef7f356fb2d702927&lt;/p&gt;</comment>
                            <comment id="198670" author="gerrit" created="Thu, 8 Jun 2017 17:30:44 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/27523&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27523&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 initializers in lfs_changelog_clear()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 7d5d4510cb69361d5a01fc55ccc168976837f86b&lt;/p&gt;</comment>
                            <comment id="198671" author="gerrit" created="Thu, 8 Jun 2017 17:32:11 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/27524&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27524&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializers in lfs_fid2path()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: ae6d5eaadc7c57d736d05298966494001bb1720a&lt;/p&gt;</comment>
                            <comment id="198673" author="gerrit" created="Thu, 8 Jun 2017 17:33:23 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/27525&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27525&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializers in lfs_hsm_state()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: e3333c6a04244b8b70918689d653e5b093c372b8&lt;/p&gt;</comment>
                            <comment id="198674" author="gerrit" created="Thu, 8 Jun 2017 17:34:35 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/27526&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27526&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializers in fill_hur_item()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: feb2ca604aed6e0929bb4656c057914554669a38&lt;/p&gt;</comment>
                            <comment id="198675" author="gerrit" created="Thu, 8 Jun 2017 17:35:46 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/27527&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27527&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 initializers in lfs_get_ladvice()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: b43d28a6c4eb283e8db5c33f1ce1616f1e5ba278&lt;/p&gt;</comment>
                            <comment id="198676" author="gerrit" created="Thu, 8 Jun 2017 17:37:04 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/27528&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27528&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializers in lhsmtool_posix.c&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 9baed1f73da6a051ca6fcdc8a4f61a38089423db&lt;/p&gt;</comment>
                            <comment id="198677" author="gerrit" created="Thu, 8 Jun 2017 17:38:16 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/27529&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27529&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializers in llverdev.c&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 771e305d2471fce071968ba0295a350c4f4fcc17&lt;/p&gt;</comment>
                            <comment id="198678" author="gerrit" created="Thu, 8 Jun 2017 17:39:30 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/27530&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27530&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializers in llverfs.c&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 2ceb3ab714635458d08d3b1ca359d5b10f996e54&lt;/p&gt;</comment>
                            <comment id="198679" author="gerrit" created="Thu, 8 Jun 2017 17:40:41 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/27531&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27531&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializers in lr_reader.c&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: c91571f83040f526dad12072d9a8ac439ddcd44e&lt;/p&gt;</comment>
                            <comment id="198680" author="gerrit" created="Thu, 8 Jun 2017 17:41:57 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/27532&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27532&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializers in lshowmount.c&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 3e9c21a82552535629e46259d1b6b9044af16a99&lt;/p&gt;</comment>
                            <comment id="199084" author="gerrit" created="Tue, 13 Jun 2017 16:55:58 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/27515/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27515/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 initializers in lfs_setdirstripe()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 3c60d60188e129f1cad3ed79153626fa118376ae&lt;/p&gt;</comment>
                            <comment id="199085" author="gerrit" created="Tue, 13 Jun 2017 16:56:06 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/27518/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27518/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializers in lfs_df()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: f905bc45f49a183d8953001bd5da2741ab8c6d62&lt;/p&gt;</comment>
                            <comment id="199086" author="gerrit" created="Tue, 13 Jun 2017 16:56:13 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/27519/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27519/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 initializers in lfs_setquota_times()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: ce7bb5449ab15bb9c6e8a1b2dc22be7c8efe74be&lt;/p&gt;</comment>
                            <comment id="199087" author="gerrit" created="Tue, 13 Jun 2017 16:56:18 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/27523/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27523/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 initializers in lfs_changelog_clear()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 107b2cba7e4a05e2aa7318c20ad7142f88083c35&lt;/p&gt;</comment>
                            <comment id="199474" author="gerrit" created="Fri, 16 Jun 2017 16:54:00 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/27529/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27529/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializers in llverdev.c&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: b96b6f20764a806902898890046b31dcfa2f8dae&lt;/p&gt;</comment>
                            <comment id="199475" author="gerrit" created="Fri, 16 Jun 2017 16:54:36 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/27528/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27528/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializers in lhsmtool_posix.c&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: b5a93d1595c5d47599ab97f93882703d30074aed&lt;/p&gt;</comment>
                            <comment id="200002" author="gerrit" created="Thu, 22 Jun 2017 18:08:31 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/27789&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27789&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializer for long_opt_start&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 862ae95d4d2a1708f49e2b2c9aa55940e28219c2&lt;/p&gt;</comment>
                            <comment id="200004" author="gerrit" created="Thu, 22 Jun 2017 18:12:05 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/27790&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27790&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializers in lustre_fsck.c&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 30136c59f5f46dc16997ceab569249920a38e4fd&lt;/p&gt;</comment>
                            <comment id="200005" author="gerrit" created="Thu, 22 Jun 2017 18:13:43 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/27791&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27791&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 initializer for lfsck_types_names&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: e3089bdf9bd7366d07be4726a090e3d6e792eda8&lt;/p&gt;</comment>
                            <comment id="200006" author="gerrit" created="Thu, 22 Jun 2017 18:16:12 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/27792&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27792&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use consistent naming for option strings&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 675e8cbb8984d1abe9c46ddafd71b1ee435e79df&lt;/p&gt;</comment>
                            <comment id="200212" author="gerrit" created="Mon, 26 Jun 2017 14:01:00 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/27814&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27814&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializer in lustre_rsync.c&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: eb43724cb6281cb5f7b727154ff7a0d70a1f981d&lt;/p&gt;</comment>
                            <comment id="200217" author="gerrit" created="Mon, 26 Jun 2017 14:21:00 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/27815&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27815&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializer in mkfs_lustre.c&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: f80f137260326fa294ee27963e93bdd431d3f340&lt;/p&gt;</comment>
                            <comment id="200219" author="gerrit" created="Mon, 26 Jun 2017 14:46:09 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/27816&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27816&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializer for opt_map&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: db059e0f3d23f5977b134029d6183c73e5695ad0&lt;/p&gt;</comment>
                            <comment id="200220" author="gerrit" created="Mon, 26 Jun 2017 14:49:11 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/27817&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27817&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializer in parse_opts()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 79d8b8fdfdc9455b1c623912ad25960f015fb902&lt;/p&gt;</comment>
                            <comment id="200264" author="gerrit" created="Mon, 26 Jun 2017 19:19:08 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/27825&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27825&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializer in mount_utils_zfs.c&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: e25d3d02066b27062343289b1785578f18de7148&lt;/p&gt;</comment>
                            <comment id="200568" author="gerrit" created="Thu, 29 Jun 2017 11:35:06 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/27879&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27879&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 initializer in jt_obd_md_common()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 1685de513715daaf4508179efd47efc737748e6c&lt;/p&gt;</comment>
                            <comment id="200569" author="gerrit" created="Thu, 29 Jun 2017 11:44:23 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/27880&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27880&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: C99 initializer in llog_cancel_parse_optional()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 2edfa739d0ae772a2e052956cad2e544a4804a25&lt;/p&gt;</comment>
                            <comment id="200570" author="gerrit" created="Thu, 29 Jun 2017 11:47:32 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/27881&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27881&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 initializer in jt_nodemap_test_id()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: b6ee31bbe730d3f04ec4e01a42262f9afd2a3692&lt;/p&gt;</comment>
                            <comment id="200571" author="gerrit" created="Thu, 29 Jun 2017 11:53:03 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/27882&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27882&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 initializer in jt_nodemap_add_range()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: ac05e4b58b26c39645bd078247b169aab98344a8&lt;/p&gt;</comment>
                            <comment id="200572" author="gerrit" created="Thu, 29 Jun 2017 11:56:23 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/27883&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27883&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 initializer in jt_nodemap_del_range()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: fd878a17c32d6b9d4a669f528b517000c24869eb&lt;/p&gt;</comment>
                            <comment id="200606" author="gerrit" created="Thu, 29 Jun 2017 16:43:41 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/27888&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27888&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 initializer in jt_nodemap_set_fileset()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: a7a3b45b553898491ff3079b2782a3737ca795ef&lt;/p&gt;</comment>
                            <comment id="200607" author="gerrit" created="Thu, 29 Jun 2017 16:47:51 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/27889&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27889&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 initializer in jt_nodemap_modify()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 0a9e833f8395b723c2d864c81ac0a62a67172215&lt;/p&gt;</comment>
                            <comment id="200610" author="gerrit" created="Thu, 29 Jun 2017 16:57:44 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/27890&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27890&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 initializer in jt_nodemap_add_idmap()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: e50e7b51c6413916d0f013ec7f4b7137e26398df&lt;/p&gt;</comment>
                            <comment id="200612" author="gerrit" created="Thu, 29 Jun 2017 17:03:00 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/27891&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27891&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 initializer in jt_nodemap_del_idmap()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: d108e6ff45477947f2cd650e50c086aa329ebefb&lt;/p&gt;</comment>
                            <comment id="202608" author="gerrit" created="Wed, 19 Jul 2017 03:31:13 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/27513/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27513/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializers in lfs_find()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: fcb2dfa7a20fec396b6b5dfd23a791e13115bbed&lt;/p&gt;</comment>
                            <comment id="202609" author="gerrit" created="Wed, 19 Jul 2017 03:31:16 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/27516/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27516/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializers in lfs_mv()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 59ed16fa7591513691a812ada1c9b1ebb2b426f7&lt;/p&gt;</comment>
                            <comment id="202610" author="gerrit" created="Wed, 19 Jul 2017 03:31:19 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/27517/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27517/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializers in mntdf()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 0ff91d6ad8c71498e29f442119327e166f527281&lt;/p&gt;</comment>
                            <comment id="202611" author="gerrit" created="Wed, 19 Jul 2017 03:31:22 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/27524/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27524/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializers in lfs_fid2path()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 8f66e833b9042c8015bf7a5ce0dbe2fd8fb91af1&lt;/p&gt;</comment>
                            <comment id="202612" author="gerrit" created="Wed, 19 Jul 2017 03:31:25 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/27525/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27525/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializers in lfs_hsm_state()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 73c2c103f4f43f9bb37119a2e90d6c0fc1870711&lt;/p&gt;</comment>
                            <comment id="202613" author="gerrit" created="Wed, 19 Jul 2017 03:31:28 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/27527/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27527/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 initializers in lfs_get_ladvice()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: c26a4d72445c7ce02e370cc84932d7cc89416966&lt;/p&gt;</comment>
                            <comment id="202614" author="gerrit" created="Wed, 19 Jul 2017 03:31:30 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/27530/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27530/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializers in llverfs.c&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: db46268d3be602f04ff9beb00e15f945dcd44434&lt;/p&gt;</comment>
                            <comment id="202615" author="gerrit" created="Wed, 19 Jul 2017 03:31:33 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/27531/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27531/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializers in lr_reader.c&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: bbac283b4488cd34245347e59631e3f0bb3bc792&lt;/p&gt;</comment>
                            <comment id="202616" author="gerrit" created="Wed, 19 Jul 2017 03:31:38 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/27532/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27532/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializers in lshowmount.c&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: c87553ac891f092f5e9bb4eef9cf06b6516e5e48&lt;/p&gt;</comment>
                            <comment id="202620" author="gerrit" created="Wed, 19 Jul 2017 03:31:53 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/27790/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27790/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializers in lustre_fsck.c&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 4bf65a2f6b215644b17ed20beaae1b7ff1a73bc5&lt;/p&gt;</comment>
                            <comment id="202621" author="gerrit" created="Wed, 19 Jul 2017 03:31:56 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/27791/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27791/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 initializer for lfsck_types_names&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: a1d62378ed98e2663c1f95f955433e2a5b13d68c&lt;/p&gt;</comment>
                            <comment id="202622" author="gerrit" created="Wed, 19 Jul 2017 03:31:59 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/27792/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27792/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use consistent naming for option strings&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 8e922ad47dc08e7c4a74c10d1a0d12b90d0c2031&lt;/p&gt;</comment>
                            <comment id="202623" author="gerrit" created="Wed, 19 Jul 2017 03:32:02 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/27814/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27814/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializer in lustre_rsync.c&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 9afa14529b35de066b395abba448e4d2e9c2999f&lt;/p&gt;</comment>
                            <comment id="202624" author="gerrit" created="Wed, 19 Jul 2017 03:32:05 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/27815/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27815/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializer in mkfs_lustre.c&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 56ca45bc5a514f415c9c13ae00e2c276a6b82a52&lt;/p&gt;</comment>
                            <comment id="202625" author="gerrit" created="Wed, 19 Jul 2017 03:32:08 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/27816/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27816/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializer for opt_map&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 7a946907a09654c80e6d3e514920028512036bcf&lt;/p&gt;</comment>
                            <comment id="202626" author="gerrit" created="Wed, 19 Jul 2017 03:32:11 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/27817/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27817/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializer in parse_opts()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 8c867d1bcd5e7b09a9cfc063ae82324f9780c0ef&lt;/p&gt;</comment>
                            <comment id="202633" author="gerrit" created="Wed, 19 Jul 2017 03:32:38 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/27789/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27789/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializer for long_opt_start&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: b2c88463370dbed1539e6d7a232f8096ac735c30&lt;/p&gt;</comment>
                            <comment id="203852" author="gerrit" created="Sat, 29 Jul 2017 00:02:37 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/27514/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27514/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 initializers in lfs_getstripe_internal&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: a67628b9e49547b75ec92fed05f770da05d14f9d&lt;/p&gt;</comment>
                            <comment id="203853" author="gerrit" created="Sat, 29 Jul 2017 00:02:40 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/27521/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27521/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializers in lfs_setquota()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 5a8f63b80f705756e0d530706c20793924a975a1&lt;/p&gt;</comment>
                            <comment id="203854" author="gerrit" created="Sat, 29 Jul 2017 00:02:42 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/27526/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27526/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializers in lfs_hsm_request()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 0760baa19438f882edb94e8e86512b9751bc4432&lt;/p&gt;</comment>
                            <comment id="203857" author="gerrit" created="Sat, 29 Jul 2017 00:02:50 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/27879/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27879/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 initializer in jt_obd_md_common()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: f4e95a4429e9f6a8aa8170984bc6f8cd14cd5db0&lt;/p&gt;</comment>
                            <comment id="203858" author="gerrit" created="Sat, 29 Jul 2017 00:02:52 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/27880/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27880/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: C99 initializer in llog_cancel_parse_optional()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 590881dcd2256844d45b5ea325d85057cfcd473b&lt;/p&gt;</comment>
                            <comment id="203859" author="gerrit" created="Sat, 29 Jul 2017 00:02:55 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/27882/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27882/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 initializer in jt_nodemap_add_range()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 7524da20e134f6bbafb2a10aadc89852c6cd236d&lt;/p&gt;</comment>
                            <comment id="203860" author="gerrit" created="Sat, 29 Jul 2017 00:02:57 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/27888/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27888/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 initializer in jt_nodemap_set_fileset()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 9c5fad36aac2086b38f91e28db90da01efc9126a&lt;/p&gt;</comment>
                            <comment id="203861" author="gerrit" created="Sat, 29 Jul 2017 00:03:00 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/27889/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27889/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 initializer in jt_nodemap_modify()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 8633aaba2da245bc62b876e535e7ac26385e1385&lt;/p&gt;</comment>
                            <comment id="203862" author="gerrit" created="Sat, 29 Jul 2017 00:03:02 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/27890/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27890/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 initializer in jt_nodemap_add_idmap()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: fc55dd29cfaccbe925839ff665591c85313e3359&lt;/p&gt;</comment>
                            <comment id="203863" author="gerrit" created="Sat, 29 Jul 2017 00:03:05 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/27891/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27891/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 initializer in jt_nodemap_del_idmap()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 9999d2d959e74f79be00e1708d0e53c5e600c47a&lt;/p&gt;</comment>
                            <comment id="204024" author="gerrit" created="Tue, 1 Aug 2017 05:34:44 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/27825/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27825/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializer in mount_utils_zfs.c&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 990890eacf757d73fc87a83bfa703a51b739a05c&lt;/p&gt;</comment>
                            <comment id="204548" author="gerrit" created="Sat, 5 Aug 2017 00:38:16 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/27881/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27881/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 initializer in jt_nodemap_test_id()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: dad40c1980cbe67ec60055258f435cc3369745db&lt;/p&gt;</comment>
                            <comment id="204549" author="gerrit" created="Sat, 5 Aug 2017 00:38:20 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/27883/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27883/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 initializer in jt_nodemap_del_range()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 2b90c15b72c25711793cc4ea46b964098131c736&lt;/p&gt;</comment>
                            <comment id="204555" author="simmonsja" created="Sat, 5 Aug 2017 01:30:21 +0000"  >&lt;p&gt;Only one patch left maybe? Steve is that the case&lt;/p&gt;</comment>
                            <comment id="204644" author="sguminsx" created="Mon, 7 Aug 2017 13:47:03 +0000"  >&lt;p&gt;Yes, it looks like &lt;a href=&quot;https://review.whamcloud.com/#/c/27522/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/#/c/27522/&lt;/a&gt; is the only committed patch that has not yet been landed. &#160;I just re-ran the Python script attached to this ticket, and discovered that there are still a few occurrences of C89 initializers. &#160;I&apos;ll submit patches for them shortly.&lt;/p&gt;</comment>
                            <comment id="204771" author="gerrit" created="Tue, 8 Aug 2017 14:55:11 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/28417&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/28417&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; lnet: Use C99 struct initializers in lsnapshot&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 20aed5ac4bb96ae5e5a2626d9a80fc0a61c335d6&lt;/p&gt;</comment>
                            <comment id="204808" author="gerrit" created="Tue, 8 Aug 2017 17:55:57 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/28421&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/28421&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializers in lfs_getdirstripe&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 7f7e46213f488a66b09e9be3b891c04bbdf082db&lt;/p&gt;</comment>
                            <comment id="204813" author="gerrit" created="Tue, 8 Aug 2017 18:53:24 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/28423&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/28423&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializers in lnetctl&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: d0ad876c7011cfc1dc748a4f217206b613b3c539&lt;/p&gt;</comment>
                            <comment id="204885" author="gerrit" created="Wed, 9 Aug 2017 12:57:43 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/28436&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/28436&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; lnet: Use C99 struct initializer in framework.c&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: e142ee7cc568319d271de821bf1aeb0e34073335&lt;/p&gt;</comment>
                            <comment id="205144" author="gerrit" created="Fri, 11 Aug 2017 13:29:24 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/28479&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/28479&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; lnet: Use C99 initializer in ptlrpc_register_rqbd()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: de18309b95d97123dc6fdd932dee1487e378d76c&lt;/p&gt;</comment>
                            <comment id="205583" author="gerrit" created="Thu, 17 Aug 2017 01:30:39 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/28417/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/28417/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializers in lsnapshot&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 6e27028b08eace5fc9a141d33499940ef00c9761&lt;/p&gt;</comment>
                            <comment id="205705" author="gerrit" created="Thu, 17 Aug 2017 23:43:28 +0000"  >&lt;p&gt;Andreas Dilger (andreas.dilger@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/28592&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/28592&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: clean up optarg definitions&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: c15e377f7b360d73b15c91412ea43e950f64f07a&lt;/p&gt;</comment>
                            <comment id="206551" author="gerrit" created="Mon, 28 Aug 2017 06:26:34 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/27522/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/27522/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 initializers in lfs_changelog()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 1d6d594d1043425a237585d2d5ad33599127dc3d&lt;/p&gt;</comment>
                            <comment id="206555" author="gerrit" created="Mon, 28 Aug 2017 06:26:47 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/28421/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/28421/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializers in lfs_getdirstripe&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 0568e93539ebc1bbec601182f9faba4d43ed106b&lt;/p&gt;</comment>
                            <comment id="206557" author="gerrit" created="Mon, 28 Aug 2017 06:26:55 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/28479/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/28479/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; ptlrpc: Use C99 initializer in ptlrpc_register_rqbd()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 3af10d510078ddf050fbda2ef80bdc6920d89f8d&lt;/p&gt;</comment>
                            <comment id="207116" author="gerrit" created="Thu, 31 Aug 2017 19:16:52 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/28436/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/28436/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; lnet: Use C99 struct initializer in framework.c&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 60c9a2d351d40b5306b586d08847b6c7727b73cf&lt;/p&gt;</comment>
                            <comment id="207979" author="gerrit" created="Sun, 10 Sep 2017 04:55:13 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/28423/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/28423/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializers in lnetctl&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 7e58fd07723483517dbe712ee671db416b6d3ac4&lt;/p&gt;</comment>
                            <comment id="207992" author="pjones" created="Sun, 10 Sep 2017 14:52:04 +0000"  >&lt;p&gt;Dare I ask - are there more such patches still to come?&lt;/p&gt;</comment>
                            <comment id="208029" author="sguminsx" created="Mon, 11 Sep 2017 10:59:07 +0000"  >&lt;p&gt;Final patch landed for 2.11.&lt;/p&gt;</comment>
                            <comment id="214699" author="gerrit" created="Mon, 27 Nov 2017 17:00:36 +0000"  >&lt;p&gt;Minh Diep (minh.diep@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/30264&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/30264&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 initializer for lfsck_types_names&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: b2_10&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: f77870de3c743b30d2481c3c546f74a875a33af3&lt;/p&gt;</comment>
                            <comment id="216069" author="gerrit" created="Tue, 12 Dec 2017 17:12:33 +0000"  >&lt;p&gt;Minh Diep (minh.diep@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/30499&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/30499&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializers in lfs_hsm_state()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: b2_10&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 4ae30c07195b4e25e5ef88cb216a944bd9fe116b&lt;/p&gt;</comment>
                            <comment id="216755" author="gerrit" created="Tue, 19 Dec 2017 18:43:13 +0000"  >&lt;p&gt;John L. Hammond (john.hammond@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/30264/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/30264/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 initializer for lfsck_types_names&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: b2_10&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 7cdc62964119f5f13070d0549d157e4a6135dc5c&lt;/p&gt;</comment>
                            <comment id="216787" author="gerrit" created="Tue, 19 Dec 2017 20:15:18 +0000"  >&lt;p&gt;John L. Hammond (john.hammond@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/30499/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/30499/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-6210&quot; title=&quot;change positional struct initializers to C99 initializers&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-6210&quot;&gt;&lt;del&gt;LU-6210&lt;/del&gt;&lt;/a&gt; utils: Use C99 struct initializers in lfs_hsm_state()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: b2_10&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 924586bdcc5a053bc06ef7c73ae2112866b880c5&lt;/p&gt;</comment>
                    </comments>
                    <attachments>
                            <attachment id="23738" name="struct_c89.py" size="5139" author="sguminsx" created="Mon, 24 Oct 2016 12:07:54 +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|hzx5ov:</customfieldvalue>

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