diff options
author | Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> | 2011-05-18 17:38:07 +0530 |
---|---|---|
committer | Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> | 2011-08-25 20:16:41 +0530 |
commit | 84dfb926e508aeedd5088a4f029464bf2d5b3791 (patch) | |
tree | 77f48e09688e99c6073b3e720aac9ae9189486b1 /hw/9pfs/virtio-9p.h | |
parent | 56a7a874e962e28522857fbf72eaefb1a07e2001 (diff) | |
download | qemu-84dfb926e508aeedd5088a4f029464bf2d5b3791.tar.gz qemu-84dfb926e508aeedd5088a4f029464bf2d5b3791.tar.bz2 qemu-84dfb926e508aeedd5088a4f029464bf2d5b3791.zip |
hw/9pfs: Add reference counting for 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 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/9pfs/virtio-9p.h b/hw/9pfs/virtio-9p.h index 1d8c1b1093..e16e5f46a1 100644 --- a/hw/9pfs/virtio-9p.h +++ b/hw/9pfs/virtio-9p.h @@ -203,6 +203,8 @@ struct V9fsFidState V9fsXattr xattr; } fs; uid_t uid; + int ref; + int clunked; V9fsFidState *next; }; |