From 9af910a25286d76590c3f066b43468bb9236e38a Mon Sep 17 00:00:00 2001 From: Andrew Morton Date: Wed, 27 Mar 2013 10:26:19 +1100 Subject: [PATCH] aio-refcounting-cleanup-checkpatch-fixes ERROR: space required before the open brace '{' #330: FILE: fs/aio.c:632: + if (ctx->user_id == ctx_id){ total: 1 errors, 0 warnings, 395 lines checked ./patches/aio-refcounting-cleanup.patch has style problems, please review. If any of these errors are false positives, please report them to the maintainer, see CHECKPATCH in MAINTAINERS. Please run checkpatch prior to sending patches Cc: Kent Overstreet Signed-off-by: Andrew Morton --- fs/aio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/aio.c b/fs/aio.c index 71fd6a977506..80cfbad34e12 100644 --- a/fs/aio.c +++ b/fs/aio.c @@ -630,7 +630,7 @@ static struct kioctx *lookup_ioctx(unsigned long ctx_id) rcu_read_lock(); hlist_for_each_entry_rcu(ctx, &mm->ioctx_list, list) { - if (ctx->user_id == ctx_id){ + if (ctx->user_id == ctx_id) { atomic_inc(&ctx->users); ret = ctx; break; -- 2.39.5