diff options
author | Wei Liu <wei.liu2@citrix.com> | 2016-01-07 18:30:29 +0000 |
---|---|---|
committer | Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> | 2016-01-08 15:30:03 +0530 |
commit | 0d3716b4e6ba81e8632c4ca698488b6e843f9daf (patch) | |
tree | 2345df2428a31d6d88e9e3b6e133c4be2d0fc7e6 /hw/9pfs/virtio-9p.c | |
parent | ebe74f8ba2f1f68b87d7289696acc4741a30d2da (diff) |
9pfs: factor out virtio_9p_push_and_notify
The new function resides in virtio specific file.
Signed-off-by: Wei Liu <wei.liu2@citrix.com>
Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Diffstat (limited to 'hw/9pfs/virtio-9p.c')
-rw-r--r-- | hw/9pfs/virtio-9p.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/hw/9pfs/virtio-9p.c b/hw/9pfs/virtio-9p.c index 2bd862fd94..691a1d91f2 100644 --- a/hw/9pfs/virtio-9p.c +++ b/hw/9pfs/virtio-9p.c @@ -65,13 +65,7 @@ ssize_t pdu_unmarshal(V9fsPDU *pdu, size_t offset, const char *fmt, ...) static void pdu_push_and_notify(V9fsPDU *pdu) { - V9fsState *s = pdu->s; - - /* push onto queue and notify */ - virtqueue_push(s->vq, &pdu->elem, pdu->size); - - /* FIXME: we should batch these completions */ - virtio_notify(VIRTIO_DEVICE(s), s->vq); + virtio_9p_push_and_notify(pdu); } static int omode_to_uflags(int8_t mode) |