summaryrefslogtreecommitdiffstats
path: root/hw/file-op-9p.h
diff options
context:
space:
mode:
authorAneesh Kumar K.V2010-08-26 07:45:23 +0200
committerAneesh Kumar K.V2010-09-08 19:26:42 +0200
commit9ed3ef26e6503c39ca8b68fb8894c62824e4f3b9 (patch)
tree0bbe569bfccb3616f59c1bbe7026d3084ee92238 /hw/file-op-9p.h
parentvirtio-9p: Fix the memset usage (diff)
downloadqemu-9ed3ef26e6503c39ca8b68fb8894c62824e4f3b9.tar.gz
qemu-9ed3ef26e6503c39ca8b68fb8894c62824e4f3b9.tar.xz
qemu-9ed3ef26e6503c39ca8b68fb8894c62824e4f3b9.zip
virtio-9p: Add support for removing xattr
Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Diffstat (limited to 'hw/file-op-9p.h')
-rw-r--r--hw/file-op-9p.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/file-op-9p.h b/hw/file-op-9p.h
index 017183d142..d91b7e7996 100644
--- a/hw/file-op-9p.h
+++ b/hw/file-op-9p.h
@@ -91,6 +91,7 @@ typedef struct FileOperations
ssize_t (*llistxattr)(FsContext *, const char *, void *, size_t);
int (*lsetxattr)(FsContext *, const char *,
const char *, void *, size_t, int);
+ int (*lremovexattr)(FsContext *, const char *, const char *);
void *opaque;
} FileOperations;
#endif