Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit abb255af authored by Aditya Mathur's avatar Aditya Mathur Committed by Gerrit - the friendly Code Review server
Browse files

virtiofs: fix virtio_fs_fiq_ops api



Fixing api signature for virtio_fs_fiq_ops.

Change-Id: Ib6b5112b710b0293d9af5c29e460c07e9d30b153
Signed-off-by: default avatarAditya Mathur <quic_aditmath@quicinc.com>
parent ded7fbf8
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -742,7 +742,7 @@ static struct virtio_driver virtio_fs_driver = {
#endif
};

static void virtio_fs_wake_forget_and_unlock(struct fuse_iqueue *fiq)
static void virtio_fs_wake_forget_and_unlock(struct fuse_iqueue *fiq, bool sync)
__releases(fiq->lock)
{
	struct fuse_forget_link *link;
@@ -819,7 +819,7 @@ __releases(fiq->lock)
	kfree(link);
}

static void virtio_fs_wake_interrupt_and_unlock(struct fuse_iqueue *fiq)
static void virtio_fs_wake_interrupt_and_unlock(struct fuse_iqueue *fiq, bool sync)
__releases(fiq->lock)
{
	/*
@@ -1012,7 +1012,7 @@ static int virtio_fs_enqueue_req(struct virtio_fs_vq *fsvq,
	return ret;
}

static void virtio_fs_wake_pending_and_unlock(struct fuse_iqueue *fiq)
static void virtio_fs_wake_pending_and_unlock(struct fuse_iqueue *fiq, bool sync)
__releases(fiq->lock)
{
	unsigned int queue_id = VQ_REQUEST; /* TODO multiqueue */