+2007-05-25 Miklos Szeredi <miklos@szeredi.hu>
+
+ * lib: don't create new thread for each FORGET request. FORGET
+ messages sometimes caused so many threads to be created, that
+ process virtual memory space ran out. Reported by Chris AtLee
+
2007-05-24 Miklos Szeredi <miklos@szeredi.hu>
* lib: fix memory leak on thread creation failure in multithreaded
#include "fuse_lowlevel.h"
#include "fuse_misc.h"
+#include "fuse_kernel.h"
#include <stdio.h>
#include <stdlib.h>
struct fuse_mt *mt = w->mt;
while (!fuse_session_exited(mt->se)) {
+ int isforget = 0;
struct fuse_chan *ch = mt->prevch;
int res = fuse_chan_recv(&ch, w->buf, w->bufsize);
if (res == -EINTR)
pthread_mutex_unlock(&mt->lock);
return NULL;
}
- mt->numavail--;
+
+ /*
+ * This disgusting hack is needed so that zillions of threads
+ * are not created on a burst of FORGET messages
+ */
+ if (((struct fuse_in_header *) w->buf)->opcode == FUSE_FORGET)
+ isforget = 1;
+
+ if (!isforget)
+ mt->numavail--;
if (mt->numavail == 0)
fuse_start_thread(mt);
pthread_mutex_unlock(&mt->lock);
fuse_session_process(mt->se, w->buf, res, ch);
pthread_mutex_lock(&mt->lock);
- mt->numavail ++;
+ if (!isforget)
+ mt->numavail++;
if (mt->numavail > 10) {
if (mt->exit) {
pthread_mutex_unlock(&mt->lock);