lib: don't create new thread for each FORGET request...
authorMiklos Szeredi <miklos@szeredi.hu>
Tue, 29 May 2007 13:34:15 +0000 (13:34 +0000)
committerMiklos Szeredi <miklos@szeredi.hu>
Tue, 29 May 2007 13:34:15 +0000 (13:34 +0000)
ChangeLog
lib/fuse_loop_mt.c

index 4415a334803723439110cc49b64c164fda560b1a..9879cb98ac1581a9ec85823172acf11027acc721 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+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
index e9e04b3d9d9f81056c6bc9dcc430d3fc05ec8727..7bcc1c26a5985e60472b558e53dee97a9dc30418 100644 (file)
@@ -8,6 +8,7 @@
 
 #include "fuse_lowlevel.h"
 #include "fuse_misc.h"
+#include "fuse_kernel.h"
 
 #include <stdio.h>
 #include <stdlib.h>
@@ -64,6 +65,7 @@ static void *fuse_do_work(void *data)
     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)
@@ -81,7 +83,16 @@ static void *fuse_do_work(void *data)
             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);
@@ -89,7 +100,8 @@ static void *fuse_do_work(void *data)
         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);