]> git.proxmox.com Git - mirror_qemu.git/blobdiff - fsdev/file-op-9p.h
meson: convert fsdev/
[mirror_qemu.git] / fsdev / file-op-9p.h
index 3fa062b39f1ba3ff3edf408ed68be33acb0d982f..f2f7772c86d5ae45d1a8bb539a9a023ae8379b3f 100644 (file)
@@ -59,6 +59,11 @@ typedef struct ExtendedOps {
 #define V9FS_RDONLY                 0x00000040
 #define V9FS_PROXY_SOCK_FD          0x00000080
 #define V9FS_PROXY_SOCK_NAME        0x00000100
+/*
+ * multidevs option (either one of the two applies exclusively)
+ */
+#define V9FS_REMAP_INODES           0x00000200
+#define V9FS_FORBID_MULTIDEVS       0x00000400
 
 #define V9FS_SEC_MASK               0x0000003C
 
@@ -147,7 +152,6 @@ struct FileOperations
     int (*renameat)(FsContext *ctx, V9fsPath *olddir, const char *old_name,
                     V9fsPath *newdir, const char *new_name);
     int (*unlinkat)(FsContext *ctx, V9fsPath *dir, const char *name, int flags);
-    void *opaque;
 };
 
 #endif