diff options
author | David Howells <dhowells@redhat.com> | 2011-01-20 11:38:27 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-01-21 17:59:29 -0500 |
commit | a8b17ed019bd40d3bfa20439d9c36a99f9be9180 (patch) | |
tree | beb3b08575aa01c7ebb24939b678d533b1f59adf /security/keys/permission.c | |
parent | 9093ba53b7f26dbb5210de1157769e59e34bbe23 (diff) |
KEYS: Do some style cleanup in the key management code.
Do a bit of a style clean up in the key management code. No functional
changes.
Done using:
perl -p -i -e 's!^/[*]*/\n!!' security/keys/*.c
perl -p -i -e 's!} /[*] end [a-z0-9_]*[(][)] [*]/\n!}\n!' security/keys/*.c
sed -i -s -e ": next" -e N -e 's/^\n[}]$/}/' -e t -e P -e 's/^.*\n//' -e "b next" security/keys/*.c
To remove /*****/ lines, remove comments on the closing brace of a
function to name the function and remove blank lines before the closing
brace of a function.
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'security/keys/permission.c')
-rw-r--r-- | security/keys/permission.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/security/keys/permission.c b/security/keys/permission.c index 28645502cd0d..6284b1496c29 100644 --- a/security/keys/permission.c +++ b/security/keys/permission.c | |||
@@ -13,7 +13,6 @@ | |||
13 | #include <linux/security.h> | 13 | #include <linux/security.h> |
14 | #include "internal.h" | 14 | #include "internal.h" |
15 | 15 | ||
16 | /*****************************************************************************/ | ||
17 | /** | 16 | /** |
18 | * key_task_permission - Check a key can be used | 17 | * key_task_permission - Check a key can be used |
19 | * @key_ref: The key to check | 18 | * @key_ref: The key to check |
@@ -79,12 +78,10 @@ use_these_perms: | |||
79 | 78 | ||
80 | /* let LSM be the final arbiter */ | 79 | /* let LSM be the final arbiter */ |
81 | return security_key_permission(key_ref, cred, perm); | 80 | return security_key_permission(key_ref, cred, perm); |
82 | 81 | } | |
83 | } /* end key_task_permission() */ | ||
84 | 82 | ||
85 | EXPORT_SYMBOL(key_task_permission); | 83 | EXPORT_SYMBOL(key_task_permission); |
86 | 84 | ||
87 | /*****************************************************************************/ | ||
88 | /* | 85 | /* |
89 | * validate a key | 86 | * validate a key |
90 | */ | 87 | */ |
@@ -111,7 +108,6 @@ int key_validate(struct key *key) | |||
111 | 108 | ||
112 | error: | 109 | error: |
113 | return ret; | 110 | return ret; |
114 | 111 | } | |
115 | } /* end key_validate() */ | ||
116 | 112 | ||
117 | EXPORT_SYMBOL(key_validate); | 113 | EXPORT_SYMBOL(key_validate); |