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) | |
download | op-kernel-dev-1a7bd2265fc57f29400d57f66275cc5918e30aa6.zip op-kernel-dev-1a7bd2265fc57f29400d57f66275cc5918e30aa6.tar.gz |
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: return error; } -int get_unused_fd(void) +int get_unused_fd_flags(unsigned flags) { - return alloc_fd(0, 0); + return alloc_fd(0, flags); } -EXPORT_SYMBOL(get_unused_fd); +EXPORT_SYMBOL(get_unused_fd_flags); |