Lines Matching refs:fud
997 struct fuse_dev *fud; in fuse_dev_alloc() local
999 fud = kzalloc(sizeof(struct fuse_dev), GFP_KERNEL); in fuse_dev_alloc()
1000 if (fud) { in fuse_dev_alloc()
1001 fud->fc = fuse_conn_get(fc); in fuse_dev_alloc()
1002 fuse_pqueue_init(&fud->pq); in fuse_dev_alloc()
1005 list_add_tail(&fud->entry, &fc->devices); in fuse_dev_alloc()
1009 return fud; in fuse_dev_alloc()
1013 void fuse_dev_free(struct fuse_dev *fud) in fuse_dev_free() argument
1015 struct fuse_conn *fc = fud->fc; in fuse_dev_free()
1019 list_del(&fud->entry); in fuse_dev_free()
1024 kfree(fud); in fuse_dev_free()
1030 struct fuse_dev *fud; in fuse_fill_super() local
1082 fud = fuse_dev_alloc(fc); in fuse_fill_super()
1083 if (!fud) in fuse_fill_super()
1137 file->private_data = fud; in fuse_fill_super()
1157 fuse_dev_free(fud); in fuse_fill_super()