diff options
| author | Eric Paris <eparis@redhat.com> | 2012-04-04 13:45:40 -0400 | 
|---|---|---|
| committer | Eric Paris <eparis@redhat.com> | 2012-04-09 12:22:50 -0400 | 
| commit | 83d498569e9a7a4b92c4c5d3566f2d6a604f28c9 (patch) | |
| tree | e0d77f21bda5bec5ace52b3fa557f87b1bb57631 /fs/open.c | |
| parent | 95dbf739313f09c8d859bde1373bc264ef979337 (diff) | |
| download | olio-linux-3.10-83d498569e9a7a4b92c4c5d3566f2d6a604f28c9.tar.xz olio-linux-3.10-83d498569e9a7a4b92c4c5d3566f2d6a604f28c9.zip  | |
SELinux: rename dentry_open to file_open
dentry_open takes a file, rename it to file_open
Signed-off-by: Eric Paris <eparis@redhat.com>
Diffstat (limited to 'fs/open.c')
| -rw-r--r-- | fs/open.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/open.c b/fs/open.c index 5720854156d..5eccdcea2d1 100644 --- a/fs/open.c +++ b/fs/open.c @@ -681,7 +681,7 @@ static struct file *__dentry_open(struct dentry *dentry, struct vfsmount *mnt,  	f->f_op = fops_get(inode->i_fop); -	error = security_dentry_open(f, cred); +	error = security_file_open(f, cred);  	if (error)  		goto cleanup_all;  |