<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 01:12:40 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-1014] MGS with sys.timeout is ignored and if sys.timeout is changed its not synced across the file system.</title>
                <link>https://jira.whamcloud.com/browse/LU-1014</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;While testing Lustre master branch on our production system we ran into the issue of the timeout being incorrect on the MGS. This was causing the MGS to drop OSS and MDS connections. Also discovered if we changed the obd_timeout parameter anywhere to another value that value was never propagated to the rest of the system. &lt;/p&gt;</description>
                <environment>Any Lustre 2.X setup.</environment>
        <key id="12951">LU-1014</key>
            <summary>MGS with sys.timeout is ignored and if sys.timeout is changed its not synced across the file system.</summary>
                <type id="1" iconUrl="https://jira.whamcloud.com/secure/viewavatar?size=xsmall&amp;avatarId=11303&amp;avatarType=issuetype">Bug</type>
                                            <priority id="1" iconUrl="https://jira.whamcloud.com/images/icons/priorities/blocker.svg">Blocker</priority>
                        <status id="5" iconUrl="https://jira.whamcloud.com/images/icons/statuses/resolved.png" description="A resolution has been taken, and it is awaiting verification by reporter. From here issues are either reopened, or are closed.">Resolved</status>
                    <statusCategory id="3" key="done" colorName="success"/>
                                    <resolution id="1">Fixed</resolution>
                                        <assignee username="laisiyao">Lai Siyao</assignee>
                                    <reporter username="simmonsja">James A Simmons</reporter>
                        <labels>
                    </labels>
                <created>Fri, 20 Jan 2012 09:22:09 +0000</created>
                <updated>Fri, 24 Aug 2012 16:28:03 +0000</updated>
                            <resolved>Fri, 24 Aug 2012 16:28:03 +0000</resolved>
                                    <version>Lustre 2.2.0</version>
                    <version>Lustre 2.3.0</version>
                    <version>Lustre 2.4.0</version>
                                    <fixVersion>Lustre 2.3.0</fixVersion>
                    <fixVersion>Lustre 2.4.0</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>6</watches>
                                                                            <comments>
                            <comment id="27090" author="simmonsja" created="Fri, 20 Jan 2012 09:49:06 +0000"  >&lt;p&gt;Here is a easy example of seeing the problem. Building a test file system with --param sys.timeout=20 to every device and then mounted this file system. Doing the following command gives:&lt;/p&gt;

&lt;p&gt;pdsh -w spoon02,maid-mds1,barry-mds1,barry-oss&lt;span class=&quot;error&quot;&gt;&amp;#91;1-4&amp;#93;&lt;/span&gt; &quot;lctl get_param timeout&quot;&lt;br/&gt;
spoon02: timeout=20&lt;br/&gt;
barry-oss3: timeout=20&lt;br/&gt;
barry-oss4: timeout=20&lt;br/&gt;
maid-mds1: timeout=100&lt;br/&gt;
barry-oss2: timeout=20&lt;br/&gt;
barry-oss1: timeout=20&lt;br/&gt;
barry-mds1: timeout=20&lt;/p&gt;

&lt;p&gt;As you can see the timeout on the MGS unit is set to the default 100 meaning the --param-sys.timeout=20 flag is being ignored. &lt;/p&gt;

&lt;p&gt;Now for the technical reasons for why I think this is the case. Information such as the timeout is stored in the MGS logs via the function mgs_write_log_target. This information is passed with the struct mgs_target_info. This is all done when a target is registered with the MGS with mgs_handle_target_reg which is called when a RQF_MGS_TARGET_REG rpc is recieved. You will notice that the RQF_MGS_TARGET_REG is sent by mgc_target_register which happens when the key KEY_REGISTER_TARGET is received in mgc_set_info_async. This is all triggered by a mount of a target as you can see in obd_mount.c with the function server_register_target which is used to start the service targets i.e MDTs and OSTs. This is all to register via the MGC to the MGS for the specific targets. Well for the case of the MGS it has to be started BEFORE the MGC. Then the MGC is registered before all the server targets. This is the not the case for the MGS so no data is ever written to the logs of the MGS unit since the MGS is never registered to itself.&lt;/p&gt;

</comment>
                            <comment id="27094" author="hilljjornl" created="Fri, 20 Jan 2012 10:11:50 +0000"  >&lt;p&gt;Something that also may be of interest is what is stored in the CONFIGS section of the MGT:&lt;/p&gt;

&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;root@maid-mds1 ~&amp;#93;&lt;/span&gt;# tunefs.lustre --dryrun /dev/sda&lt;br/&gt;
checking for existing Lustre data: found CONFIGS/mountdata&lt;br/&gt;
Reading CONFIGS/mountdata&lt;/p&gt;

&lt;p&gt;   Read previous values:&lt;br/&gt;
Target:     MGS&lt;br/&gt;
Index:      unassigned&lt;br/&gt;
Lustre FS:  lustre&lt;br/&gt;
Mount type: ldiskfs&lt;br/&gt;
Flags:      0x74&lt;br/&gt;
              (MGS needs_index first_time update )&lt;br/&gt;
Persistent mount opts: user_xattr,errors=remount-ro&lt;br/&gt;
Parameters: sys.timeout=20&lt;/p&gt;


&lt;p&gt;   Permanent disk data:&lt;br/&gt;
Target:     MGS&lt;br/&gt;
Index:      unassigned&lt;br/&gt;
Lustre FS:  lustre&lt;br/&gt;
Mount type: ldiskfs&lt;br/&gt;
Flags:      0x74&lt;br/&gt;
              (MGS needs_index first_time update )&lt;br/&gt;
Persistent mount opts: user_xattr,errors=remount-ro&lt;br/&gt;
Parameters: sys.timeout=20&lt;/p&gt;

&lt;p&gt;exiting before disk write.&lt;/p&gt;</comment>
                            <comment id="27106" author="pjones" created="Fri, 20 Jan 2012 10:51:04 +0000"  >&lt;p&gt;Oleg&lt;/p&gt;

&lt;p&gt;Could you please look into this one?&lt;/p&gt;

&lt;p&gt;Thanks&lt;/p&gt;

&lt;p&gt;Peter&lt;/p&gt;</comment>
                            <comment id="27972" author="pjones" created="Mon, 6 Feb 2012 13:33:10 +0000"  >&lt;p&gt;Lai&lt;/p&gt;

&lt;p&gt;Could you please look into this one?&lt;/p&gt;

&lt;p&gt;Thanks&lt;/p&gt;

&lt;p&gt;Peter&lt;/p&gt;</comment>
                            <comment id="28481" author="laisiyao" created="Mon, 13 Feb 2012 04:24:50 +0000"  >&lt;p&gt;Hi Jason, tunefs.lustre dumps mountdata, not llog config, which is the data written by mkfs, not the one directly used in device startup. The problem is just as James pointed out, MGS doesn&apos;t follow normal target device setup process, but just get created by lustre_start_simple().&lt;/p&gt;</comment>
                            <comment id="28613" author="laisiyao" created="Tue, 14 Feb 2012 04:09:59 +0000"  >&lt;p&gt;Review is on &lt;a href=&quot;http://review.whamcloud.com/#change,2139&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#change,2139&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In this patch, MGS will process sys parameters from on-disk mountdata, that means, sys parameters can&apos;t be changed via `lctl set_param/conf_param ...` temporarily or permanently on disk, but through tunefs.lustre. IMO this is reasonable, because MGS may hold config for several setups, sys parameters change on one setup should not affect other setups.&lt;/p&gt;

&lt;p&gt;James, would you verify the patch works?&lt;/p&gt;</comment>
                            <comment id="28876" author="pjones" created="Thu, 16 Feb 2012 08:49:10 +0000"  >&lt;p&gt;James&lt;/p&gt;

&lt;p&gt;When do you expect to be able to verify whether this patch works?&lt;/p&gt;

&lt;p&gt;Thanks&lt;/p&gt;

&lt;p&gt;Peter&lt;/p&gt;</comment>
                            <comment id="28893" author="hilljjornl" created="Thu, 16 Feb 2012 10:24:27 +0000"  >&lt;p&gt;Peter/Lai :&lt;/p&gt;

&lt;p&gt;Taking away the lctl interface from a client can potentially break some legacy administrative scripts. For example our client startup script mounts the filesystem looks at the values in /proc/sys/lustre/&lt;/p&gt;
{timeout,ldlm_timeout,at_min,at_max}
&lt;p&gt; and sets them if they are not correct. Now with this patch the timeout &lt;b&gt;should&lt;/b&gt; always be correct, but will it still be queryable via lctl? Is it reasonable to expect that you need to unmount your MGT to change this value in production (I can see a use case there where it is not reasonable)? What affects would it have on the currently mounted MDT&apos;s and OST&apos;s - would they then need to be unmounted and re-mounted to pick up the change? My concern here is availibility and how we have architected the Spider filesystems here at ORNL (common MGS for all filesystems). Same concern for currently mounted clients - or would recovery handle getting the timeout value set on the client? Are there any precedents for removing a tunable from lustre in terms of compatibility that are of concern?&lt;/p&gt;

&lt;p&gt;Thanks,&lt;br/&gt;
&amp;#8211;&lt;br/&gt;
-Jason&lt;/p&gt;</comment>
                            <comment id="28897" author="simmonsja" created="Thu, 16 Feb 2012 10:53:49 +0000"  >&lt;p&gt;I plan to test it tomorrow and do regression testing over the weekend. Monday we will boot our test cray system in the latest Lustre version to see if it holds up.&lt;/p&gt;</comment>
                            <comment id="29488" author="simmonsja" created="Mon, 20 Feb 2012 14:13:25 +0000"  >&lt;p&gt;Okay I have tested your patch. Test the MGS formated with --param sys.timeout and also tried lctl &lt;span class=&quot;error&quot;&gt;&amp;#91;s/g&amp;#93;&lt;/span&gt;et_param timeout&lt;span class=&quot;error&quot;&gt;&amp;#91;=XXX&amp;#93;&lt;/span&gt; on clients and servers. On the MGS lct get_param timeout reported the right value when compared to the tune.lustre reported values which were passed in by the format command. I also wanted to see if you could change the timeout with lctl and I discovered you can change the value on any client or server including the MGS. That changed value also didn&apos;t change back to the old value at any time as long as you didn&apos;t reboot the node. The regression I did see is if you did change the obd_timeout on any client or server that new value did not propagate to all the nodes of the file system.&lt;/p&gt;</comment>
                            <comment id="29497" author="laisiyao" created="Tue, 21 Feb 2012 06:53:47 +0000"  >&lt;p&gt;Ahh, I misunderstood it, I used to think that timeout can only be changed through mountconf, but actually `lctl set_param timeout=xxx` just write to /proc/sys/lustre/timeout, which corresponds to a global variable &apos;obd_timeout&apos;, and it won&apos;t be propagated to the file system; while `lctl conf_param &amp;lt;target&amp;gt;.sys.timeout=xxx` will trigger mountconf update on the target.&lt;/p&gt;

&lt;p&gt;Could you confirm it is regression? or do I miss anything?&lt;/p&gt;
</comment>
                            <comment id="29499" author="simmonsja" created="Tue, 21 Feb 2012 07:44:44 +0000"  >&lt;p&gt;Before I do a lctl conf_param lustre.sys.timeout=150 on the MGS (maid-mds1, barry-mds is the MDS)&lt;/p&gt;

&lt;p&gt;pdsh -w maid-mds1,barry-mds1,barry-oss&lt;span class=&quot;error&quot;&gt;&amp;#91;1-4&amp;#93;&lt;/span&gt;,spoon01 &quot;lctl get_param timeout&quot;&lt;br/&gt;
barry-mds1: timeout=300&lt;br/&gt;
barry-oss2: timeout=300&lt;br/&gt;
barry-oss4: timeout=300&lt;br/&gt;
barry-oss1: timeout=300&lt;br/&gt;
barry-oss3: timeout=300&lt;br/&gt;
maid-mds1: timeout=300&lt;br/&gt;
spoon01: timeout=300   (client)&lt;/p&gt;

&lt;p&gt;After a pdsh -w maid-mds1 &quot;lctl conf_param lustre.sys.timeout=150&quot;&lt;/p&gt;

&lt;p&gt;pdsh -w maid-mds1,barry-mds1,barry-oss&lt;span class=&quot;error&quot;&gt;&amp;#91;1-4&amp;#93;&lt;/span&gt;,spoon01 &quot;lctl get_param timeout&quot;&lt;br/&gt;
barry-oss1: timeout=150&lt;br/&gt;
barry-oss4: timeout=150&lt;br/&gt;
barry-mds1: timeout=150&lt;br/&gt;
barry-oss3: timeout=150&lt;br/&gt;
barry-oss2: timeout=150&lt;br/&gt;
maid-mds1: timeout=300&lt;br/&gt;
spoon01: timeout=300&lt;/p&gt;

&lt;p&gt;As you can see the client and the MGS are not updated with the new obd_timeout value.&lt;/p&gt;</comment>
                            <comment id="29534" author="laisiyao" created="Wed, 22 Feb 2012 05:25:08 +0000"  >&lt;p&gt;James, I did the same test, but the result is different: client always updates timeout, but MGS never. And the result is identical on both patched and unpatched code.&lt;/p&gt;

&lt;p&gt;The code shows that although MGS has a MGC, but it doesn&apos;t enqueue config lock, so when config changes, it&apos;s not notified. I&apos;ll update the patch to fix it later.&lt;/p&gt;

&lt;p&gt;Could you verify that client not update its timeout?&lt;/p&gt;</comment>
                            <comment id="29544" author="simmonsja" created="Wed, 22 Feb 2012 08:50:03 +0000"  >&lt;p&gt;I&apos;m a idiot. The client had the LNET set up but I didn&apos;t have the file system mounted. Once I mounted a file system on the client I seen the timeout change on the client. Only the MGS timeout doesn&apos;t change which it appears that you know what the solution is. Look forward to your new patch.&lt;/p&gt;</comment>
                            <comment id="29546" author="simmonsja" created="Wed, 22 Feb 2012 10:08:05 +0000"  >&lt;p&gt;Also could you update cfg/local.sh from&lt;/p&gt;

&lt;p&gt;MGS_MKFS_OPTS=&quot;--mgs --device-size=$MGSSIZE&quot;&lt;/p&gt;

&lt;p&gt;to &lt;/p&gt;

&lt;p&gt;MGS_MKFS_OPTS=&quot;--mgs --device-size=$MGSSIZE --param sys.timeout=$TIMEOUT&quot;&lt;/p&gt;</comment>
                            <comment id="29561" author="simmonsja" created="Wed, 22 Feb 2012 13:48:54 +0000"  >&lt;p&gt;Looking at the the mgs parameter setting I&apos;m seeing mgs_iocontrol -&amp;gt; mgs_setparam -&amp;gt; which does mgs_write_log_param as well as call mgs_revoke_lock. Mgs_revoke_lock does a local &quot;ldlm_cli_enqueue_local&quot; which handle the config changes. It should be notified which in turn calls mgs_completion_ast_config&lt;/p&gt;</comment>
                            <comment id="29639" author="laisiyao" created="Thu, 23 Feb 2012 03:35:41 +0000"  >&lt;p&gt;James, as I&apos;ve said, although standalone MGS has a mgc device, because MGS doesn&apos;t have config of its own, this mgc doesn&apos;t enqueue any config lock, so upon config changes, standalone MGS won&apos;t be notified.&lt;/p&gt;

&lt;p&gt;In the new patch I&apos;ll commit later, the mgc on MGS will enqueue &apos;&amp;lt;profile&amp;gt;-params&apos; config lock, this config is global parameters for the system. But there is one thing strange: even when you issue `lfs conf_param &amp;lt;profile&amp;gt;-MDT0000.sys.timeout=xxx` (or any other target/client device), all the config files will update its timeout value (ie. &amp;lt;profile&amp;gt;-params and &amp;lt;profile&amp;gt;-MDT0000, &amp;lt;profile&amp;gt;-OSTxxxx and &amp;lt;profile&amp;gt;-client), I&apos;m not clear whether this is intended. So with this patch, there is no need to change cfg/local.sh script, because the timeout value will be set by the last device timeout parameter.&lt;/p&gt;</comment>
                            <comment id="29649" author="simmonsja" created="Thu, 23 Feb 2012 09:02:33 +0000"  >&lt;p&gt;Thanks for the patch and info. I&apos;m just attempting to understand the lustre code in greater depth. With the second patch I now understand how config is set up. Is patch 3 a total replacement of patch 2 or do you need to use both? I applied patch number 2 and patch number 3 and tested them with success. The timeout format parameter on the MGS is recognized and when I do a lctl conf_param it updates the timeouts correctly. As for was the syncing of obd_timeout intended, well I know our site is depended on that being available.&lt;/p&gt;</comment>
                            <comment id="29651" author="laisiyao" created="Thu, 23 Feb 2012 09:47:14 +0000"  >&lt;p&gt;Patch 3 is a total replacement for patch 2. The original issue is that MGS doesn&apos;t have llog config (normally for target like MDT/OST this config is created at device setup time, which will connect to MGS and register itself), so that it doesn&apos;t enqueue any config lock.&lt;/p&gt;

&lt;p&gt;In patch 2 I tried to parse sys parameters through mountdata created by mkfs.lustre in MGS startup, but in this way MGS won&apos;t be notified if config changes; so in patch 3 MGC on MGS will enqueue &apos;&amp;lt;profile&amp;gt;-params&apos; config lock, this config contains global sys parameters, therefore MGS can process global sys parameters like other nodes process their config. Because patch 2 is a special way to process parameters, and patch 3 is using a normal method to process config, and can cover the functionality of patch 2, I&apos;d like use patch 3 only.&lt;/p&gt;</comment>
                            <comment id="30102" author="hudson" created="Thu, 1 Mar 2012 13:05:02 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=ubuntu1004,ib_stack=inkernel/494/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,ubuntu1004,inkernel #494&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1014&quot; title=&quot;MGS with sys.timeout is ignored and if sys.timeout is changed its not synced across the file system.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1014&quot;&gt;&lt;del&gt;LU-1014&lt;/del&gt;&lt;/a&gt; mountconf: MGS should process parameter config (Revision 6cde8692384a1d3a6d0e8114629fa943c951fe40)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=6cde8692384a1d3a6d0e8114629fa943c951fe40&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;6cde8692384a1d3a6d0e8114629fa943c951fe40&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/obd_mount.c&lt;/li&gt;
	&lt;li&gt;lustre/mgc/mgc_request.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="30108" author="hudson" created="Thu, 1 Mar 2012 13:10:33 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=sles11,ib_stack=inkernel/494/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,sles11,inkernel #494&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1014&quot; title=&quot;MGS with sys.timeout is ignored and if sys.timeout is changed its not synced across the file system.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1014&quot;&gt;&lt;del&gt;LU-1014&lt;/del&gt;&lt;/a&gt; mountconf: MGS should process parameter config (Revision 6cde8692384a1d3a6d0e8114629fa943c951fe40)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=6cde8692384a1d3a6d0e8114629fa943c951fe40&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;6cde8692384a1d3a6d0e8114629fa943c951fe40&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mgc/mgc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/obd_mount.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="30114" author="hudson" created="Thu, 1 Mar 2012 13:13:30 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el5,ib_stack=inkernel/494/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,inkernel #494&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1014&quot; title=&quot;MGS with sys.timeout is ignored and if sys.timeout is changed its not synced across the file system.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1014&quot;&gt;&lt;del&gt;LU-1014&lt;/del&gt;&lt;/a&gt; mountconf: MGS should process parameter config (Revision 6cde8692384a1d3a6d0e8114629fa943c951fe40)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=6cde8692384a1d3a6d0e8114629fa943c951fe40&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;6cde8692384a1d3a6d0e8114629fa943c951fe40&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/obd_mount.c&lt;/li&gt;
	&lt;li&gt;lustre/mgc/mgc_request.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="30120" author="hudson" created="Thu, 1 Mar 2012 13:15:13 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el6,ib_stack=ofa/494/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el6,ofa #494&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1014&quot; title=&quot;MGS with sys.timeout is ignored and if sys.timeout is changed its not synced across the file system.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1014&quot;&gt;&lt;del&gt;LU-1014&lt;/del&gt;&lt;/a&gt; mountconf: MGS should process parameter config (Revision 6cde8692384a1d3a6d0e8114629fa943c951fe40)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=6cde8692384a1d3a6d0e8114629fa943c951fe40&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;6cde8692384a1d3a6d0e8114629fa943c951fe40&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mgc/mgc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/obd_mount.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="30125" author="pjones" created="Thu, 1 Mar 2012 13:16:36 +0000"  >&lt;p&gt;Landed for 2.2&lt;/p&gt;</comment>
                            <comment id="30127" author="hudson" created="Thu, 1 Mar 2012 13:16:36 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el6,ib_stack=inkernel/494/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el6,inkernel #494&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1014&quot; title=&quot;MGS with sys.timeout is ignored and if sys.timeout is changed its not synced across the file system.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1014&quot;&gt;&lt;del&gt;LU-1014&lt;/del&gt;&lt;/a&gt; mountconf: MGS should process parameter config (Revision 6cde8692384a1d3a6d0e8114629fa943c951fe40)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=6cde8692384a1d3a6d0e8114629fa943c951fe40&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;6cde8692384a1d3a6d0e8114629fa943c951fe40&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mgc/mgc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/obd_mount.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="30133" author="hudson" created="Thu, 1 Mar 2012 13:17:15 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el5,ib_stack=ofa/494/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,ofa #494&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1014&quot; title=&quot;MGS with sys.timeout is ignored and if sys.timeout is changed its not synced across the file system.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1014&quot;&gt;&lt;del&gt;LU-1014&lt;/del&gt;&lt;/a&gt; mountconf: MGS should process parameter config (Revision 6cde8692384a1d3a6d0e8114629fa943c951fe40)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=6cde8692384a1d3a6d0e8114629fa943c951fe40&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;6cde8692384a1d3a6d0e8114629fa943c951fe40&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mgc/mgc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/obd_mount.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="30139" author="hudson" created="Thu, 1 Mar 2012 13:19:21 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el5,ib_stack=inkernel/494/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,inkernel #494&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1014&quot; title=&quot;MGS with sys.timeout is ignored and if sys.timeout is changed its not synced across the file system.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1014&quot;&gt;&lt;del&gt;LU-1014&lt;/del&gt;&lt;/a&gt; mountconf: MGS should process parameter config (Revision 6cde8692384a1d3a6d0e8114629fa943c951fe40)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=6cde8692384a1d3a6d0e8114629fa943c951fe40&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;6cde8692384a1d3a6d0e8114629fa943c951fe40&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mgc/mgc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/obd_mount.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="30147" author="hudson" created="Thu, 1 Mar 2012 13:25:26 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el5,ib_stack=ofa/494/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,ofa #494&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1014&quot; title=&quot;MGS with sys.timeout is ignored and if sys.timeout is changed its not synced across the file system.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1014&quot;&gt;&lt;del&gt;LU-1014&lt;/del&gt;&lt;/a&gt; mountconf: MGS should process parameter config (Revision 6cde8692384a1d3a6d0e8114629fa943c951fe40)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=6cde8692384a1d3a6d0e8114629fa943c951fe40&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;6cde8692384a1d3a6d0e8114629fa943c951fe40&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mgc/mgc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/obd_mount.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="30157" author="hudson" created="Thu, 1 Mar 2012 13:44:47 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el5,ib_stack=inkernel/494/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,inkernel #494&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1014&quot; title=&quot;MGS with sys.timeout is ignored and if sys.timeout is changed its not synced across the file system.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1014&quot;&gt;&lt;del&gt;LU-1014&lt;/del&gt;&lt;/a&gt; mountconf: MGS should process parameter config (Revision 6cde8692384a1d3a6d0e8114629fa943c951fe40)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=6cde8692384a1d3a6d0e8114629fa943c951fe40&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;6cde8692384a1d3a6d0e8114629fa943c951fe40&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/obd_mount.c&lt;/li&gt;
	&lt;li&gt;lustre/mgc/mgc_request.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="30165" author="hudson" created="Thu, 1 Mar 2012 14:29:51 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el5,ib_stack=ofa/494/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,ofa #494&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1014&quot; title=&quot;MGS with sys.timeout is ignored and if sys.timeout is changed its not synced across the file system.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1014&quot;&gt;&lt;del&gt;LU-1014&lt;/del&gt;&lt;/a&gt; mountconf: MGS should process parameter config (Revision 6cde8692384a1d3a6d0e8114629fa943c951fe40)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=6cde8692384a1d3a6d0e8114629fa943c951fe40&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;6cde8692384a1d3a6d0e8114629fa943c951fe40&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mgc/mgc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/obd_mount.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="30174" author="hudson" created="Thu, 1 Mar 2012 15:35:28 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el5,ib_stack=ofa/494/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,ofa #494&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1014&quot; title=&quot;MGS with sys.timeout is ignored and if sys.timeout is changed its not synced across the file system.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1014&quot;&gt;&lt;del&gt;LU-1014&lt;/del&gt;&lt;/a&gt; mountconf: MGS should process parameter config (Revision 6cde8692384a1d3a6d0e8114629fa943c951fe40)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=6cde8692384a1d3a6d0e8114629fa943c951fe40&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;6cde8692384a1d3a6d0e8114629fa943c951fe40&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mgc/mgc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/obd_mount.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="30182" author="hudson" created="Thu, 1 Mar 2012 16:35:38 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el5,ib_stack=inkernel/494/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,inkernel #494&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1014&quot; title=&quot;MGS with sys.timeout is ignored and if sys.timeout is changed its not synced across the file system.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1014&quot;&gt;&lt;del&gt;LU-1014&lt;/del&gt;&lt;/a&gt; mountconf: MGS should process parameter config (Revision 6cde8692384a1d3a6d0e8114629fa943c951fe40)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=6cde8692384a1d3a6d0e8114629fa943c951fe40&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;6cde8692384a1d3a6d0e8114629fa943c951fe40&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mgc/mgc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/obd_mount.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="30193" author="hudson" created="Thu, 1 Mar 2012 17:10:53 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el6,ib_stack=ofa/494/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el6,ofa #494&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1014&quot; title=&quot;MGS with sys.timeout is ignored and if sys.timeout is changed its not synced across the file system.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1014&quot;&gt;&lt;del&gt;LU-1014&lt;/del&gt;&lt;/a&gt; mountconf: MGS should process parameter config (Revision 6cde8692384a1d3a6d0e8114629fa943c951fe40)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=6cde8692384a1d3a6d0e8114629fa943c951fe40&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;6cde8692384a1d3a6d0e8114629fa943c951fe40&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mgc/mgc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/obd_mount.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="30199" author="hudson" created="Thu, 1 Mar 2012 17:19:31 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el6,ib_stack=inkernel/494/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el6,inkernel #494&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1014&quot; title=&quot;MGS with sys.timeout is ignored and if sys.timeout is changed its not synced across the file system.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1014&quot;&gt;&lt;del&gt;LU-1014&lt;/del&gt;&lt;/a&gt; mountconf: MGS should process parameter config (Revision 6cde8692384a1d3a6d0e8114629fa943c951fe40)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=6cde8692384a1d3a6d0e8114629fa943c951fe40&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;6cde8692384a1d3a6d0e8114629fa943c951fe40&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/obd_mount.c&lt;/li&gt;
	&lt;li&gt;lustre/mgc/mgc_request.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="30205" author="hudson" created="Thu, 1 Mar 2012 17:23:05 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el6,ib_stack=inkernel/494/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el6,inkernel #494&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1014&quot; title=&quot;MGS with sys.timeout is ignored and if sys.timeout is changed its not synced across the file system.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1014&quot;&gt;&lt;del&gt;LU-1014&lt;/del&gt;&lt;/a&gt; mountconf: MGS should process parameter config (Revision 6cde8692384a1d3a6d0e8114629fa943c951fe40)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=6cde8692384a1d3a6d0e8114629fa943c951fe40&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;6cde8692384a1d3a6d0e8114629fa943c951fe40&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/obd_mount.c&lt;/li&gt;
	&lt;li&gt;lustre/mgc/mgc_request.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="30211" author="hudson" created="Thu, 1 Mar 2012 17:31:59 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el6,ib_stack=inkernel/494/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el6,inkernel #494&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1014&quot; title=&quot;MGS with sys.timeout is ignored and if sys.timeout is changed its not synced across the file system.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1014&quot;&gt;&lt;del&gt;LU-1014&lt;/del&gt;&lt;/a&gt; mountconf: MGS should process parameter config (Revision 6cde8692384a1d3a6d0e8114629fa943c951fe40)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=6cde8692384a1d3a6d0e8114629fa943c951fe40&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;6cde8692384a1d3a6d0e8114629fa943c951fe40&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mgc/mgc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/obd_mount.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="30217" author="hudson" created="Thu, 1 Mar 2012 17:43:59 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el6,ib_stack=ofa/494/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el6,ofa #494&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1014&quot; title=&quot;MGS with sys.timeout is ignored and if sys.timeout is changed its not synced across the file system.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1014&quot;&gt;&lt;del&gt;LU-1014&lt;/del&gt;&lt;/a&gt; mountconf: MGS should process parameter config (Revision 6cde8692384a1d3a6d0e8114629fa943c951fe40)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=6cde8692384a1d3a6d0e8114629fa943c951fe40&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;6cde8692384a1d3a6d0e8114629fa943c951fe40&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mgc/mgc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/obd_mount.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="30223" author="hudson" created="Thu, 1 Mar 2012 17:44:17 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el6,ib_stack=ofa/494/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el6,ofa #494&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1014&quot; title=&quot;MGS with sys.timeout is ignored and if sys.timeout is changed its not synced across the file system.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1014&quot;&gt;&lt;del&gt;LU-1014&lt;/del&gt;&lt;/a&gt; mountconf: MGS should process parameter config (Revision 6cde8692384a1d3a6d0e8114629fa943c951fe40)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=6cde8692384a1d3a6d0e8114629fa943c951fe40&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;6cde8692384a1d3a6d0e8114629fa943c951fe40&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/obd_mount.c&lt;/li&gt;
	&lt;li&gt;lustre/mgc/mgc_request.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="36162" author="hudson" created="Wed, 2 May 2012 14:53:05 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-dev/./arch=x86_64,build_type=client,distro=el5,ib_stack=inkernel/340/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-dev &#187; x86_64,client,el5,inkernel #340&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1014&quot; title=&quot;MGS with sys.timeout is ignored and if sys.timeout is changed its not synced across the file system.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1014&quot;&gt;&lt;del&gt;LU-1014&lt;/del&gt;&lt;/a&gt; mountconf: MGS should process parameter config (Revision 6cde8692384a1d3a6d0e8114629fa943c951fe40)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-dev.git;a=shortlog;h=refs/heads/$GIT_BRANCH&amp;amp;a=commit&amp;amp;h=6cde8692384a1d3a6d0e8114629fa943c951fe40&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;6cde8692384a1d3a6d0e8114629fa943c951fe40&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/obd_mount.c&lt;/li&gt;
	&lt;li&gt;lustre/mgc/mgc_request.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="36459" author="hudson" created="Wed, 2 May 2012 14:55:04 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-dev/./arch=i686,build_type=client,distro=el6,ib_stack=inkernel/340/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-dev &#187; i686,client,el6,inkernel #340&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1014&quot; title=&quot;MGS with sys.timeout is ignored and if sys.timeout is changed its not synced across the file system.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1014&quot;&gt;&lt;del&gt;LU-1014&lt;/del&gt;&lt;/a&gt; mountconf: MGS should process parameter config (Revision 6cde8692384a1d3a6d0e8114629fa943c951fe40)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-dev.git;a=shortlog;h=refs/heads/$GIT_BRANCH&amp;amp;a=commit&amp;amp;h=6cde8692384a1d3a6d0e8114629fa943c951fe40&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;6cde8692384a1d3a6d0e8114629fa943c951fe40&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mgc/mgc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/obd_mount.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="36756" author="hudson" created="Wed, 2 May 2012 14:58:16 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-dev/./arch=i686,build_type=server,distro=el5,ib_stack=inkernel/340/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-dev &#187; i686,server,el5,inkernel #340&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1014&quot; title=&quot;MGS with sys.timeout is ignored and if sys.timeout is changed its not synced across the file system.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1014&quot;&gt;&lt;del&gt;LU-1014&lt;/del&gt;&lt;/a&gt; mountconf: MGS should process parameter config (Revision 6cde8692384a1d3a6d0e8114629fa943c951fe40)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-dev.git;a=shortlog;h=refs/heads/$GIT_BRANCH&amp;amp;a=commit&amp;amp;h=6cde8692384a1d3a6d0e8114629fa943c951fe40&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;6cde8692384a1d3a6d0e8114629fa943c951fe40&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/obd_mount.c&lt;/li&gt;
	&lt;li&gt;lustre/mgc/mgc_request.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="37054" author="hudson" created="Wed, 2 May 2012 15:13:55 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-dev/./arch=x86_64,build_type=server,distro=el6,ib_stack=inkernel/340/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-dev &#187; x86_64,server,el6,inkernel #340&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1014&quot; title=&quot;MGS with sys.timeout is ignored and if sys.timeout is changed its not synced across the file system.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1014&quot;&gt;&lt;del&gt;LU-1014&lt;/del&gt;&lt;/a&gt; mountconf: MGS should process parameter config (Revision 6cde8692384a1d3a6d0e8114629fa943c951fe40)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-dev.git;a=shortlog;h=refs/heads/$GIT_BRANCH&amp;amp;a=commit&amp;amp;h=6cde8692384a1d3a6d0e8114629fa943c951fe40&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;6cde8692384a1d3a6d0e8114629fa943c951fe40&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mgc/mgc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/obd_mount.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="37351" author="hudson" created="Wed, 2 May 2012 15:14:46 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-dev/./arch=i686,build_type=client,distro=el5,ib_stack=inkernel/340/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-dev &#187; i686,client,el5,inkernel #340&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1014&quot; title=&quot;MGS with sys.timeout is ignored and if sys.timeout is changed its not synced across the file system.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1014&quot;&gt;&lt;del&gt;LU-1014&lt;/del&gt;&lt;/a&gt; mountconf: MGS should process parameter config (Revision 6cde8692384a1d3a6d0e8114629fa943c951fe40)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-dev.git;a=shortlog;h=refs/heads/$GIT_BRANCH&amp;amp;a=commit&amp;amp;h=6cde8692384a1d3a6d0e8114629fa943c951fe40&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;6cde8692384a1d3a6d0e8114629fa943c951fe40&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mgc/mgc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/obd_mount.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="37649" author="hudson" created="Wed, 2 May 2012 15:19:41 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-dev/./arch=x86_64,build_type=server,distro=el5,ib_stack=inkernel/340/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-dev &#187; x86_64,server,el5,inkernel #340&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1014&quot; title=&quot;MGS with sys.timeout is ignored and if sys.timeout is changed its not synced across the file system.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1014&quot;&gt;&lt;del&gt;LU-1014&lt;/del&gt;&lt;/a&gt; mountconf: MGS should process parameter config (Revision 6cde8692384a1d3a6d0e8114629fa943c951fe40)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-dev.git;a=shortlog;h=refs/heads/$GIT_BRANCH&amp;amp;a=commit&amp;amp;h=6cde8692384a1d3a6d0e8114629fa943c951fe40&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;6cde8692384a1d3a6d0e8114629fa943c951fe40&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mgc/mgc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/obd_mount.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="37946" author="hudson" created="Wed, 2 May 2012 15:37:29 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-dev/./arch=x86_64,build_type=client,distro=el6,ib_stack=inkernel/340/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-dev &#187; x86_64,client,el6,inkernel #340&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1014&quot; title=&quot;MGS with sys.timeout is ignored and if sys.timeout is changed its not synced across the file system.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1014&quot;&gt;&lt;del&gt;LU-1014&lt;/del&gt;&lt;/a&gt; mountconf: MGS should process parameter config (Revision 6cde8692384a1d3a6d0e8114629fa943c951fe40)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-dev.git;a=shortlog;h=refs/heads/$GIT_BRANCH&amp;amp;a=commit&amp;amp;h=6cde8692384a1d3a6d0e8114629fa943c951fe40&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;6cde8692384a1d3a6d0e8114629fa943c951fe40&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/obd_mount.c&lt;/li&gt;
	&lt;li&gt;lustre/mgc/mgc_request.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="38255" author="bogl" created="Mon, 7 May 2012 17:48:22 +0000"  >&lt;p&gt;&lt;a href=&quot;http://review.whamcloud.com/#change,2667&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#change,2667&lt;/a&gt;&lt;br/&gt;
back port to b2_1&lt;/p&gt;</comment>
                            <comment id="38437" author="adilger" created="Wed, 9 May 2012 14:58:44 +0000"  >&lt;p&gt;There is some concern that this patch is causing breakage on the Orion branch, and may be fundamentally incorrect, per comments in ORI-651.   Since this problem is longstanding and has never been reported in production, I would prefer that this patch be reverted from b2_1 until there is a more thorough understanding of the issue. &lt;/p&gt;</comment>
                            <comment id="38441" author="behlendorf" created="Wed, 9 May 2012 15:08:26 +0000"  >&lt;p&gt;I believe we need to reopen this bug and revisit this issue.  After this patch was applied I am now encountering the following issue which causes the MGS to crash when mounted, ORI-651.&lt;/p&gt;

&lt;p&gt;Now leaving aside the bag paging request which is clearly just a a use-after-free bug in the initial patch.  The more that I started looking at this the more I&apos;m convinced this patch needs to be reverted and reworked.  I say that because the current implementation is at odds with my understanding of the Lustre MGS architecture (correct me if I&apos;m wrong about this).&lt;/p&gt;

&lt;p&gt;But this patch expects the MGS service name to include the filesystem name (&amp;lt;fsname&amp;gt;-MGS). However, until the Lustre clients support connecting to multiple MGSs that&apos;s impossible since the MGS is a resource which is shared between multiple filesystems.  This change needs to be reworked to cleanly handle the multiple filesystem case.&lt;/p&gt;</comment>
                            <comment id="38450" author="adilger" created="Wed, 9 May 2012 16:25:07 +0000"  >&lt;p&gt;Also note that reverting &lt;a href=&quot;http://review.whamcloud.com/2139&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/2139&lt;/a&gt; from orion resolves the crash seen in ORI-651.&lt;/p&gt;</comment>
                            <comment id="38496" author="tappro" created="Thu, 10 May 2012 00:56:49 +0000"  >&lt;p&gt;Please refer to ORI-662 instead of ORI-651. The key issue is separate MGS setup, which has no ldd_fsname, so param log has name &apos;-params&apos; and things are not working as expected.&lt;/p&gt;

&lt;p&gt;ORI-651 has normal names and the only issue there is memory access which looks like Orion-side issue.&lt;/p&gt;</comment>
                            <comment id="38500" author="tappro" created="Thu, 10 May 2012 01:26:02 +0000"  >&lt;p&gt;No, memory issue is not Orion-related, there is clear use-after-free case in original patch, check &apos;logname&apos; is used being freed:&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;+                OBD_FREE(logname, MGS_PARAM_MAXLEN);
+                &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (rc) {
+                        CERROR(&lt;span class=&quot;code-quote&quot;&gt;&quot;failed to process parameters %s: %d\n&quot;&lt;/span&gt;,
+                               logname, rc);
+                        GOTO(out_mnt, rc);
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;That causing issues we&apos;ve seen, and there is still issue about separate MGS case with no fsname&lt;/p&gt;</comment>
                            <comment id="38523" author="tappro" created="Thu, 10 May 2012 09:36:47 +0000"  >&lt;p&gt;Another question about this patch is about fsname-params log processing:&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;else&lt;/span&gt; &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (IS_MGS(lsi-&amp;gt;lsi_ldd) &amp;amp;&amp;amp;
+                   !(lsi-&amp;gt;lsi_lmd-&amp;gt;lmd_flags &amp;amp; LMD_FLG_NOMGS)){
+                struct config_llog_instance cfg;
+                &lt;span class=&quot;code-object&quot;&gt;char&lt;/span&gt; *logname;
+
+                OBD_ALLOC(logname, MGS_PARAM_MAXLEN);
+                &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (logname == NULL)
+                        GOTO(out_mnt, rc = -ENOMEM);
+                strcpy(logname, lsi-&amp;gt;lsi_ldd-&amp;gt;ldd_fsname);
+                strcat(logname, &lt;span class=&quot;code-quote&quot;&gt;&quot;-params&quot;&lt;/span&gt;);
+
+                memset(&amp;amp;cfg, 0, sizeof(cfg));
+                rc = lustre_process_log(sb, logname, &amp;amp;cfg);
+                OBD_FREE(logname, MGS_PARAM_MAXLEN);
+                &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (rc) {
+                        CERROR(&lt;span class=&quot;code-quote&quot;&gt;&quot;failed to process parameters %s: %d\n&quot;&lt;/span&gt;,
+                               logname, rc);
+                        GOTO(out_mnt, rc);
+                }
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;so it is processed only on MGS, second condition should be always true as well, because MGS cannot be with NOMGS flag I suppose, at least that sounds strange. But we don&apos;t need params processing on MGS, it should be processed on every node except MGS, right?&lt;/p&gt;

&lt;p&gt;I didn&apos;t notice that during inspection, sorry.&lt;/p&gt;</comment>
                            <comment id="38542" author="simmonsja" created="Thu, 10 May 2012 11:49:38 +0000"  >&lt;p&gt;I believe the flag is needed as well because IS_MGS(..) could equal IS_MDS(..). I discovered this bug when the MGS and MDS were separate servers thus they didn&apos;t share the same llogs. Yes we do need params processing so that when for example the timeout is changed on the system it gets set on the MGS as well.&lt;/p&gt;</comment>
                            <comment id="38602" author="laisiyao" created="Fri, 11 May 2012 00:05:31 +0000"  >&lt;p&gt;This is actually a MGS design issue: MGS allows to be shared by multiple filesystems, and it will create a &amp;lt;profile&amp;gt;-params for each filesystem, besides, MGS will create a lustre-params by default (the name &apos;lustre&apos; is written into mountdata by mkfs.lustre by default, and that should be why ORION code can&apos;t find this llog config). In my previous patch MGC on MGS will enqueue lustre-params config lock, but sys.timeout won&apos;t be synced if filesystem name is not &apos;lustre&apos;. And I don&apos;t know how this can work if MGS holds llog configs of several filesystems with different sys.timeout.&lt;/p&gt;

&lt;p&gt;Any comment is welcome!&lt;/p&gt;</comment>
                            <comment id="38604" author="adilger" created="Fri, 11 May 2012 00:53:01 +0000"  >&lt;p&gt;Some notes:&lt;/p&gt;
&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;it probably would make sense to remove &quot;lustre&quot; as the default filesystem name.  The admin should specify a proper filesystem name for any filesystem, and mkfs.lustre should fail if it is not specified, along with updating man pages and usage() output.  We&apos;ve already had reports of a site having two filesystems with the same name.  That should be done in a separate bug.&lt;/li&gt;
	&lt;li&gt;There should not be any harm to have a larger timeout on the MGS than the rest of the filesystem, since at worst the clients will be pinging the MGS more frequently than it expects.  In this regard, the MGS could check all of the configuration files, and only &lt;em&gt;increase&lt;/em&gt; the timeout to the maximum one found in &lt;em&gt;any&lt;/em&gt; config log.&lt;/li&gt;
	&lt;li&gt;A more important question is to understand what the MGS uses timeouts for at all?  Is this only to evict stale clients?  I suspect the reason we haven&apos;t seen this problem very much is that the timeout in the config log is rarely changed to be more than 4x the timeout (the server allows clients to miss 4 pings before evicting).  If this is just the timeout, it might make sense to have the MGS just track the average ping interval from the client, and only evict the client if it misses 4x the average ping interval?    The benefit is that the MGS doesn&apos;t need to parse the different obd_timeouts at all.  The drawback is that this is extra code and runtime overhead and it allows stale clients to linger a bit longer, though if there are DLM callback timeouts the client will still be evicted.&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="38737" author="tappro" created="Mon, 14 May 2012 12:34:31 +0000"  >&lt;p&gt;&amp;gt; I believe the flag is needed as well because IS_MGS(..) could equal IS_MDS(..).&lt;/p&gt;

&lt;p&gt;James, IS_MGS() checks just LDD_F_SV_TYPE_MGS flag is set, you are right, it is true for combined MGS+MDT but in that case there can&apos;t be LMD_FLG_NOMGS, because there is MGS combined with MDT. Another issue with patch is &apos;else if&apos;, as I can see that check will be just skipped if first condition was true.&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;1828         &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (!(lsi-&amp;gt;lsi_lmd-&amp;gt;lmd_flags &amp;amp; LMD_FLG_NOSVC) &amp;amp;&amp;amp;
1829                 (IS_OST(lsi-&amp;gt;lsi_ldd) || IS_MDT(lsi-&amp;gt;lsi_ldd))) {
1830                 rc = server_start_targets(sb, mnt);

&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;So with combined MDT+MGS this check is true and MDT service will be started but &apos;else if&apos; will not be even checked, so that code under &apos;else if&apos; will work only for separate MGS. But I thought we need params processing on other nodes too?&lt;/p&gt;

&lt;p&gt;Also I don&apos;t agree we have to change MGS parameters along with filesystem params, just because MGS is shared. Probably MGS params should be set separately and stored somewhere in mgs-params config which contains just MGS params?&lt;/p&gt;</comment>
                            <comment id="39124" author="simmonsja" created="Mon, 21 May 2012 09:20:28 +0000"  >&lt;p&gt;New patch at &lt;a href=&quot;http://review.whamcloud.com/#change,2843&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#change,2843&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I just tested the new patch. No regressions, and worked properly as expected on my end. Thank you. Now to see if ORI 651 still crashes for Livermore.&lt;/p&gt;</comment>
                            <comment id="39418" author="simmonsja" created="Fri, 25 May 2012 13:58:51 +0000"  >&lt;p&gt;The patch behaves as expected except for one thing which appears to be a lctl bug. I logged into the MGS to make sure it is not a pdsh issue.&lt;/p&gt;

&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;root@tick-mgs1 ~&amp;#93;&lt;/span&gt;# lctl get_param timeout&lt;br/&gt;
timeout=150&lt;br/&gt;
&lt;span class=&quot;error&quot;&gt;&amp;#91;root@tick-mgs1 ~&amp;#93;&lt;/span&gt;# lctl conf_param lustre.sys.timeout=70 &lt;br/&gt;
&lt;span class=&quot;error&quot;&gt;&amp;#91;root@tick-mgs1 ~&amp;#93;&lt;/span&gt;# lctl get_param timeout&lt;br/&gt;
timeout=150&lt;br/&gt;
&lt;span class=&quot;error&quot;&gt;&amp;#91;root@tick-mgs1 ~&amp;#93;&lt;/span&gt;# lctl conf_param lustre.sys.timeout=70&lt;br/&gt;
&lt;span class=&quot;error&quot;&gt;&amp;#91;root@tick-mgs1 ~&amp;#93;&lt;/span&gt;# lctl get_param timeout&lt;br/&gt;
timeout=150&lt;/p&gt;

&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;root@tick-mgs1 lustre&amp;#93;&lt;/span&gt;# cat /proc/sys/lustre/timeout &lt;br/&gt;
150&lt;br/&gt;
&lt;span class=&quot;error&quot;&gt;&amp;#91;root@tick-mgs1 lustre&amp;#93;&lt;/span&gt;# echo &quot;70&quot; &amp;gt; /proc/sys/lustre/timeout &lt;br/&gt;
&lt;span class=&quot;error&quot;&gt;&amp;#91;root@tick-mgs1 lustre&amp;#93;&lt;/span&gt;# cat /proc/sys/lustre/timeout &lt;br/&gt;
70&lt;br/&gt;
&lt;span class=&quot;error&quot;&gt;&amp;#91;root@tick-mgs1 lustre&amp;#93;&lt;/span&gt;# lctl get_param timeout&lt;br/&gt;
timeout=70&lt;/p&gt;

&lt;p&gt;As you can see something strange is going on with the lctl command. Also the first time you change the value with lctl it appears to work but after that it doesn&apos;t anymore.&lt;/p&gt;


</comment>
                            <comment id="39429" author="adilger" created="Fri, 25 May 2012 18:51:30 +0000"  >&lt;p&gt;That is because the previous timeout parameter to set the value to 150 is still in the config log, and sets the &quot;obd_timeout_set&quot; switch, and later entries in the log with lower values are ignored.  Since it is not typical to twiddle with the MGS timeouts, you can still use &quot;lctl set_param timeout=70&quot; on the MGS (instead of &quot;lctl conf_param&quot;) and it should still temporarily override the MGS obd_timeout value it got from the config log.&lt;/p&gt;</comment>
                            <comment id="43141" author="simmonsja" created="Mon, 13 Aug 2012 15:14:57 +0000"  >&lt;p&gt;I have been using the patch at &lt;a href=&quot;http://review.whamcloud.com/#change,2881&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#change,2881&lt;/a&gt; with great success for some time.&lt;/p&gt;</comment>
                            <comment id="43639" author="adilger" created="Wed, 22 Aug 2012 12:50:23 +0000"  >&lt;p&gt;Move to 2.3/2.4, since the patch landed to 2.1/2.2 was later reverted.&lt;/p&gt;</comment>
                            <comment id="43750" author="pjones" created="Fri, 24 Aug 2012 16:28:03 +0000"  >&lt;p&gt;Landed for 2.3 and 2.4&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10011">
                    <name>Related</name>
                                                                <inwardlinks description="is related to">
                                                        </inwardlinks>
                                    </issuelinktype>
                    </issuelinks>
                <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                                                                            <customfield id="customfield_10890" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10390" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hzv5tr:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10090" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>4478</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_10060" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                        <customfieldname>Severity</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10022"><![CDATA[3]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                        </customfields>
    </item>
</channel>
</rss>