diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2011-12-27 08:53:35 -0600 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-12-27 08:53:35 -0600 |
commit | 4e1ea514f9b9f07358b84554dc3d35f533ec3971 (patch) | |
tree | f010b9112b4fef2f544d01c74173806ef35cd196 /fsdev/file-op-9p.h | |
parent | ebdfc3c83cef33f8f619ffcb57d297c6063db59d (diff) | |
parent | 058a96ed506d77714bcce3d69b351e364078c080 (diff) |
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/file-op-9p.h')
-rw-r--r-- | fsdev/file-op-9p.h | 2 |
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; |