diff options
author | Wei Liu <wei.liu2@citrix.com> | 2016-01-07 18:35:12 +0000 |
---|---|---|
committer | Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> | 2016-01-08 15:30:39 +0530 |
commit | 4b311c5f0b298bef6880656f00c628526a827081 (patch) | |
tree | a62f974abbd91d5d0e51da296979e3a9620cdfb5 /hw/9pfs/9p.h | |
parent | 0d3716b4e6ba81e8632c4ca698488b6e843f9daf (diff) | |
download | qemu-4b311c5f0b298bef6880656f00c628526a827081.tar.gz qemu-4b311c5f0b298bef6880656f00c628526a827081.tar.bz2 qemu-4b311c5f0b298bef6880656f00c628526a827081.zip |
9pfs: export pdu_{submit,alloc,free}
They will be used in later patches.
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/9p.h')
-rw-r--r-- | hw/9pfs/9p.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/hw/9pfs/9p.h b/hw/9pfs/9p.h index 9aeb8745cf..b62c9a885a 100644 --- a/hw/9pfs/9p.h +++ b/hw/9pfs/9p.h @@ -321,5 +321,8 @@ extern int v9fs_name_to_path(V9fsState *s, V9fsPath *dirpath, ssize_t pdu_marshal(V9fsPDU *pdu, size_t offset, const char *fmt, ...); ssize_t pdu_unmarshal(V9fsPDU *pdu, size_t offset, const char *fmt, ...); +V9fsPDU *pdu_alloc(V9fsState *s); +void pdu_free(V9fsPDU *pdu); +void pdu_submit(V9fsPDU *pdu); #endif |