aboutsummaryrefslogtreecommitdiffstats
path: root/fs/file.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/file.c')
-rw-r--r--fs/file.c16
1 files changed, 9 insertions, 7 deletions
diff --git a/fs/file.c b/fs/file.c
index 5b46e9970a7a..08922af4a62c 100644
--- a/fs/file.c
+++ b/fs/file.c
@@ -251,13 +251,6 @@ int expand_files(struct files_struct *files, int nr)
251 251
252 fdt = files_fdtable(files); 252 fdt = files_fdtable(files);
253 253
254 /*
255 * N.B. For clone tasks sharing a files structure, this test
256 * will limit the total number of files that can be opened.
257 */
258 if (nr >= rlimit(RLIMIT_NOFILE))
259 return -EMFILE;
260
261 /* Do we need to expand? */ 254 /* Do we need to expand? */
262 if (nr < fdt->max_fds) 255 if (nr < fdt->max_fds)
263 return 0; 256 return 0;
@@ -431,6 +424,7 @@ int alloc_fd(unsigned start, unsigned flags)
431{ 424{
432 struct files_struct *files = current->files; 425 struct files_struct *files = current->files;
433 unsigned int fd; 426 unsigned int fd;
427 unsigned end = rlimit(RLIMIT_NOFILE);
434 int error; 428 int error;
435 struct fdtable *fdt; 429 struct fdtable *fdt;
436 430
@@ -444,6 +438,14 @@ repeat:
444 if (fd < fdt->max_fds) 438 if (fd < fdt->max_fds)
445 fd = find_next_zero_bit(fdt->open_fds, fdt->max_fds, fd); 439 fd = find_next_zero_bit(fdt->open_fds, fdt->max_fds, fd);
446 440
441 /*
442 * N.B. For clone tasks sharing a files structure, this test
443 * will limit the total number of files that can be opened.
444 */
445 error = -EMFILE;
446 if (fd >= end)
447 goto out;
448
447 error = expand_files(files, fd); 449 error = expand_files(files, fd);
448 if (error < 0) 450 if (error < 0)
449 goto out; 451 goto out;