Commit 1ae8f407 authored by Adrian Bunk's avatar Adrian Bunk Committed by Linus Torvalds

[PATCH] security/: possible cleanups

make needlessly global code static
Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
Cc: David Howells <dhowells@redhat.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 8d9067bd
...@@ -25,7 +25,6 @@ ...@@ -25,7 +25,6 @@
#define kdebug(FMT, a...) do {} while(0) #define kdebug(FMT, a...) do {} while(0)
#endif #endif
extern struct key_type key_type_dead;
extern struct key_type key_type_user; extern struct key_type key_type_user;
/*****************************************************************************/ /*****************************************************************************/
......
...@@ -36,7 +36,7 @@ static DECLARE_WORK(key_cleanup_task, key_cleanup, NULL); ...@@ -36,7 +36,7 @@ static DECLARE_WORK(key_cleanup_task, key_cleanup, NULL);
DECLARE_RWSEM(key_construction_sem); DECLARE_RWSEM(key_construction_sem);
/* any key who's type gets unegistered will be re-typed to this */ /* any key who's type gets unegistered will be re-typed to this */
struct key_type key_type_dead = { static struct key_type key_type_dead = {
.name = "dead", .name = "dead",
}; };
......
...@@ -68,7 +68,7 @@ struct key_type key_type_keyring = { ...@@ -68,7 +68,7 @@ struct key_type key_type_keyring = {
* semaphore to serialise link/link calls to prevent two link calls in parallel * semaphore to serialise link/link calls to prevent two link calls in parallel
* introducing a cycle * introducing a cycle
*/ */
DECLARE_RWSEM(keyring_serialise_link_sem); static DECLARE_RWSEM(keyring_serialise_link_sem);
/*****************************************************************************/ /*****************************************************************************/
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment