diff options
| author | Eric Paris <[email protected]> | 2009-12-04 20:47:36 +0000 |
|---|---|---|
| committer | Al Viro <[email protected]> | 2009-12-16 17:16:45 +0000 |
| commit | e81e3f4dca6c54116a24aec217d2c15c6f58ada5 (patch) | |
| tree | 4cbaf8b4573a4f4dac2dafc2bebffe398a984b3d /fs/file_table.c | |
| parent | Sanitize exec_permission_lite() (diff) | |
| download | kernel-e81e3f4dca6c54116a24aec217d2c15c6f58ada5.tar.gz kernel-e81e3f4dca6c54116a24aec217d2c15c6f58ada5.zip | |
fs: move get_empty_filp() deffinition to internal.h
All users outside of fs/ of get_empty_filp() have been removed. This patch
moves the definition from the include/ directory to internal.h so no new
users crop up and removes the EXPORT_SYMBOL. I'd love to see open intents
stop using it too, but that's a problem for another day and a smarter
developer!
Signed-off-by: Eric Paris <[email protected]>
Acked-by: Miklos Szeredi <[email protected]>
Signed-off-by: Al Viro <[email protected]>
Diffstat (limited to 'fs/file_table.c')
| -rw-r--r-- | fs/file_table.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/file_table.c b/fs/file_table.c index 163cd28314e0..361d76be8295 100644 --- a/fs/file_table.c +++ b/fs/file_table.c @@ -24,6 +24,8 @@ #include <asm/atomic.h> +#include "internal.h" + /* sysctl tunables... */ struct files_stat_struct files_stat = { .max_files = NR_FILE |
