diff options
author | Greg Kurz | 2017-05-25 10:30:13 +0200 |
---|---|---|
committer | Greg Kurz | 2017-05-25 10:30:13 +0200 |
commit | a17d8659c466aa2470fdf5b05c88e9e68d40d6ee (patch) | |
tree | bb66e79c60831907c1b0008814b2bc2c6a21654c /hw/9pfs | |
parent | fsdev: don't allow unknown format in marshal/unmarshal (diff) | |
download | qemu-a17d8659c466aa2470fdf5b05c88e9e68d40d6ee.tar.gz qemu-a17d8659c466aa2470fdf5b05c88e9e68d40d6ee.tar.xz qemu-a17d8659c466aa2470fdf5b05c88e9e68d40d6ee.zip |
9pfs: drop pdu_push_and_notify()
Only pdu_complete() needs to notify the client that a request has completed.
Signed-off-by: Greg Kurz <groug@kaod.org>
Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>
Diffstat (limited to 'hw/9pfs')
-rw-r--r-- | hw/9pfs/9p.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/hw/9pfs/9p.c b/hw/9pfs/9p.c index b3048371a8..a25d31e62f 100644 --- a/hw/9pfs/9p.c +++ b/hw/9pfs/9p.c @@ -65,11 +65,6 @@ ssize_t pdu_unmarshal(V9fsPDU *pdu, size_t offset, const char *fmt, ...) return ret; } -static void pdu_push_and_notify(V9fsPDU *pdu) -{ - pdu->s->transport->push_and_notify(pdu); -} - static int omode_to_uflags(int8_t mode) { int ret = 0; @@ -668,7 +663,7 @@ static void coroutine_fn pdu_complete(V9fsPDU *pdu, ssize_t len) pdu->size = len; pdu->id = id; - pdu_push_and_notify(pdu); + pdu->s->transport->push_and_notify(pdu); /* Now wakeup anybody waiting in flush for this request */ if (!qemu_co_queue_next(&pdu->complete)) { |