<font size=2 face="sans-serif">I am terrible sorry for brought inconvenience
for you because of my wrong operition.I </font>
<br><font size=2 face="sans-serif">have fix this wrong. Excuse me for my
 unintentional fault!<br>
</font>
<br><font size=3> </font>
<p><font size=2 color=#5f5f5f face="微软雅黑">周桂春  </font><font size=2 color=#5f5f5f face="Arial">Zhou
GuiChun</font>
<p><font size=1 color=#5f5f5f face="微软雅黑">软件开发  </font><font size=1 color=#5f5f5f face="Arial">SoftWare
Development</font><font size=1 color=#5f5f5f face="微软雅黑"><br>
虚拟化长沙开发部  </font><font size=1 color=#5f5f5f face="Arial">NIV
Changsha Development Dept</font>
<p>
<table>
<tr valign=top>
<td><img src=cid:_1_0B596DC80B596860000AE6D748258059>
<td><img src=cid:_1_0B59720C0B596FCC000AE6D748258059><font size=1 color=#5f5f5f face="微软雅黑"><br>
湖南省长沙市岳麓区尖山路39号中电软件园八楼</font><font size=1 color=#5f5f5f face="Arial"><br>
</font><font size=1 color=#00a1e0 face="Arial"><br>
T</font><font size=1 color=#5f5f5f face="Arial">: +86 731-82057106  
 </font><font size=1 color=#00a1e0 face="Arial">M</font><font size=1 color=#5f5f5f face="Arial">:
+86 13657402573</font><font size=1 color=#00a1e0 face="Arial"><br>
E</font><font size=1 color=#5f5f5f face="Arial">: zhou.guichun@zte.com.cn</font><font size=1 color=blue face="Arial"><u><br>
</u></font><a href=http://www.zte.com.cn/><font size=1 color=#00a1e0 face="Arial"><u>www.zte.com.cn</u></font></a></table>
<br>
<br>
<br>
<br>
<br><font size=1 color=#5f5f5f face="sans-serif">发件人:    
    </font><font size=1 face="sans-serif">Xose Vazquez
Perez <xose.vazquez@gmail.com></font>
<br><font size=1 color=#5f5f5f face="sans-serif">收件人:    
    </font><font size=1 face="sans-serif">zhou.guichun@zte.com.cn,
10184522@zte.com.cn, 10072500@zte.com.cn, 10074136@zte.com.cn, </font>
<br><font size=1 color=#5f5f5f face="sans-serif">抄送:    
   </font><font size=1 face="sans-serif">Benjamin Marzinski
<bmarzins@redhat.com>, Hannes Reinecke <hare@suse.de>, Christophe
Varoqui <christophe.varoqui@opensvc.com>, device-mapper development
<dm-devel@redhat.com></font>
<br><font size=1 color=#5f5f5f face="sans-serif">日期:    
    </font><font size=1 face="sans-serif">2016/10/27
03:17</font>
<br><font size=1 color=#5f5f5f face="sans-serif">主题:    
   </font><font size=1 face="sans-serif">Re: [PATCH 1/2]
multipath-tools: replace static and define default values for config options</font>
<br>
<hr noshade>
<br>
<br>
<br><tt><font size=2>On 10/26/2016 04:33 AM, zhou.guichun@zte.com.cn wrote:<br>
> From: Xose Vazquez Perez <xose.vazquez@gmail.com><br>
<br>
This patch already was applied: </font></tt><a href="http://git.opensvc.com/gitweb.cgi?p=multipath-tools/.git;a=commitdiff;h=906c098284afc9573d710ba25580b6919352a3ff"><tt><font size=2>http://git.opensvc.com/gitweb.cgi?p=multipath-tools/.git;a=commitdiff;h=906c098284afc9573d710ba25580b6919352a3ff</font></tt></a><tt><font size=2><br>
This looks like an internal e-mail, please fix your mailer.<br>
<br>
> Replace "const" by PRIO_CONST.<br>
> Replace static force_sync and partition_delim values, and define<br>
> DEFAULT_FORCE_SYNC and DEFAULT_PARTITION_DELIM<br>
> <br>
> Cc: Benjamin Marzinski <bmarzins@redhat.com><br>
> Cc: Hannes Reinecke <hare@suse.de><br>
> Cc: Christophe Varoqui <christophe.varoqui@opensvc.com><br>
> Cc: device-mapper development <dm-devel@redhat.com><br>
> Signed-off-by: Xose Vazquez Perez <xose.vazquez@gmail.com><br>
> ---<br>
>  libmultipath/config.c   | 4 ++--<br>
>  libmultipath/defaults.h | 4 +++-<br>
>  2 files changed, 5 insertions(+), 3 deletions(-)<br>
> <br>
> diff --git a/libmultipath/config.c b/libmultipath/config.c<br>
> index 92e4deb..ed51afb 100644<br>
> --- a/libmultipath/config.c<br>
> +++ b/libmultipath/config.c<br>
> @@ -606,8 +606,8 @@ load_config (char * file)<br>
>                  
conf->fast_io_fail = DEFAULT_FAST_IO_FAIL;<br>
>                  
conf->retain_hwhandler = DEFAULT_RETAIN_HWHANDLER;<br>
>                  
conf->detect_prio = DEFAULT_DETECT_PRIO;<br>
> -                
conf->force_sync = 0;<br>
> -                
conf->partition_delim = NULL;<br>
> +                
conf->force_sync = DEFAULT_FORCE_SYNC;<br>
> +                
conf->partition_delim = DEFAULT_PARTITION_DELIM;<br>
>                  
conf->processed_main_config = 0;<br>
>                  
conf->find_multipaths = DEFAULT_FIND_MULTIPATHS;<br>
>                  
conf->uxsock_timeout = DEFAULT_REPLY_TIMEOUT;<br>
> diff --git a/libmultipath/defaults.h b/libmultipath/defaults.h<br>
> index e9581a6..9af9a9a 100644<br>
> --- a/libmultipath/defaults.h<br>
> +++ b/libmultipath/defaults.h<br>
> @@ -28,11 +28,13 @@<br>
>  #define DEFAULT_RETRIGGER_DELAY        
        10<br>
>  #define DEFAULT_RETRIGGER_TRIES        
        3<br>
>  #define DEFAULT_UEV_WAIT_TIMEOUT 30<br>
> -#define DEFAULT_PRIO            
               
     "const"<br>
> +#define DEFAULT_PRIO            
               
     PRIO_CONST<br>
>  #define DEFAULT_PRIO_ARGS        
        ""<br>
>  #define DEFAULT_CHECKER        
                 
       TUR<br>
>  #define DEFAULT_FLUSH          
               
       FLUSH_DISABLED<br>
>  #define DEFAULT_USER_FRIENDLY_NAMES USER_FRIENDLY_NAMES_OFF<br>
> +#define DEFAULT_FORCE_SYNC          
      0<br>
> +#define DEFAULT_PARTITION_DELIM        
        NULL<br>
>  <br>
>  #define DEFAULT_CHECKINT        
        5<br>
>  #define MAX_CHECKINT(a)        
                 
       (a << 2)<br>
> <br>
<br>
</font></tt>
<br>