mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-01 10:45:49 +00:00
fs: Mark get_filesystem_list() as __init function.
"int get_filesystem_list(char * buf)" is called by only "static void __init get_fs_names(char *page)". We can mark get_filesystem_list() as "__init". Signed-off-by: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
2eae7a1874
commit
38e23c95f9
@ -199,7 +199,7 @@ SYSCALL_DEFINE3(sysfs, int, option, unsigned long, arg1, unsigned long, arg2)
|
|||||||
return retval;
|
return retval;
|
||||||
}
|
}
|
||||||
|
|
||||||
int get_filesystem_list(char * buf)
|
int __init get_filesystem_list(char *buf)
|
||||||
{
|
{
|
||||||
int len = 0;
|
int len = 0;
|
||||||
struct file_system_type * tmp;
|
struct file_system_type * tmp;
|
||||||
|
@ -2448,7 +2448,7 @@ struct ctl_table;
|
|||||||
int proc_nr_files(struct ctl_table *table, int write, struct file *filp,
|
int proc_nr_files(struct ctl_table *table, int write, struct file *filp,
|
||||||
void __user *buffer, size_t *lenp, loff_t *ppos);
|
void __user *buffer, size_t *lenp, loff_t *ppos);
|
||||||
|
|
||||||
int get_filesystem_list(char * buf);
|
int __init get_filesystem_list(char *buf);
|
||||||
|
|
||||||
#endif /* __KERNEL__ */
|
#endif /* __KERNEL__ */
|
||||||
#endif /* _LINUX_FS_H */
|
#endif /* _LINUX_FS_H */
|
||||||
|
Loading…
Reference in New Issue
Block a user