Home
last modified time | relevance | path

Searched refs:fsvq (Results 1 – 1 of 1) sorted by relevance

/linux/fs/fuse/
H A Dvirtio_fs.c95 struct virtio_fs_vq *fsvq; member
99 static int virtio_fs_enqueue_req(struct virtio_fs_vq *fsvq,
161 static inline void inc_in_flight_req(struct virtio_fs_vq *fsvq) in inc_in_flight_req() argument
163 fsvq->in_flight++; in inc_in_flight_req()
167 static inline void dec_in_flight_req(struct virtio_fs_vq *fsvq) in dec_in_flight_req() argument
169 WARN_ON(fsvq->in_flight <= 0); in dec_in_flight_req()
170 fsvq->in_flight--; in dec_in_flight_req()
171 if (!fsvq->in_flight) in dec_in_flight_req()
172 complete(&fsvq->in_flight_zero); in dec_in_flight_req()
222 struct virtio_fs_vq *fsvq = virtio_fs_kobj_to_vq(fs, kobj); in name_show() local
[all …]