diff options
author | Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> | 2011-05-18 16:04:01 -0700 |
---|---|---|
committer | Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> | 2011-08-08 23:42:58 +0530 |
commit | 88a4763e88e7724e739515d3e2c734f7ec0ea9cf (patch) | |
tree | f5a09ba85a2f7f68d6d179724728b0fc85342811 /hw/9pfs/virtio-9p.h | |
parent | 94840ff9f383d4f7099394cc53af48f0a7065132 (diff) | |
download | qemu-88a4763e88e7724e739515d3e2c734f7ec0ea9cf.zip qemu-88a4763e88e7724e739515d3e2c734f7ec0ea9cf.tar.gz qemu-88a4763e88e7724e739515d3e2c734f7ec0ea9cf.tar.bz2 |
hw/9pfs: Update v9fs_statfs to use coroutines
Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Diffstat (limited to 'hw/9pfs/virtio-9p.h')
-rw-r--r-- | hw/9pfs/virtio-9p.h | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/hw/9pfs/virtio-9p.h b/hw/9pfs/virtio-9p.h index 8196da0..eb6cd23 100644 --- a/hw/9pfs/virtio-9p.h +++ b/hw/9pfs/virtio-9p.h @@ -398,28 +398,6 @@ struct virtio_9p_config uint8_t tag[0]; } __attribute__((packed)); -typedef struct V9fsStatfs -{ - uint32_t f_type; - uint32_t f_bsize; - uint64_t f_blocks; - uint64_t f_bfree; - uint64_t f_bavail; - uint64_t f_files; - uint64_t f_ffree; - uint64_t fsid_val; - uint32_t f_namelen; -} V9fsStatfs; - -typedef struct V9fsStatfsState { - V9fsPDU *pdu; - size_t offset; - int32_t fid; - V9fsStatfs v9statfs; - V9fsFidState *fidp; - struct statfs stbuf; -} V9fsStatfsState; - typedef struct V9fsMkState { V9fsPDU *pdu; size_t offset; |