mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-31 16:38:12 +00:00
proc: Put thread_pid in release_task not proc_flush_pid
Oleg pointed out that in the unlikely event the kernel is compiled
with CONFIG_PROC_FS unset that release_task will now leak the pid.
Move the put_pid out of proc_flush_pid into release_task to fix this
and to guarantee I don't make that mistake again.
When possible it makes sense to keep get and put in the same function
so it can easily been seen how they pair up.
Fixes: 7bc3e6e55a
("proc: Use a list of inodes to flush from proc")
Reported-by: Oleg Nesterov <oleg@redhat.com>
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
This commit is contained in:
parent
61e713bdca
commit
6ade99ec61
2 changed files with 1 additions and 1 deletions
|
@ -3274,7 +3274,6 @@ static const struct inode_operations proc_tgid_base_inode_operations = {
|
|||
void proc_flush_pid(struct pid *pid)
|
||||
{
|
||||
proc_invalidate_siblings_dcache(&pid->inodes, &pid->lock);
|
||||
put_pid(pid);
|
||||
}
|
||||
|
||||
static struct dentry *proc_pid_instantiate(struct dentry * dentry,
|
||||
|
|
|
@ -219,6 +219,7 @@ void release_task(struct task_struct *p)
|
|||
|
||||
write_unlock_irq(&tasklist_lock);
|
||||
proc_flush_pid(thread_pid);
|
||||
put_pid(thread_pid);
|
||||
release_thread(p);
|
||||
put_task_struct_rcu_user(p);
|
||||
|
||||
|
|
Loading…
Reference in a new issue