summary refs log tree commit diff stats
path: root/hw/9pfs/virtio-9p.h
diff options
context:
space:
mode:
authorAnthony Liguori <aliguori@us.ibm.com>2011-12-27 08:53:35 -0600
committerAnthony Liguori <aliguori@us.ibm.com>2011-12-27 08:53:35 -0600
commit4e1ea514f9b9f07358b84554dc3d35f533ec3971 (patch)
treef010b9112b4fef2f544d01c74173806ef35cd196 /hw/9pfs/virtio-9p.h
parentebdfc3c83cef33f8f619ffcb57d297c6063db59d (diff)
parent058a96ed506d77714bcce3d69b351e364078c080 (diff)
downloadfocaccia-qemu-4e1ea514f9b9f07358b84554dc3d35f533ec3971.tar.gz
focaccia-qemu-4e1ea514f9b9f07358b84554dc3d35f533ec3971.zip
Merge remote-tracking branch 'aneesh/for-upstream' into staging
* aneesh/for-upstream:
  scripts/analyse-9p-simpletrace.py:	Add symbolic names for 9p operations.
  hw/9pfs: iattr_valid flags are kernel internal flags map them to 9p values.
  hw/9pfs: Use the correct signed type for different variables
  hw/9pfs: replace iovec manipulation with QEMUIOVector
Diffstat (limited to 'hw/9pfs/virtio-9p.h')
-rw-r--r--hw/9pfs/virtio-9p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/9pfs/virtio-9p.h b/hw/9pfs/virtio-9p.h
index 8b612da529..19a797b727 100644
--- a/hw/9pfs/virtio-9p.h
+++ b/hw/9pfs/virtio-9p.h
@@ -156,7 +156,7 @@ typedef struct V9fsFidState V9fsFidState;
 
 typedef struct V9fsString
 {
-    int16_t size;
+    uint16_t size;
     char *data;
 } V9fsString;