remove fuse_mutex_init
authorRosen Penev <rosenp@gmail.com>
Thu, 29 Oct 2020 02:25:38 +0000 (19:25 -0700)
committerNikolaus Rath <Nikolaus@rath.org>
Thu, 29 Oct 2020 10:59:23 +0000 (10:59 +0000)
This seems to have been added before 2006 to fix a uclibc bug. It
doesn't seem to be the case anymore so just get rid of it.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
lib/fuse.c
lib/fuse_loop_mt.c
lib/fuse_lowlevel.c
lib/fuse_misc.h

index 70299ef1e7793b6aecf0e8259f828764e5b29136..2125cdaa2407eb8fec179050e1bf196fe7aa9c02 100755 (executable)
@@ -3390,7 +3390,7 @@ static void fuse_lib_opendir(fuse_req_t req, fuse_ino_t ino,
        dh->len = 0;
        dh->filled = 0;
        dh->nodeid = ino;
-       fuse_mutex_init(&dh->lock);
+       pthread_mutex_init(&dh->lock, NULL);
 
        llfi->fh = (uintptr_t) dh;
 
@@ -4973,7 +4973,7 @@ struct fuse *fuse_new_31(struct fuse_args *args,
        if (node_table_init(&f->id_table) == -1)
                goto out_free_name_table;
 
-       fuse_mutex_init(&f->lock);
+       pthread_mutex_init(&f->lock, NULL);
 
        root = alloc_node(f);
        if (root == NULL) {
index 0c6a5b79f8fbb0646dbd88c12f81c60c2a64484b..71be15daea39b0e229340d8bef2b8380cd1268b8 100644 (file)
@@ -65,7 +65,7 @@ static struct fuse_chan *fuse_chan_new(int fd)
        memset(ch, 0, sizeof(*ch));
        ch->fd = fd;
        ch->ctr = 1;
-       fuse_mutex_init(&ch->lock);
+       pthread_mutex_init(&ch->lock, NULL);
 
        return ch;
 }
@@ -321,7 +321,7 @@ int fuse_session_loop_mt_32(struct fuse_session *se, struct fuse_loop_config *co
        mt.main.thread_id = pthread_self();
        mt.main.prev = mt.main.next = &mt.main;
        sem_init(&mt.finish, 0, 0);
-       fuse_mutex_init(&mt.lock);
+       pthread_mutex_init(&mt.lock, NULL);
 
        pthread_mutex_lock(&mt.lock);
        err = fuse_loop_start_thread(&mt);
index 83510b3cdbb4c7b9dfacadc70aa8cc4b21613d3a..d227688b2d9aa8abc9c2f68c78d57540a67640a0 100644 (file)
@@ -155,7 +155,7 @@ static struct fuse_req *fuse_ll_alloc_req(struct fuse_session *se)
                req->se = se;
                req->ctr = 1;
                list_init_req(req);
-               fuse_mutex_init(&req->lock);
+               pthread_mutex_init(&req->lock, NULL);
        }
 
        return req;
@@ -2958,7 +2958,7 @@ struct fuse_session *fuse_session_new(struct fuse_args *args,
        list_init_req(&se->interrupts);
        list_init_nreq(&se->notify_list);
        se->notify_ctr = 1;
-       fuse_mutex_init(&se->lock);
+       pthread_mutex_init(&se->lock, NULL);
 
        err = pthread_key_create(&se->pipe_key, fuse_ll_pipe_destructor);
        if (err) {
index f384aeab9e21760b019237c1190136c59d9e4d04..f956ab7994af2a90ee28326596ea7dcad3ec1131 100644 (file)
 #define FUSE_SYMVER(sym1, sym2)
 #endif
 
-#ifndef USE_UCLIBC
-#define fuse_mutex_init(mut) pthread_mutex_init(mut, NULL)
-#else
-/* Is this hack still needed? */
-static inline void fuse_mutex_init(pthread_mutex_t *mut)
-{
-       pthread_mutexattr_t attr;
-       pthread_mutexattr_init(&attr);
-       pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_ADAPTIVE_NP);
-       pthread_mutex_init(mut, &attr);
-       pthread_mutexattr_destroy(&attr);
-}
-#endif
-
 #ifdef HAVE_STRUCT_STAT_ST_ATIM
 /* Linux */
 #define ST_ATIM_NSEC(stbuf) ((stbuf)->st_atim.tv_nsec)