diff options
author | Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> | 2010-08-26 11:15:23 +0530 |
---|---|---|
committer | Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> | 2010-09-08 22:56:42 +0530 |
commit | 9ed3ef26e6503c39ca8b68fb8894c62824e4f3b9 (patch) | |
tree | 0bbe569bfccb3616f59c1bbe7026d3084ee92238 /hw/file-op-9p.h | |
parent | 783f04e1d419f730639755e6bd4e7026ad6f2a3f (diff) |
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.h | 1 |
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 |