diff options
author | Joe Perches <joe@perches.com> | 2013-06-13 22:37:49 -0400 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2013-07-04 13:22:55 -0400 |
commit | e628753bf925b058b6811527492f7529f4d27691 (patch) | |
tree | 7683d6bc28ddd335c36a1f9b707e67b06d9ca1d7 /fs/quota | |
parent | 3df32196519d1556b8851b610ca1aa68c5b673d3 (diff) |
quota: 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: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/quota')
-rw-r--r-- | fs/quota/dquot.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/quota/dquot.c b/fs/quota/dquot.c index 3e64169ef527..fbad622841f9 100644 --- a/fs/quota/dquot.c +++ b/fs/quota/dquot.c | |||
@@ -2585,7 +2585,7 @@ static int do_proc_dqstats(struct ctl_table *table, int write, | |||
2585 | return proc_dointvec(table, write, buffer, lenp, ppos); | 2585 | return proc_dointvec(table, write, buffer, lenp, ppos); |
2586 | } | 2586 | } |
2587 | 2587 | ||
2588 | static ctl_table fs_dqstats_table[] = { | 2588 | static struct ctl_table fs_dqstats_table[] = { |
2589 | { | 2589 | { |
2590 | .procname = "lookups", | 2590 | .procname = "lookups", |
2591 | .data = &dqstats.stat[DQST_LOOKUPS], | 2591 | .data = &dqstats.stat[DQST_LOOKUPS], |
@@ -2654,7 +2654,7 @@ static ctl_table fs_dqstats_table[] = { | |||
2654 | { }, | 2654 | { }, |
2655 | }; | 2655 | }; |
2656 | 2656 | ||
2657 | static ctl_table fs_table[] = { | 2657 | static struct ctl_table fs_table[] = { |
2658 | { | 2658 | { |
2659 | .procname = "quota", | 2659 | .procname = "quota", |
2660 | .mode = 0555, | 2660 | .mode = 0555, |
@@ -2663,7 +2663,7 @@ static ctl_table fs_table[] = { | |||
2663 | { }, | 2663 | { }, |
2664 | }; | 2664 | }; |
2665 | 2665 | ||
2666 | static ctl_table sys_table[] = { | 2666 | static struct ctl_table sys_table[] = { |
2667 | { | 2667 | { |
2668 | .procname = "fs", | 2668 | .procname = "fs", |
2669 | .mode = 0555, | 2669 | .mode = 0555, |