diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2012-08-12 17:18:05 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-09-26 21:08:50 -0400 |
commit | 1a7bd2265fc57f29400d57f66275cc5918e30aa6 (patch) | |
tree | 48a4bb42dfb5d4b37d077bbaf550253686b546f5 /fs/file.c | |
parent | 56b31d1c9f1e6a3ad92e7bfe252721e05d92b285 (diff) |
make get_unused_fd_flags() a function
... and get_unused_fd() a macro around it
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/file.c')
-rw-r--r-- | fs/file.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -477,8 +477,8 @@ out: | |||
477 | return error; | 477 | return error; |
478 | } | 478 | } |
479 | 479 | ||
480 | int get_unused_fd(void) | 480 | int get_unused_fd_flags(unsigned flags) |
481 | { | 481 | { |
482 | return alloc_fd(0, 0); | 482 | return alloc_fd(0, flags); |
483 | } | 483 | } |
484 | EXPORT_SYMBOL(get_unused_fd); | 484 | EXPORT_SYMBOL(get_unused_fd_flags); |