<p dir="ltr">Hi,</p>
<p dir="ltr">2015. 2. 18. 오전 8:30에 &quot;Andrew Morton&quot; &lt;<a href="mailto:akpm@linux-foundation.org">akpm@linux-foundation.org</a>&gt;님이 작성:<br>
&gt;<br>
&gt; On Tue, 17 Feb 2015 16:13:50 +0900 Daeseok Youn &lt;<a href="mailto:daeseok.youn@gmail.com">daeseok.youn@gmail.com</a>&gt; wrote:<br>
&gt;<br>
&gt; &gt; The Local variable &quot;i&quot; in for loop is always less then<br>
&gt; &gt; O2CB_MAP_STABILIZE_COUNT.<br>
&gt; &gt;<br>
&gt; &gt; Signed-off-by: Daeseok Youn &lt;<a href="mailto:daeseok.youn@gmail.com">daeseok.youn@gmail.com</a>&gt;<br>
&gt; &gt; ---<br>
&gt; &gt;  fs/ocfs2/stack_o2cb.c |    4 ++--<br>
&gt; &gt;  1 files changed, 2 insertions(+), 2 deletions(-)<br>
&gt; &gt;<br>
&gt; &gt; diff --git a/fs/ocfs2/stack_o2cb.c b/fs/ocfs2/stack_o2cb.c<br>
&gt; &gt; index 1724d43..813d726 100644<br>
&gt; &gt; --- a/fs/ocfs2/stack_o2cb.c<br>
&gt; &gt; +++ b/fs/ocfs2/stack_o2cb.c<br>
&gt; &gt; @@ -295,8 +295,8 @@ static int o2cb_cluster_check(void)<br>
&gt; &gt;               set_bit(node_num, netmap);<br>
&gt; &gt;               if (!memcmp(hbmap, netmap, sizeof(hbmap)))<br>
&gt; &gt;                       return 0;<br>
&gt; &gt; -             if (i &lt; O2CB_MAP_STABILIZE_COUNT)<br>
&gt; &gt; -                     msleep(1000);<br>
&gt; &gt; +<br>
&gt; &gt; +             msleep(1000);<br>
&gt; &gt;       }<br>
&gt;<br>
&gt; I assume the code was intended to do<br>
&gt;<br>
&gt;         if (i &lt; O2CB_MAP_STABILIZE_COUNT - 1)<br>
&gt;                 msleep(1000);<br>
&gt;<br>
&gt; to avoid a pointless 1-second delay when the operation times out.</p>
<p dir="ltr">Ok. I will send this patch after makes it as your comment.</p>
<p dir="ltr">Thanks.<br>
Regards,<br>
Daeseok Youn<br>
</p>