* [PATCH] Security: key: keyring: fix some code style issues
@ 2010-03-08 23:11 Chihau Chau
2010-03-09 21:25 ` David Howells
0 siblings, 1 reply; 7+ messages in thread
From: Chihau Chau @ 2010-03-08 23:11 UTC (permalink / raw)
To: jmorris
Cc: dhowells, paulmck, mingo, linux-security-module, linux-kernel,
Chihau Chau
From: Chihau Chau <chihau@gmail.com>
This fixes to include <linux/uaccess.h> instead <asm/uaccess.h> 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 <chihau@gmail.com>
---
security/keys/keyring.c | 7 +++----
1 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/security/keys/keyring.c b/security/keys/keyring.c
index e814d21..840be66 100644
--- a/security/keys/keyring.c
+++ b/security/keys/keyring.c
@@ -17,7 +17,7 @@
#include <linux/seq_file.h>
#include <linux/err.h>
#include <keys/keyring-type.h>
-#include <asm/uaccess.h>
+#include <linux/uaccess.h>
#include "internal.h"
/*
@@ -306,7 +306,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 +775,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)
--
1.5.6.3
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH] Security: key: keyring: fix some code style issues
[not found] <elUoX-6na-35@gated-at.bofh.it>
@ 2010-03-09 16:44 ` James Kosin
2010-03-09 17:01 ` Chihau Chau
0 siblings, 1 reply; 7+ messages in thread
From: James Kosin @ 2010-03-09 16:44 UTC (permalink / raw)
To: linux-kernel
On 3/8/2010 6:20 PM, Chihau Chau wrote:
> From: Chihau Chau <chihau@gmail.com>
>
> This fixes to include <linux/uaccess.h> instead <asm/uaccess.h> 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 <chihau@gmail.com>
> ---
> security/keys/keyring.c | 7 +++----
> 1 files changed, 3 insertions(+), 4 deletions(-)
>
> diff --git a/security/keys/keyring.c b/security/keys/keyring.c
> index e814d21..840be66 100644
> --- a/security/keys/keyring.c
> +++ b/security/keys/keyring.c
> @@ -17,7 +17,7 @@
> #include <linux/seq_file.h>
> #include <linux/err.h>
> #include <keys/keyring-type.h>
> -#include <asm/uaccess.h>
> +#include <linux/uaccess.h>
> #include "internal.h"
>
> /*
> @@ -306,7 +306,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 +775,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)
Chau,
What happened to the other part of the patch to fix the "} else {" above
where you had tried to remove the {} ?
James
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] Security: key: keyring: fix some code style issues
2010-03-09 16:44 ` [PATCH] Security: key: keyring: fix some code style issues James Kosin
@ 2010-03-09 17:01 ` Chihau Chau
[not found] ` <4B9683CF.5040402@intcomgrp.com>
0 siblings, 1 reply; 7+ messages in thread
From: Chihau Chau @ 2010-03-09 17:01 UTC (permalink / raw)
To: James Kosin; +Cc: linux-kernel
You said me that it may introduce a serious BUG later so I have undone
this change.
Regards.
2010/3/9 James Kosin <jkosin@intcomgrp.com>:
> On 3/8/2010 6:20 PM, Chihau Chau wrote:
>> From: Chihau Chau <chihau@gmail.com>
>>
>> This fixes to include <linux/uaccess.h> instead <asm/uaccess.h> 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 <chihau@gmail.com>
>> ---
>> security/keys/keyring.c | 7 +++----
>> 1 files changed, 3 insertions(+), 4 deletions(-)
>>
>> diff --git a/security/keys/keyring.c b/security/keys/keyring.c
>> index e814d21..840be66 100644
>> --- a/security/keys/keyring.c
>> +++ b/security/keys/keyring.c
>> @@ -17,7 +17,7 @@
>> #include <linux/seq_file.h>
>> #include <linux/err.h>
>> #include <keys/keyring-type.h>
>> -#include <asm/uaccess.h>
>> +#include <linux/uaccess.h>
>> #include "internal.h"
>>
>> /*
>> @@ -306,7 +306,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 +775,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)
>
> Chau,
>
> What happened to the other part of the patch to fix the "} else {" above
> where you had tried to remove the {} ?
>
> James
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
>
--
Chihau Chau
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] Security: key: keyring: fix some code style issues
[not found] ` <4B9683CF.5040402@intcomgrp.com>
@ 2010-03-09 17:39 ` Chihau Chau
[not found] ` <4B969026.8040106@intcomgrp.com>
0 siblings, 1 reply; 7+ messages in thread
From: Chihau Chau @ 2010-03-09 17:39 UTC (permalink / raw)
To: James Kosin; +Cc: linux-kernel
Hi James
2010/3/9 James Kosin <jkosin@intcomgrp.com>:
> Chau,
>
> I was talking about removing the braces. The code you pointed to still had
> the style issue of this:
> }
> else {
>
> Where you changed the one below to be:
> } else {
>
This is done in the last patch
> I'm okay with making a change like this. Only don't remove the {} braces.
Yes in the last patch I don't have remove the braces {}
Now, It's everything OK? I will appreciate your councils.
Regards.
>
> James
>
> On 3/9/2010 12:01 PM, Chihau Chau wrote:
>
> You said me that it may introduce a serious BUG later so I have undone
> this change.
>
> Regards.
>
> 2010/3/9 James Kosin <jkosin@intcomgrp.com>:
>
>
> On 3/8/2010 6:20 PM, Chihau Chau wrote:
>
>
> From: Chihau Chau <chihau@gmail.com>
>
> This fixes to include <linux/uaccess.h> instead <asm/uaccess.h> 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 <chihau@gmail.com>
> ---
> security/keys/keyring.c | 7 +++----
> 1 files changed, 3 insertions(+), 4 deletions(-)
>
> diff --git a/security/keys/keyring.c b/security/keys/keyring.c
> index e814d21..840be66 100644
> --- a/security/keys/keyring.c
> +++ b/security/keys/keyring.c
> @@ -17,7 +17,7 @@
> #include <linux/seq_file.h>
> #include <linux/err.h>
> #include <keys/keyring-type.h>
> -#include <asm/uaccess.h>
> +#include <linux/uaccess.h>
> #include "internal.h"
>
> /*
> @@ -306,7 +306,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 +775,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)
>
>
> Chau,
>
> What happened to the other part of the patch to fix the "} else {" above
> where you had tried to remove the {} ?
>
> James
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
>
>
>
>
>
--
Chihau Chau
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] Security: key: keyring: fix some code style issues
[not found] ` <4B969026.8040106@intcomgrp.com>
@ 2010-03-09 18:50 ` Chihau Chau
0 siblings, 0 replies; 7+ messages in thread
From: Chihau Chau @ 2010-03-09 18:50 UTC (permalink / raw)
To: James Kosin; +Cc: linux-kernel
Now I understand. Sorry for my little confusion.
I am making a new patch.
Thanks!
2010/3/9 James Kosin <jkosin@intcomgrp.com>:
> On 3/9/2010 12:39 PM, Chihau Chau wrote:
> Chau,
>
> Below is your original patch set.
>
> From: Chihau Chau <chihau@gmail.com>
>
> This fixes some code style issues like to include <linux/uaccess.h> instead
> <asm/uaccess.h> and to remove some innecessary braces.
>
> Signed-off-by: Chihau Chau <chihau@gmail.com>
> ---
> security/keys/keyring.c | 11 ++++-------
> 1 files changed, 4 insertions(+), 7 deletions(-)
>
> diff --git a/security/keys/keyring.c b/security/keys/keyring.c
> index e814d21..5a44965 100644
> --- a/security/keys/keyring.c
> +++ b/security/keys/keyring.c
> @@ -17,7 +17,7 @@
> #include <linux/seq_file.h>
> #include <linux/err.h>
> #include <keys/keyring-type.h>
> -#include <asm/uaccess.h>
> +#include <linux/uaccess.h>
> #include "internal.h"
>
> /*
> @@ -170,12 +170,10 @@ static void keyring_describe(const struct key
> *keyring, struct seq_file *m)
> {
> struct keyring_list *klist;
>
> - if (keyring->description) {
> + if (keyring->description)
> seq_puts(m, keyring->description);
> - }
> - else {
> + else
> seq_puts(m, "[anon]");
> - }
>
>
> Here is where I said NOT to remove the braces. However you can see the
> style of the if() {} else {} blocks is not the same as below where you point
> to the style of the statements as to the reason for the change.
>
>
> rcu_read_lock();
> klist = rcu_dereference(keyring->payload.subscriptions);
> @@ -775,8 +773,7 @@ int __key_link(struct key *keyring, struct key *key)
> smp_wmb();
> klist->nkeys++;
> smp_wmb();
> - }
> - else {
> + } else {
> /* grow the key list */
> max = 4;
>
>
> See HERE.
>
> if (klist)
> --
> 1.5.6.3
>
> One of these is wrong. Check the coding style document as to which is
> correct.
>
> Sorry to be so critical.
>
> Regards,
> James K.
>
--
Chihau Chau
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] Security: key: keyring: fix some code style issues
2010-03-08 23:11 Chihau Chau
@ 2010-03-09 21:25 ` David Howells
2010-03-09 21:47 ` James Morris
0 siblings, 1 reply; 7+ messages in thread
From: David Howells @ 2010-03-09 21:25 UTC (permalink / raw)
To: Chihau Chau
Cc: dhowells, jmorris, paulmck, mingo, linux-security-module,
linux-kernel
Chihau Chau <chihau@gmail.com> wrote:
> From: Chihau Chau <chihau@gmail.com>
>
> This fixes to include <linux/uaccess.h> instead <asm/uaccess.h> 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 <chihau@gmail.com>
Acked-by: David Howells <dhowells@redhat.com>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] Security: key: keyring: fix some code style issues
2010-03-09 21:25 ` David Howells
@ 2010-03-09 21:47 ` James Morris
0 siblings, 0 replies; 7+ messages in thread
From: James Morris @ 2010-03-09 21:47 UTC (permalink / raw)
To: David Howells
Cc: Chihau Chau, paulmck, mingo, linux-security-module, linux-kernel
On Tue, 9 Mar 2010, David Howells wrote:
> Chihau Chau <chihau@gmail.com> wrote:
>
> > From: Chihau Chau <chihau@gmail.com>
> >
> > This fixes to include <linux/uaccess.h> instead <asm/uaccess.h> 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 <chihau@gmail.com>
>
> Acked-by: David Howells <dhowells@redhat.com>
Applied to
git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6#next
--
James Morris
<jmorris@namei.org>
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2010-03-09 21:47 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <elUoX-6na-35@gated-at.bofh.it>
2010-03-09 16:44 ` [PATCH] Security: key: keyring: fix some code style issues James Kosin
2010-03-09 17:01 ` Chihau Chau
[not found] ` <4B9683CF.5040402@intcomgrp.com>
2010-03-09 17:39 ` Chihau Chau
[not found] ` <4B969026.8040106@intcomgrp.com>
2010-03-09 18:50 ` Chihau Chau
2010-03-08 23:11 Chihau Chau
2010-03-09 21:25 ` David Howells
2010-03-09 21:47 ` James Morris
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).