summaryrefslogtreecommitdiffstats
path: root/fs/file_table.c
diff options
context:
space:
mode:
authorJoe Perches2014-06-06 23:38:05 +0200
committerLinus Torvalds2014-06-07 01:08:16 +0200
commit1f7e0616cd4f5df594595153c3a01bbb16072380 (patch)
tree891fc7351c4bc412a08817e2ea9beb862815eeb9 /fs/file_table.c
parentntfs: convert use of typedef ctl_table to struct ctl_table (diff)
downloadkernel-qcow2-linux-1f7e0616cd4f5df594595153c3a01bbb16072380.tar.gz
kernel-qcow2-linux-1f7e0616cd4f5df594595153c3a01bbb16072380.tar.xz
kernel-qcow2-linux-1f7e0616cd4f5df594595153c3a01bbb16072380.zip
fs: convert use of typedef ctl_table to struct ctl_table
This typedef is unnecessary and should just be removed. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/file_table.c')
-rw-r--r--fs/file_table.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/file_table.c b/fs/file_table.c
index a374f5033e97..40bf4660f0a3 100644
--- a/fs/file_table.c
+++ b/fs/file_table.c
@@ -76,14 +76,14 @@ EXPORT_SYMBOL_GPL(get_max_files);
* Handle nr_files sysctl
*/
#if defined(CONFIG_SYSCTL) && defined(CONFIG_PROC_FS)
-int proc_nr_files(ctl_table *table, int write,
+int proc_nr_files(struct ctl_table *table, int write,
void __user *buffer, size_t *lenp, loff_t *ppos)
{
files_stat.nr_files = get_nr_files();
return proc_doulongvec_minmax(table, write, buffer, lenp, ppos);
}
#else
-int proc_nr_files(ctl_table *table, int write,
+int proc_nr_files(struct ctl_table *table, int write,
void __user *buffer, size_t *lenp, loff_t *ppos)
{
return -ENOSYS;