Searched refs:fud (Results 1 – 5 of 5) sorted by relevance
/Linux-v5.10/fs/fuse/ |
D | dev.c | 1196 static ssize_t fuse_dev_do_read(struct fuse_dev *fud, struct file *file, in fuse_dev_do_read() argument 1200 struct fuse_conn *fc = fud->fc; in fuse_dev_do_read() 1202 struct fuse_pqueue *fpq = &fud->pq; in fuse_dev_do_read() 1340 struct fuse_dev *fud = fuse_get_dev(file); in fuse_dev_read() local 1342 if (!fud) in fuse_dev_read() 1350 return fuse_dev_do_read(fud, file, &cs, iov_iter_count(to)); in fuse_dev_read() 1361 struct fuse_dev *fud = fuse_get_dev(in); in fuse_dev_splice_read() local 1363 if (!fud) in fuse_dev_splice_read() 1374 ret = fuse_dev_do_read(fud, in, &cs, len); in fuse_dev_splice_read() 1833 static ssize_t fuse_dev_do_write(struct fuse_dev *fud, in fuse_dev_do_write() argument [all …]
|
D | inode.c | 1177 struct fuse_dev *fud; in fuse_dev_alloc() local 1180 fud = kzalloc(sizeof(struct fuse_dev), GFP_KERNEL); in fuse_dev_alloc() 1181 if (!fud) in fuse_dev_alloc() 1186 kfree(fud); in fuse_dev_alloc() 1190 fud->pq.processing = pq; in fuse_dev_alloc() 1191 fuse_pqueue_init(&fud->pq); in fuse_dev_alloc() 1193 return fud; in fuse_dev_alloc() 1197 void fuse_dev_install(struct fuse_dev *fud, struct fuse_conn *fc) in fuse_dev_install() argument 1199 fud->fc = fuse_conn_get(fc); in fuse_dev_install() 1201 list_add_tail(&fud->entry, &fc->devices); in fuse_dev_install() [all …]
|
D | cuse.c | 498 struct fuse_dev *fud; in cuse_channel_open() local 514 fud = fuse_dev_alloc_install(&cc->fc); in cuse_channel_open() 515 if (!fud) { in cuse_channel_open() 526 fuse_dev_free(fud); in cuse_channel_open() 530 file->private_data = fud; in cuse_channel_open() 548 struct fuse_dev *fud = file->private_data; in cuse_channel_release() local 549 struct cuse_conn *cc = fc_to_cc(fud->fc); in cuse_channel_release()
|
D | virtio_fs.c | 42 struct fuse_dev *fud; member 132 return &vq_to_fsvq(vq)->fud->pq; in vq_to_fpq() 283 if (!fsvq->fud) in virtio_fs_free_devs() 286 fuse_dev_free(fsvq->fud); in virtio_fs_free_devs() 287 fsvq->fud = NULL; in virtio_fs_free_devs() 547 struct fuse_pqueue *fpq = &fsvq->fud->pq; in virtio_fs_request_complete() 599 struct fuse_pqueue *fpq = &fsvq->fud->pq; in virtio_fs_requests_done_work() 1193 fpq = &fsvq->fud->pq; in virtio_fs_enqueue_req() 1320 fsvq->fud = fuse_dev_alloc(); in virtio_fs_fill_super() 1321 if (!fsvq->fud) in virtio_fs_fill_super() [all …]
|
D | fuse_i.h | 1039 void fuse_dev_install(struct fuse_dev *fud, struct fuse_conn *fc); 1040 void fuse_dev_free(struct fuse_dev *fud);
|