summary refs log tree commit diff stats
path: root/fsdev
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 /fsdev
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 'fsdev')
-rw-r--r--fsdev/file-op-9p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fsdev/file-op-9p.h b/fsdev/file-op-9p.h
index a85ecd30b0..c823fe0aee 100644
--- a/fsdev/file-op-9p.h
+++ b/fsdev/file-op-9p.h
@@ -74,7 +74,7 @@ typedef struct FsContext
 } FsContext;
 
 typedef struct V9fsPath {
-    int16_t size;
+    uint16_t size;
     char *data;
 } V9fsPath;