diff options
| author | Anthony Liguori | 2011-12-27 15:53:35 +0100 |
|---|---|---|
| committer | Anthony Liguori | 2011-12-27 15:53:35 +0100 |
| commit | 4e1ea514f9b9f07358b84554dc3d35f533ec3971 (patch) | |
| tree | f010b9112b4fef2f544d01c74173806ef35cd196 /fsdev | |
| parent | Merge remote-tracking branch 'bonzini/nbd-for-anthony' into staging (diff) | |
| parent | scripts/analyse-9p-simpletrace.py: Add symbolic names for 9p operations. (diff) | |
| download | qemu-4e1ea514f9b9f07358b84554dc3d35f533ec3971.tar.gz qemu-4e1ea514f9b9f07358b84554dc3d35f533ec3971.tar.xz 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.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; |
