summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_descrip.c
diff options
context:
space:
mode:
authormjg <mjg@FreeBSD.org>2012-06-13 17:12:53 +0000
committermjg <mjg@FreeBSD.org>2012-06-13 17:12:53 +0000
commit1ca4c8cbf909810e0a057b149ac0af3e776a050e (patch)
treee572cb92a4467f73bfd04ac48c275da05318acc0 /sys/kern/kern_descrip.c
parentd13c86c2bcd34a8116a216f468aab12e277d7e01 (diff)
downloadFreeBSD-src-1ca4c8cbf909810e0a057b149ac0af3e776a050e.zip
FreeBSD-src-1ca4c8cbf909810e0a057b149ac0af3e776a050e.tar.gz
Re-apply reverted parts of r236935 by pjd with some changes.
If fdalloc() decides to grow fdtable it does it once and at most doubles the size. This still may be not enough for sufficiently large fd. Use fd in calculations of new size in order to fix this. When growing the table, fd is already equal to first free descriptor >= minfd, also fdgrowtable() no longer drops the filedesc lock. As a result of this there is no need to retry allocation nor lookup. Fix description of fd_first_free to note all return values. In co-operation with: pjd Approved by: trasz (mentor) MFC after: 1 month
Diffstat (limited to 'sys/kern/kern_descrip.c')
-rw-r--r--sys/kern/kern_descrip.c32
1 files changed, 17 insertions, 15 deletions
diff --git a/sys/kern/kern_descrip.c b/sys/kern/kern_descrip.c
index 2648ba7..4341829 100644
--- a/sys/kern/kern_descrip.c
+++ b/sys/kern/kern_descrip.c
@@ -189,8 +189,9 @@ void (*mq_fdclose)(struct thread *td, int fd, struct file *fp);
static struct mtx fdesc_mtx;
/*
- * Find the first zero bit in the given bitmap, starting at low and not
- * exceeding size - 1.
+ * If low >= size, just return low. Otherwise find the first zero bit in the
+ * given bitmap, starting at low and not exceeding size - 1. Return size if
+ * not found.
*/
static int
fd_first_free(struct filedesc *fdp, int low, int size)
@@ -1461,7 +1462,7 @@ fdalloc(struct thread *td, int minfd, int *result)
{
struct proc *p = td->td_proc;
struct filedesc *fdp = p->p_fd;
- int fd = -1, maxfd;
+ int fd = -1, maxfd, allocfd;
#ifdef RACCT
int error;
#endif
@@ -1476,25 +1477,26 @@ fdalloc(struct thread *td, int minfd, int *result)
PROC_UNLOCK(p);
/*
- * Search the bitmap for a free descriptor. If none is found, try
- * to grow the file table. Keep at it until we either get a file
- * descriptor or run into process or system limits.
+ * Search the bitmap for a free descriptor starting at minfd.
+ * If none is found, grow the file table.
*/
- for (;;) {
- fd = fd_first_free(fdp, minfd, fdp->fd_nfiles);
- if (fd >= maxfd)
- return (EMFILE);
- if (fd < fdp->fd_nfiles)
- break;
+ fd = fd_first_free(fdp, minfd, fdp->fd_nfiles);
+ if (fd >= maxfd)
+ return (EMFILE);
+ if (fd >= fdp->fd_nfiles) {
+ allocfd = min(fd * 2, maxfd);
#ifdef RACCT
PROC_LOCK(p);
- error = racct_set(p, RACCT_NOFILE,
- min(fdp->fd_nfiles * 2, maxfd));
+ error = racct_set(p, RACCT_NOFILE, allocfd);
PROC_UNLOCK(p);
if (error != 0)
return (EMFILE);
#endif
- fdgrowtable(fdp, min(fdp->fd_nfiles * 2, maxfd));
+ /*
+ * fd is already equal to first free descriptor >= minfd, so
+ * we only need to grow the table and we are done.
+ */
+ fdgrowtable(fdp, allocfd);
}
/*
OpenPOWER on IntegriCloud