From: Andrew Morton Date: Tue, 26 Mar 2013 23:26:19 +0000 (+1100) Subject: aio-refcounting-cleanup-checkpatch-fixes X-Git-Tag: next-20130402~2^2~46 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=9af910a25286d76590c3f066b43468bb9236e38a;p=karo-tx-linux.git 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 --- 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;