Searched refs:fud (Results 1 – 5 of 5) sorted by relevance
| /Linux-v5.4/fs/fuse/ |
| D | dev.c | 1176 static ssize_t fuse_dev_do_read(struct fuse_dev *fud, struct file *file, in fuse_dev_do_read() argument 1180 struct fuse_conn *fc = fud->fc; in fuse_dev_do_read() 1182 struct fuse_pqueue *fpq = &fud->pq; in fuse_dev_do_read() 1320 struct fuse_dev *fud = fuse_get_dev(file); in fuse_dev_read() local 1322 if (!fud) in fuse_dev_read() 1330 return fuse_dev_do_read(fud, file, &cs, iov_iter_count(to)); in fuse_dev_read() 1341 struct fuse_dev *fud = fuse_get_dev(in); in fuse_dev_splice_read() local 1343 if (!fud) in fuse_dev_splice_read() 1354 ret = fuse_dev_do_read(fud, in, &cs, len); in fuse_dev_splice_read() 1823 static ssize_t fuse_dev_do_write(struct fuse_dev *fud, in fuse_dev_do_write() argument [all …]
|
| D | inode.c | 1061 struct fuse_dev *fud; in fuse_dev_alloc() local 1064 fud = kzalloc(sizeof(struct fuse_dev), GFP_KERNEL); in fuse_dev_alloc() 1065 if (!fud) in fuse_dev_alloc() 1070 kfree(fud); in fuse_dev_alloc() 1074 fud->pq.processing = pq; in fuse_dev_alloc() 1075 fuse_pqueue_init(&fud->pq); in fuse_dev_alloc() 1077 return fud; in fuse_dev_alloc() 1081 void fuse_dev_install(struct fuse_dev *fud, struct fuse_conn *fc) in fuse_dev_install() argument 1083 fud->fc = fuse_conn_get(fc); in fuse_dev_install() 1085 list_add_tail(&fud->entry, &fc->devices); in fuse_dev_install() [all …]
|
| D | cuse.c | 496 struct fuse_dev *fud; in cuse_channel_open() local 511 fud = fuse_dev_alloc_install(&cc->fc); in cuse_channel_open() 512 if (!fud) { in cuse_channel_open() 523 fuse_dev_free(fud); in cuse_channel_open() 527 file->private_data = fud; in cuse_channel_open() 545 struct fuse_dev *fud = file->private_data; in cuse_channel_release() local 546 struct cuse_conn *cc = fc_to_cc(fud->fc); in cuse_channel_release()
|
| D | virtio_fs.c | 35 struct fuse_dev *fud; member 70 return &vq_to_fsvq(vq)->fud->pq; in vq_to_fpq() 205 if (!fsvq->fud) in virtio_fs_free_devs() 208 fuse_dev_free(fsvq->fud); in virtio_fs_free_devs() 209 fsvq->fud = NULL; in virtio_fs_free_devs() 265 struct fuse_conn *fc = fsvq->fud->fc; in virtio_fs_request_dispatch_work() 450 struct fuse_pqueue *fpq = &fsvq->fud->pq; in virtio_fs_requests_done_work() 451 struct fuse_conn *fc = fsvq->fud->fc; in virtio_fs_requests_done_work() 948 fpq = &fsvq->fud->pq; in virtio_fs_enqueue_req() 1071 fsvq->fud = fuse_dev_alloc(); in virtio_fs_fill_super() [all …]
|
| D | fuse_i.h | 959 void fuse_dev_install(struct fuse_dev *fud, struct fuse_conn *fc); 960 void fuse_dev_free(struct fuse_dev *fud);
|