Skip to content
This repository has been archived by the owner on Aug 27, 2022. It is now read-only.

Commit

Permalink
Uninline find_task_by_xxx set of functions
Browse files Browse the repository at this point in the history
The find_task_by_something is a set of macros are used to find task by pid
depending on what kind of pid is proposed - global or virtual one.  All of
them are wrappers above the most generic one - find_task_by_pid_type_ns() -
and just substitute some args for it.

It turned out, that dereferencing the current->nsproxy->pid_ns construction
and pushing one more argument on the stack inline cause kernel text size to
grow.

This patch moves all this stuff out-of-line into kernel/pid.c.  Together
with the next patch it saves a bit less than 400 bytes from the .text
section.

Signed-off-by: Pavel Emelyanov <xemul@openvz.org>
Cc: Sukadev Bhattiprolu <sukadev@us.ibm.com>
Cc: Oleg Nesterov <oleg@tv-sign.ru>
Cc: Paul Menage <menage@google.com>
Cc: "Eric W. Biederman" <ebiederm@xmission.com>
Acked-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
xemul authored and Linus Torvalds committed Oct 19, 2007
1 parent b488893 commit 228ebcb
Show file tree
Hide file tree
Showing 12 changed files with 41 additions and 38 deletions.
6 changes: 2 additions & 4 deletions fs/ioprio.c
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,7 @@ asmlinkage long sys_ioprio_set(int which, int who, int ioprio)
if (!who)
p = current;
else
p = find_task_by_pid_ns(who,
current->nsproxy->pid_ns);
p = find_task_by_vpid(who);
if (p)
ret = set_task_ioprio(p, ioprio);
break;
Expand Down Expand Up @@ -182,8 +181,7 @@ asmlinkage long sys_ioprio_get(int which, int who)
if (!who)
p = current;
else
p = find_task_by_pid_ns(who,
current->nsproxy->pid_ns);
p = find_task_by_vpid(who);
if (p)
ret = get_task_ioprio(p);
break;
Expand Down
15 changes: 6 additions & 9 deletions include/linux/sched.h
Original file line number Diff line number Diff line change
Expand Up @@ -1523,9 +1523,8 @@ extern struct pid_namespace init_pid_ns;
* type and namespace specified
* find_task_by_pid_ns():
* finds a task by its pid in the specified namespace
* find_task_by_pid_type():
* finds a task by its global id with the specified type, e.g.
* by global session id
* find_task_by_vpid():
* finds a task by its virtual pid
* find_task_by_pid():
* finds a task by its global pid
*
Expand All @@ -1535,12 +1534,10 @@ extern struct pid_namespace init_pid_ns;
extern struct task_struct *find_task_by_pid_type_ns(int type, int pid,
struct pid_namespace *ns);

#define find_task_by_pid_ns(nr, ns) \
find_task_by_pid_type_ns(PIDTYPE_PID, nr, ns)
#define find_task_by_pid_type(type, nr) \
find_task_by_pid_type_ns(type, nr, &init_pid_ns)
#define find_task_by_pid(nr) \
find_task_by_pid_type(PIDTYPE_PID, nr)
extern struct task_struct *find_task_by_pid(pid_t nr);
extern struct task_struct *find_task_by_vpid(pid_t nr);
extern struct task_struct *find_task_by_pid_ns(pid_t nr,
struct pid_namespace *ns);

extern void __set_special_pids(pid_t session, pid_t pgrp);

Expand Down
6 changes: 2 additions & 4 deletions kernel/capability.c
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,7 @@ asmlinkage long sys_capget(cap_user_header_t header, cap_user_data_t dataptr)
read_lock(&tasklist_lock);

if (pid && pid != task_pid_vnr(current)) {
target = find_task_by_pid_ns(pid,
current->nsproxy->pid_ns);
target = find_task_by_vpid(pid);
if (!target) {
ret = -ESRCH;
goto out;
Expand Down Expand Up @@ -198,8 +197,7 @@ asmlinkage long sys_capset(cap_user_header_t header, const cap_user_data_t data)
read_lock(&tasklist_lock);

if (pid > 0 && pid != task_pid_vnr(current)) {
target = find_task_by_pid_ns(pid,
current->nsproxy->pid_ns);
target = find_task_by_vpid(pid);
if (!target) {
ret = -ESRCH;
goto out;
Expand Down
7 changes: 2 additions & 5 deletions kernel/futex.c
Original file line number Diff line number Diff line change
Expand Up @@ -446,9 +446,7 @@ static struct task_struct * futex_find_get_task(pid_t pid)
struct task_struct *p;

rcu_read_lock();
p = find_task_by_pid_ns(pid,
current->nsproxy->pid_ns);

p = find_task_by_vpid(pid);
if (!p || ((current->euid != p->euid) && (current->euid != p->uid)))
p = ERR_PTR(-ESRCH);
else
Expand Down Expand Up @@ -1858,8 +1856,7 @@ sys_get_robust_list(int pid, struct robust_list_head __user * __user *head_ptr,

ret = -ESRCH;
rcu_read_lock();
p = find_task_by_pid_ns(pid,
current->nsproxy->pid_ns);
p = find_task_by_vpid(pid);
if (!p)
goto err_unlock;
ret = -EPERM;
Expand Down
3 changes: 1 addition & 2 deletions kernel/futex_compat.c
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,7 @@ compat_sys_get_robust_list(int pid, compat_uptr_t __user *head_ptr,

ret = -ESRCH;
read_lock(&tasklist_lock);
p = find_task_by_pid_ns(pid,
current->nsproxy->pid_ns);
p = find_task_by_vpid(pid);
if (!p)
goto err_unlock;
ret = -EPERM;
Expand Down
19 changes: 19 additions & 0 deletions kernel/pid.c
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,25 @@ struct task_struct *find_task_by_pid_type_ns(int type, int nr,

EXPORT_SYMBOL(find_task_by_pid_type_ns);

struct task_struct *find_task_by_pid(pid_t nr)
{
return find_task_by_pid_type_ns(PIDTYPE_PID, nr, &init_pid_ns);
}
EXPORT_SYMBOL(find_task_by_pid);

struct task_struct *find_task_by_vpid(pid_t vnr)
{
return find_task_by_pid_type_ns(PIDTYPE_PID, vnr,
current->nsproxy->pid_ns);
}
EXPORT_SYMBOL(find_task_by_vpid);

struct task_struct *find_task_by_pid_ns(pid_t nr, struct pid_namespace *ns)
{
return find_task_by_pid_type_ns(PIDTYPE_PID, nr, ns);
}
EXPORT_SYMBOL(find_task_by_pid_ns);

struct pid *get_task_pid(struct task_struct *task, enum pid_type type)
{
struct pid *pid;
Expand Down
3 changes: 1 addition & 2 deletions kernel/ptrace.c
Original file line number Diff line number Diff line change
Expand Up @@ -444,8 +444,7 @@ struct task_struct *ptrace_get_task_struct(pid_t pid)
return ERR_PTR(-EPERM);

read_lock(&tasklist_lock);
child = find_task_by_pid_ns(pid,
current->nsproxy->pid_ns);
child = find_task_by_vpid(pid);
if (child)
get_task_struct(child);

Expand Down
3 changes: 1 addition & 2 deletions kernel/sched.c
Original file line number Diff line number Diff line change
Expand Up @@ -4168,8 +4168,7 @@ struct task_struct *idle_task(int cpu)
*/
static struct task_struct *find_process_by_pid(pid_t pid)
{
return pid ?
find_task_by_pid_ns(pid, current->nsproxy->pid_ns) : current;
return pid ? find_task_by_vpid(pid) : current;
}

/* Actually do priority change: must hold rq lock. */
Expand Down
2 changes: 1 addition & 1 deletion kernel/signal.c
Original file line number Diff line number Diff line change
Expand Up @@ -2237,7 +2237,7 @@ static int do_tkill(int tgid, int pid, int sig)
info.si_uid = current->uid;

read_lock(&tasklist_lock);
p = find_task_by_pid_ns(pid, current->nsproxy->pid_ns);
p = find_task_by_vpid(pid);
if (p && (tgid <= 0 || task_tgid_vnr(p) == tgid)) {
error = check_kill_permission(sig, &info, p);
/*
Expand Down
9 changes: 4 additions & 5 deletions kernel/sys.c
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,7 @@ asmlinkage long sys_setpriority(int which, int who, int niceval)
switch (which) {
case PRIO_PROCESS:
if (who)
p = find_task_by_pid_ns(who,
current->nsproxy->pid_ns);
p = find_task_by_vpid(who);
else
p = current;
if (p)
Expand Down Expand Up @@ -210,8 +209,7 @@ asmlinkage long sys_getpriority(int which, int who)
switch (which) {
case PRIO_PROCESS:
if (who)
p = find_task_by_pid_ns(who,
current->nsproxy->pid_ns);
p = find_task_by_vpid(who);
else
p = current;
if (p) {
Expand Down Expand Up @@ -1067,7 +1065,8 @@ asmlinkage long sys_setsid(void)
* session id and so the check will always fail and make it so
* init cannot successfully call setsid.
*/
if (session > 1 && find_task_by_pid_type(PIDTYPE_PGID, session))
if (session > 1 && find_task_by_pid_type_ns(PIDTYPE_PGID,
session, &init_pid_ns))
goto out;

group_leader->signal->leader = 1;
Expand Down
3 changes: 1 addition & 2 deletions mm/mempolicy.c
Original file line number Diff line number Diff line change
Expand Up @@ -941,8 +941,7 @@ asmlinkage long sys_migrate_pages(pid_t pid, unsigned long maxnode,

/* Find the mm_struct */
read_lock(&tasklist_lock);
task = pid ?
find_task_by_pid_ns(pid, current->nsproxy->pid_ns) : current;
task = pid ? find_task_by_vpid(pid) : current;
if (!task) {
read_unlock(&tasklist_lock);
return -ESRCH;
Expand Down
3 changes: 1 addition & 2 deletions mm/migrate.c
Original file line number Diff line number Diff line change
Expand Up @@ -925,8 +925,7 @@ asmlinkage long sys_move_pages(pid_t pid, unsigned long nr_pages,

/* Find the mm_struct */
read_lock(&tasklist_lock);
task = pid ?
find_task_by_pid_ns(pid, current->nsproxy->pid_ns) : current;
task = pid ? find_task_by_vpid(pid) : current;
if (!task) {
read_unlock(&tasklist_lock);
return -ESRCH;
Expand Down

0 comments on commit 228ebcb

Please sign in to comment.