diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2012-02-12 02:38:16 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-03-20 21:29:32 -0400 |
commit | b57ce9694ec43dcb6ef6f189d6540e4b3d2c5e7a (patch) | |
tree | a6eaccac7c19b094d6ba956d3931e7315dfd3ef9 /fs/file_table.c | |
parent | 8de52778798fe39660a8d6b26f290e0c93202761 (diff) | |
download | linux-3.10-b57ce9694ec43dcb6ef6f189d6540e4b3d2c5e7a.tar.gz linux-3.10-b57ce9694ec43dcb6ef6f189d6540e4b3d2c5e7a.tar.bz2 linux-3.10-b57ce9694ec43dcb6ef6f189d6540e4b3d2c5e7a.zip |
vfs: drop_file_write_access() made static
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/file_table.c')
-rw-r--r-- | fs/file_table.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/file_table.c b/fs/file_table.c index 20002e39754..70f2a0fd6ae 100644 --- a/fs/file_table.c +++ b/fs/file_table.c @@ -204,7 +204,7 @@ EXPORT_SYMBOL(alloc_file); * to write to @file, along with access to write through * its vfsmount. */ -void drop_file_write_access(struct file *file) +static void drop_file_write_access(struct file *file) { struct vfsmount *mnt = file->f_path.mnt; struct dentry *dentry = file->f_path.dentry; @@ -219,7 +219,6 @@ void drop_file_write_access(struct file *file) mnt_drop_write(mnt); file_release_write(file); } -EXPORT_SYMBOL_GPL(drop_file_write_access); /* the real guts of fput() - releasing the last reference to file */ |