inode.c (3a2b5b9cd9610f789f5e5f91a010d9fa3ca78632) inode.c (e96edd94d0887707fc41c5d21d5b488edcd31689)
1/*
2 FUSE: Filesystem in Userspace
3 Copyright (C) 2001-2008 Miklos Szeredi <miklos@szeredi.hu>
4
5 This program can be distributed under the terms of the GNU GPL.
6 See the file COPYING.
7*/
8

--- 568 unchanged lines hidden (view full) ---

577 fiq->connected = 1;
578}
579
580static void fuse_pqueue_init(struct fuse_pqueue *fpq)
581{
582 memset(fpq, 0, sizeof(struct fuse_pqueue));
583 INIT_LIST_HEAD(&fpq->processing);
584 INIT_LIST_HEAD(&fpq->io);
1/*
2 FUSE: Filesystem in Userspace
3 Copyright (C) 2001-2008 Miklos Szeredi <miklos@szeredi.hu>
4
5 This program can be distributed under the terms of the GNU GPL.
6 See the file COPYING.
7*/
8

--- 568 unchanged lines hidden (view full) ---

577 fiq->connected = 1;
578}
579
580static void fuse_pqueue_init(struct fuse_pqueue *fpq)
581{
582 memset(fpq, 0, sizeof(struct fuse_pqueue));
583 INIT_LIST_HEAD(&fpq->processing);
584 INIT_LIST_HEAD(&fpq->io);
585 fpq->connected = 1;
585}
586
587void fuse_conn_init(struct fuse_conn *fc)
588{
589 memset(fc, 0, sizeof(*fc));
590 spin_lock_init(&fc->lock);
591 init_rwsem(&fc->killsb);
592 atomic_set(&fc->count, 1);

--- 743 unchanged lines hidden ---
586}
587
588void fuse_conn_init(struct fuse_conn *fc)
589{
590 memset(fc, 0, sizeof(*fc));
591 spin_lock_init(&fc->lock);
592 init_rwsem(&fc->killsb);
593 atomic_set(&fc->count, 1);

--- 743 unchanged lines hidden ---