Commit 40aeb400 authored by Alexey Dobriyan's avatar Alexey Dobriyan Committed by Linus Torvalds

user.c: deinline

Save some space because uid_hash_find() has 3 callsites.
Signed-off-by: default avatarAlexey Dobriyan <adobriyan@sw.ru>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent b1e7a4b1
...@@ -58,19 +58,17 @@ struct user_struct root_user = { ...@@ -58,19 +58,17 @@ struct user_struct root_user = {
/* /*
* These routines must be called with the uidhash spinlock held! * These routines must be called with the uidhash spinlock held!
*/ */
static inline void uid_hash_insert(struct user_struct *up, static void uid_hash_insert(struct user_struct *up, struct hlist_head *hashent)
struct hlist_head *hashent)
{ {
hlist_add_head(&up->uidhash_node, hashent); hlist_add_head(&up->uidhash_node, hashent);
} }
static inline void uid_hash_remove(struct user_struct *up) static void uid_hash_remove(struct user_struct *up)
{ {
hlist_del_init(&up->uidhash_node); hlist_del_init(&up->uidhash_node);
} }
static inline struct user_struct *uid_hash_find(uid_t uid, static struct user_struct *uid_hash_find(uid_t uid, struct hlist_head *hashent)
struct hlist_head *hashent)
{ {
struct user_struct *user; struct user_struct *user;
struct hlist_node *h; struct hlist_node *h;
......
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