diff options
Diffstat (limited to 'fs/proc/generic.c')
| -rw-r--r-- | fs/proc/generic.c | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/fs/proc/generic.c b/fs/proc/generic.c index c633476616e0..5f2dc2032c79 100644 --- a/fs/proc/generic.c +++ b/fs/proc/generic.c @@ -105,7 +105,7 @@ static int proc_notify_change(struct dentry *dentry, struct iattr *iattr)  	struct proc_dir_entry *de = PDE(inode);  	int error; -	error = inode_change_ok(inode, iattr); +	error = setattr_prepare(dentry, iattr);  	if (error)  		return error; @@ -390,6 +390,8 @@ static struct proc_dir_entry *__proc_create(struct proc_dir_entry **parent,  	atomic_set(&ent->count, 1);  	spin_lock_init(&ent->pde_unload_lock);  	INIT_LIST_HEAD(&ent->pde_openers); +	proc_set_user(ent, (*parent)->uid, (*parent)->gid); +  out:  	return ent;  } |