fsdev: fix some type definitions

To comply with the QEMU coding style.

Signed-off-by: Greg Kurz <groug@kaod.org>
This commit is contained in:
Greg Kurz 2018-01-08 11:18:22 +01:00
parent 01847522bc
commit 1a8d0bb31a
1 changed files with 14 additions and 17 deletions

View File

@ -22,21 +22,19 @@
#define SM_LOCAL_MODE_BITS 0600 #define SM_LOCAL_MODE_BITS 0600
#define SM_LOCAL_DIR_MODE_BITS 0700 #define SM_LOCAL_DIR_MODE_BITS 0700
typedef struct FsCred typedef struct FsCred {
{
uid_t fc_uid; uid_t fc_uid;
gid_t fc_gid; gid_t fc_gid;
mode_t fc_mode; mode_t fc_mode;
dev_t fc_rdev; dev_t fc_rdev;
} FsCred; } FsCred;
struct FsContext; typedef struct FsContext FsContext;
struct V9fsPath; typedef struct V9fsPath V9fsPath;
typedef struct extended_ops { typedef struct ExtendedOps {
int (*get_st_gen)(struct FsContext *, struct V9fsPath *, int (*get_st_gen)(FsContext *, V9fsPath *, mode_t, uint64_t *);
mode_t, uint64_t *); } ExtendedOps;
} extended_ops;
/* export flags */ /* export flags */
#define V9FS_IMMEDIATE_WRITEOUT 0x00000001 #define V9FS_IMMEDIATE_WRITEOUT 0x00000001
@ -81,24 +79,23 @@ typedef struct FsDriverEntry {
mode_t dmode; mode_t dmode;
} FsDriverEntry; } FsDriverEntry;
typedef struct FsContext struct FsContext {
{
uid_t uid; uid_t uid;
char *fs_root; char *fs_root;
int export_flags; int export_flags;
XattrOperations **xops; XattrOperations **xops;
struct extended_ops exops; ExtendedOps exops;
FsThrottle *fst; FsThrottle *fst;
/* fs driver specific data */ /* fs driver specific data */
void *private; void *private;
mode_t fmode; mode_t fmode;
mode_t dmode; mode_t dmode;
} FsContext; };
typedef struct V9fsPath { struct V9fsPath {
uint16_t size; uint16_t size;
char *data; char *data;
} V9fsPath; };
typedef union V9fsFidOpenState V9fsFidOpenState; typedef union V9fsFidOpenState V9fsFidOpenState;
@ -106,9 +103,9 @@ void cred_init(FsCred *);
struct FileOperations struct FileOperations
{ {
int (*parse_opts)(QemuOpts *, struct FsDriverEntry *); int (*parse_opts)(QemuOpts *, FsDriverEntry *);
int (*init)(struct FsContext *); int (*init)(FsContext *);
void (*cleanup)(struct FsContext *); void (*cleanup)(FsContext *);
int (*lstat)(FsContext *, V9fsPath *, struct stat *); int (*lstat)(FsContext *, V9fsPath *, struct stat *);
ssize_t (*readlink)(FsContext *, V9fsPath *, char *, size_t); ssize_t (*readlink)(FsContext *, V9fsPath *, char *, size_t);
int (*chmod)(FsContext *, V9fsPath *, FsCred *); int (*chmod)(FsContext *, V9fsPath *, FsCred *);