diff options
author | Joe Perches <joe@perches.com> | 2014-06-06 17:38:05 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-06-06 19:08:16 -0400 |
commit | 1f7e0616cd4f5df594595153c3a01bbb16072380 (patch) | |
tree | 891fc7351c4bc412a08817e2ea9beb862815eeb9 /fs/file_table.c | |
parent | 5eccdf3954411bf168676e4edb04d16f9f1d8fd2 (diff) |
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.c | 4 |
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); | |||
76 | * Handle nr_files sysctl | 76 | * Handle nr_files sysctl |
77 | */ | 77 | */ |
78 | #if defined(CONFIG_SYSCTL) && defined(CONFIG_PROC_FS) | 78 | #if defined(CONFIG_SYSCTL) && defined(CONFIG_PROC_FS) |
79 | int proc_nr_files(ctl_table *table, int write, | 79 | int proc_nr_files(struct ctl_table *table, int write, |
80 | void __user *buffer, size_t *lenp, loff_t *ppos) | 80 | void __user *buffer, size_t *lenp, loff_t *ppos) |
81 | { | 81 | { |
82 | files_stat.nr_files = get_nr_files(); | 82 | files_stat.nr_files = get_nr_files(); |
83 | return proc_doulongvec_minmax(table, write, buffer, lenp, ppos); | 83 | return proc_doulongvec_minmax(table, write, buffer, lenp, ppos); |
84 | } | 84 | } |
85 | #else | 85 | #else |
86 | int proc_nr_files(ctl_table *table, int write, | 86 | int proc_nr_files(struct ctl_table *table, int write, |
87 | void __user *buffer, size_t *lenp, loff_t *ppos) | 87 | void __user *buffer, size_t *lenp, loff_t *ppos) |
88 | { | 88 | { |
89 | return -ENOSYS; | 89 | return -ENOSYS; |