Commit a0f846aa authored by Adrian Bunk's avatar Adrian Bunk Committed by Ingo Molnar

sched: make cpu_shares_{show,store}() static

cpu_shares_{show,store}() can become static.
Signed-off-by: default avatarAdrian Bunk <bunk@kernel.org>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 2b01dfe3
...@@ -129,7 +129,7 @@ static inline void uids_mutex_unlock(void) ...@@ -129,7 +129,7 @@ static inline void uids_mutex_unlock(void)
} }
/* return cpu shares held by the user */ /* return cpu shares held by the user */
ssize_t cpu_shares_show(struct kset *kset, char *buffer) static ssize_t cpu_shares_show(struct kset *kset, char *buffer)
{ {
struct user_struct *up = container_of(kset, struct user_struct, kset); struct user_struct *up = container_of(kset, struct user_struct, kset);
...@@ -137,7 +137,8 @@ ssize_t cpu_shares_show(struct kset *kset, char *buffer) ...@@ -137,7 +137,8 @@ ssize_t cpu_shares_show(struct kset *kset, char *buffer)
} }
/* modify cpu shares held by the user */ /* modify cpu shares held by the user */
ssize_t cpu_shares_store(struct kset *kset, const char *buffer, size_t size) static ssize_t cpu_shares_store(struct kset *kset, const char *buffer,
size_t size)
{ {
struct user_struct *up = container_of(kset, struct user_struct, kset); struct user_struct *up = container_of(kset, struct user_struct, kset);
unsigned long shares; unsigned long shares;
......
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