Searched defs:FileOperations (Results 1 – 1 of 1) sorted by relevance
/openbmc/qemu/fsdev/ |
H A D | file-op-9p.h | 83 typedef struct FileOperations FileOperations; typedef 122 struct FileOperations { struct 123 int (*parse_opts)(QemuOpts *, FsDriverEntry *, Error **errp); 124 int (*init)(FsContext *, Error **errp); 125 void (*cleanup)(FsContext *); 126 int (*lstat)(FsContext *, V9fsPath *, struct stat *); 127 ssize_t (*readlink)(FsContext *, V9fsPath *, char *, size_t); 128 int (*chmod)(FsContext *, V9fsPath *, FsCred *); 129 int (*chown)(FsContext *, V9fsPath *, FsCred *); 130 int (*mknod)(FsContext *, V9fsPath *, const char *, FsCred *); [all …]
|