diff options
| author | Alexey Dobriyan <adobriyan@sw.ru> | 2007-10-17 02:30:09 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-17 11:42:58 -0400 |
| commit | 40aeb400f68090f92010920ddf284b672a1461b8 (patch) | |
| tree | 1faa00908be014cd6fd7cf77665fd6f1a3e4df8a | |
| parent | b1e7a4b1bb76f451991112f07a8723eea9d07aa6 (diff) | |
user.c: deinline
Save some space because uid_hash_find() has 3 callsites.
Signed-off-by: Alexey Dobriyan <adobriyan@sw.ru>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
| -rw-r--r-- | kernel/user.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/kernel/user.c b/kernel/user.c index f0e561e6d085..f42a68e008fd 100644 --- a/kernel/user.c +++ b/kernel/user.c | |||
| @@ -58,19 +58,17 @@ struct user_struct root_user = { | |||
| 58 | /* | 58 | /* |
| 59 | * These routines must be called with the uidhash spinlock held! | 59 | * These routines must be called with the uidhash spinlock held! |
| 60 | */ | 60 | */ |
| 61 | static inline void uid_hash_insert(struct user_struct *up, | 61 | static void uid_hash_insert(struct user_struct *up, struct hlist_head *hashent) |
| 62 | struct hlist_head *hashent) | ||
| 63 | { | 62 | { |
| 64 | hlist_add_head(&up->uidhash_node, hashent); | 63 | hlist_add_head(&up->uidhash_node, hashent); |
| 65 | } | 64 | } |
| 66 | 65 | ||
| 67 | static inline void uid_hash_remove(struct user_struct *up) | 66 | static void uid_hash_remove(struct user_struct *up) |
| 68 | { | 67 | { |
| 69 | hlist_del_init(&up->uidhash_node); | 68 | hlist_del_init(&up->uidhash_node); |
| 70 | } | 69 | } |
| 71 | 70 | ||
| 72 | static inline struct user_struct *uid_hash_find(uid_t uid, | 71 | static struct user_struct *uid_hash_find(uid_t uid, struct hlist_head *hashent) |
| 73 | struct hlist_head *hashent) | ||
| 74 | { | 72 | { |
| 75 | struct user_struct *user; | 73 | struct user_struct *user; |
| 76 | struct hlist_node *h; | 74 | struct hlist_node *h; |
