[Ocfs2-devel] [PATCH] ocfs2: break useless while loop
Joel Becker
jlbec at evilplan.org
Tue Aug 14 23:37:41 PDT 2012
On Wed, Jul 11, 2012 at 02:49:56PM +0800, Junxiao Bi wrote:
> Signed-off-by: Junxiao Bi <junxiao.bi at oracle.com>
This patch is now part of the fixes branch of ocfs2.git.
Joel
> ---
> fs/ocfs2/dlm/dlmmaster.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/fs/ocfs2/dlm/dlmmaster.c b/fs/ocfs2/dlm/dlmmaster.c
> index 005261c..1fadc39 100644
> --- a/fs/ocfs2/dlm/dlmmaster.c
> +++ b/fs/ocfs2/dlm/dlmmaster.c
> @@ -1888,8 +1888,10 @@ ok:
> * up nodes that this node contacted */
> while ((nn = find_next_bit (mle->response_map, O2NM_MAX_NODES,
> nn+1)) < O2NM_MAX_NODES) {
> - if (nn != dlm->node_num && nn != assert->node_idx)
> + if (nn != dlm->node_num && nn != assert->node_idx) {
> master_request = 1;
> + break;
> + }
> }
> }
> mle->master = assert->node_idx;
> --
> 1.7.9.5
>
--
"I think it would be a good idea."
- Mahatma Ghandi, when asked what he thought of Western
civilization
http://www.jlbec.org/
jlbec at evilplan.org
More information about the Ocfs2-devel
mailing list