From mboxrd@z Thu Jan 1 00:00:00 1970 From: waltfeasel@gmail.com (Walt Feasel) Date: Sat, 26 Nov 2016 03:43:23 -0500 Subject: [PATCH 5/7] security: apparmor: apparmorfs.c Align parenthesis In-Reply-To: <1480149805-18736-1-git-send-email-waltfeasel@gmail.com> References: <1480149805-18736-1-git-send-email-waltfeasel@gmail.com> Message-ID: <1480149805-18736-6-git-send-email-waltfeasel@gmail.com> To: kernelnewbies@lists.kernelnewbies.org List-Id: kernelnewbies.lists.kernelnewbies.org Make style modifications for: CHECK: Alignment should match open parenthesis Signed-off-by: Walt Feasel --- Swaps align for over 80 but get whole line this way security/apparmor/apparmorfs.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/security/apparmor/apparmorfs.c b/security/apparmor/apparmorfs.c index d759c78..c8142cf 100644 --- a/security/apparmor/apparmorfs.c +++ b/security/apparmor/apparmorfs.c @@ -647,8 +647,7 @@ static struct aa_profile *__next_profile(struct aa_profile *p) if (!list_entry_is_head(p, &parent->base.profiles, base.list)) return p; p = parent; - parent = rcu_dereference_protected(parent->parent, - mutex_is_locked(&parent->ns->lock)); + parent = rcu_dereference_protected(parent->parent, mutex_is_locked(&parent->ns->lock)); } /* is next another profile in the namespace */ -- 2.1.4