Commit ad47bd72 authored by Al Viro's avatar Al Viro

make expand_files() and alloc_fd() static

no callers outside of fs/file.c left
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent b8318b01
...@@ -238,7 +238,7 @@ static int expand_fdtable(struct files_struct *files, int nr) ...@@ -238,7 +238,7 @@ static int expand_fdtable(struct files_struct *files, int nr)
* expanded and execution may have blocked. * expanded and execution may have blocked.
* The files->file_lock should be held on entry, and will be held on exit. * The files->file_lock should be held on entry, and will be held on exit.
*/ */
int expand_files(struct files_struct *files, int nr) static int expand_files(struct files_struct *files, int nr)
{ {
struct fdtable *fdt; struct fdtable *fdt;
...@@ -580,7 +580,7 @@ int __alloc_fd(struct files_struct *files, ...@@ -580,7 +580,7 @@ int __alloc_fd(struct files_struct *files,
return error; return error;
} }
int alloc_fd(unsigned start, unsigned flags) static int alloc_fd(unsigned start, unsigned flags)
{ {
return __alloc_fd(current->files, start, rlimit(RLIMIT_NOFILE), flags); return __alloc_fd(current->files, start, rlimit(RLIMIT_NOFILE), flags);
} }
......
...@@ -73,7 +73,6 @@ struct file_operations; ...@@ -73,7 +73,6 @@ struct file_operations;
struct vfsmount; struct vfsmount;
struct dentry; struct dentry;
extern int expand_files(struct files_struct *, int nr);
extern void __init files_defer_init(void); extern void __init files_defer_init(void);
static inline struct file * fcheck_files(struct files_struct *files, unsigned int fd) static inline struct file * fcheck_files(struct files_struct *files, unsigned int fd)
......
...@@ -35,7 +35,6 @@ extern int replace_fd(unsigned fd, struct file *file, unsigned flags); ...@@ -35,7 +35,6 @@ extern int replace_fd(unsigned fd, struct file *file, unsigned flags);
extern void set_close_on_exec(unsigned int fd, int flag); extern void set_close_on_exec(unsigned int fd, int flag);
extern bool get_close_on_exec(unsigned int fd); extern bool get_close_on_exec(unsigned int fd);
extern void put_filp(struct file *); extern void put_filp(struct file *);
extern int alloc_fd(unsigned start, unsigned flags);
extern int get_unused_fd_flags(unsigned flags); extern int get_unused_fd_flags(unsigned flags);
#define get_unused_fd() get_unused_fd_flags(0) #define get_unused_fd() get_unused_fd_flags(0)
extern void put_unused_fd(unsigned int fd); extern void put_unused_fd(unsigned int fd);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment