From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755886Ab0CITOX (ORCPT ); Tue, 9 Mar 2010 14:14:23 -0500 Received: from server109.appriver.com ([72.32.253.84]:1375 "EHLO server109.appriver.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755809Ab0CITOV (ORCPT ); Tue, 9 Mar 2010 14:14:21 -0500 X-Policy: GLOBAL - intcomgrp.com X-Primary: jkosin@intcomgrp.com X-Note: This Email was scanned by AppRiver SecureTide X-ALLOW: JKosin@intcomgrp.com ALLOWED X-Virus-Scan: V- X-Note: Spam Tests Failed: X-Country-Path: PRIVATE->UNITED STATES->UNITED STATES X-Note-Sending-IP: 216.54.13.100 X-Note-Reverse-DNS: mail.intcomgrp.com X-Note-WHTLIST: JKosin@intcomgrp.com X-Note: User Rule Hits: X-Note: Global Rule Hits: G179 G180 G181 G182 G186 G187 G198 G285 X-Note: Encrypt Rule Hits: X-Note: Mail Class: ALLOWEDSENDER X-Note: Headers Injected Message-ID: <4B969E8E.4070002@intcomgrp.com> Date: Tue, 09 Mar 2010 14:16:30 -0500 From: James Kosin User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.8) Gecko/20100227 Lightning/1.0b1 Thunderbird/3.0.3 MIME-Version: 1.0 To: linux-kernel@vger.kernel.org Subject: Re: [PATCH] Security: key: keyring: fix code style issues References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 09 Mar 2010 19:16:30.0148 (UTC) FILETIME=[05DB9040:01CABFBD] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 3/9/2010 2:10 PM, Chihau Chau wrote: > From: Chihau Chau > > This fixes to include instead and some > code style issues like to put a else sentence below close brace '}' and > to replace a tab instead of some space characters. > > Signed-off-by: Chihau Chau Reviewed-by: James Kosin > --- > security/keys/keyring.c | 10 ++++------ > 1 files changed, 4 insertions(+), 6 deletions(-) > > diff --git a/security/keys/keyring.c b/security/keys/keyring.c > index e814d21..d8b5d5e 100644 > --- a/security/keys/keyring.c > +++ b/security/keys/keyring.c > @@ -17,7 +17,7 @@ > #include > #include > #include > -#include > +#include > #include "internal.h" > > /* > @@ -172,8 +172,7 @@ static void keyring_describe(const struct key *keyring, struct seq_file *m) > > if (keyring->description) { > seq_puts(m, keyring->description); > - } > - else { > + } else { > seq_puts(m, "[anon]"); > } > > @@ -306,7 +305,7 @@ key_ref_t keyring_search_aux(key_ref_t keyring_ref, > key_check(keyring); > > /* top keyring must have search permission to begin the search */ > - err = key_task_permission(keyring_ref, cred, KEY_SEARCH); > + err = key_task_permission(keyring_ref, cred, KEY_SEARCH); > if (err < 0) { > key_ref = ERR_PTR(err); > goto error; > @@ -775,8 +774,7 @@ int __key_link(struct key *keyring, struct key *key) > smp_wmb(); > klist->nkeys++; > smp_wmb(); > - } > - else { > + } else { > /* grow the key list */ > max = 4; > if (klist)