diff options
| author | Frederic Weisbecker <fweisbec@gmail.com> | 2013-05-02 17:37:49 +0200 | 
|---|---|---|
| committer | Frederic Weisbecker <fweisbec@gmail.com> | 2013-05-02 17:54:19 +0200 | 
| commit | c032862fba51a3ca504752d3a25186b324c5ce83 (patch) | |
| tree | 955dc2ba4ab3df76ecc2bb780ee84aca04967e8d /fs/proc/namespaces.c | |
| parent | fda76e074c7737fc57855dd17c762e50ed526052 (diff) | |
| parent | 8700c95adb033843fc163d112b9d21d4fda78018 (diff) | |
| download | olio-linux-3.10-c032862fba51a3ca504752d3a25186b324c5ce83.tar.xz olio-linux-3.10-c032862fba51a3ca504752d3a25186b324c5ce83.zip  | |
Merge commit '8700c95adb03' into timers/nohz
The full dynticks tree needs the latest RCU and sched
upstream updates in order to fix some dependencies.
Merge a common upstream merge point that has these
updates.
Conflicts:
	include/linux/perf_event.h
	kernel/rcutree.h
	kernel/rcutree_plugin.h
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Diffstat (limited to 'fs/proc/namespaces.c')
| -rw-r--r-- | fs/proc/namespaces.c | 12 | 
1 files changed, 6 insertions, 6 deletions
diff --git a/fs/proc/namespaces.c b/fs/proc/namespaces.c index b7a47196c8c..66b51c0383d 100644 --- a/fs/proc/namespaces.c +++ b/fs/proc/namespaces.c @@ -118,7 +118,7 @@ static void *proc_ns_follow_link(struct dentry *dentry, struct nameidata *nd)  	struct super_block *sb = inode->i_sb;  	struct proc_inode *ei = PROC_I(inode);  	struct task_struct *task; -	struct dentry *ns_dentry; +	struct path ns_path;  	void *error = ERR_PTR(-EACCES);  	task = get_proc_task(inode); @@ -128,14 +128,14 @@ static void *proc_ns_follow_link(struct dentry *dentry, struct nameidata *nd)  	if (!ptrace_may_access(task, PTRACE_MODE_READ))  		goto out_put_task; -	ns_dentry = proc_ns_get_dentry(sb, task, ei->ns_ops); -	if (IS_ERR(ns_dentry)) { -		error = ERR_CAST(ns_dentry); +	ns_path.dentry = proc_ns_get_dentry(sb, task, ei->ns_ops); +	if (IS_ERR(ns_path.dentry)) { +		error = ERR_CAST(ns_path.dentry);  		goto out_put_task;  	} -	dput(nd->path.dentry); -	nd->path.dentry = ns_dentry; +	ns_path.mnt = mntget(nd->path.mnt); +	nd_jump_link(nd, &ns_path);  	error = NULL;  out_put_task:  |