diff options
author | Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> | 2011-05-07 16:01:33 +0530 |
---|---|---|
committer | Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> | 2011-08-08 23:51:21 +0530 |
commit | 930b1e173b31e1a0e77535a9868dc3ec1f426a43 (patch) | |
tree | d8fd3bdef58132687c02e5345bddf6dba94266e4 /hw/9pfs/virtio-9p.h | |
parent | 2a487e05def38b73ae25db61f62fdc00b9e5e732 (diff) | |
download | qemu-930b1e173b31e1a0e77535a9868dc3ec1f426a43.tar.gz qemu-930b1e173b31e1a0e77535a9868dc3ec1f426a43.tar.bz2 qemu-930b1e173b31e1a0e77535a9868dc3ec1f426a43.zip |
hw/9pfs: Update vfs_rename to use coroutines
I guess TRENAME 9p operation needs an update. The 9p op should
more similar renameat. Otherwise anything other than path cannot track
the fid.
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 | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/hw/9pfs/virtio-9p.h b/hw/9pfs/virtio-9p.h index 194f0ea6d3..46d79da920 100644 --- a/hw/9pfs/virtio-9p.h +++ b/hw/9pfs/virtio-9p.h @@ -385,15 +385,6 @@ typedef struct V9fsMkState { V9fsString fullname; } V9fsMkState; -typedef struct V9fsRenameState { - V9fsPDU *pdu; - V9fsFidState *fidp; - size_t offset; - int32_t newdirfid; - V9fsString name; -} V9fsRenameState; - - #define P9_LOCK_SUCCESS 0 #define P9_LOCK_BLOCKED 1 #define P9_LOCK_ERROR 2 |