diff options
author | Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> | 2011-08-02 11:35:54 +0530 |
---|---|---|
committer | Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> | 2011-09-22 21:38:52 +0530 |
commit | 0174fe73e605311598d9e7f03e95be9705a3e0e7 (patch) | |
tree | f0336eb862e56d38b3081079f5407d61b15ba7a0 /hw/9pfs/virtio-9p-local.c | |
parent | 2289be19aecc290263ef1f3c1f4a0e9ea32aaad6 (diff) | |
download | qemu-0174fe73e605311598d9e7f03e95be9705a3e0e7.tar.gz qemu-0174fe73e605311598d9e7f03e95be9705a3e0e7.tar.bz2 qemu-0174fe73e605311598d9e7f03e95be9705a3e0e7.zip |
hw/9pfs: Add init callback to fs driver
This call back can be used to do fs driver specific initialization.
Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Diffstat (limited to 'hw/9pfs/virtio-9p-local.c')
-rw-r--r-- | hw/9pfs/virtio-9p-local.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/hw/9pfs/virtio-9p-local.c b/hw/9pfs/virtio-9p-local.c index 55f62f9570..61954fefec 100644 --- a/hw/9pfs/virtio-9p-local.c +++ b/hw/9pfs/virtio-9p-local.c @@ -21,7 +21,6 @@ #include <sys/un.h> #include <attr/xattr.h> - static int local_lstat(FsContext *fs_ctx, V9fsPath *fs_path, struct stat *stbuf) { int err; @@ -646,7 +645,13 @@ static int local_unlinkat(FsContext *ctx, V9fsPath *dir, return ret; } +static int local_init(FsContext *ctx) +{ + return 0; +} + FileOperations local_ops = { + .init = local_init, .lstat = local_lstat, .readlink = local_readlink, .close = local_close, |