diff options
author | Aneesh Kumar K.V | 2011-08-02 08:05:54 +0200 |
---|---|---|
committer | Aneesh Kumar K.V | 2011-09-22 18:08:52 +0200 |
commit | 532decb715acb2e03bbe373c9bd914a8499896ee (patch) | |
tree | 9a0592b04564b0d2d2f61b2ef9dd2600c218c6eb /hw/9pfs/virtio-9p-device.c | |
parent | hw/9pfs: Add init callback to fs driver (diff) | |
download | qemu-532decb715acb2e03bbe373c9bd914a8499896ee.tar.gz qemu-532decb715acb2e03bbe373c9bd914a8499896ee.tar.xz qemu-532decb715acb2e03bbe373c9bd914a8499896ee.zip |
hw/9pfs: Add fs driver specific details to fscontext
Add a new context flag PATHNAME_FSCONTEXT and indicate whether
the fs driver track fid using path names. Also add a private
pointer that help us to track fs driver specific values in there
Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Diffstat (limited to 'hw/9pfs/virtio-9p-device.c')
-rw-r--r-- | hw/9pfs/virtio-9p-device.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/9pfs/virtio-9p-device.c b/hw/9pfs/virtio-9p-device.c index 1ffe95b83b..320ed95868 100644 --- a/hw/9pfs/virtio-9p-device.c +++ b/hw/9pfs/virtio-9p-device.c @@ -124,6 +124,7 @@ VirtIODevice *virtio_9p_init(DeviceState *dev, V9fsConf *conf) memcpy(s->tag, conf->tag, len); s->tag_len = len; s->ctx.uid = -1; + s->ctx.flags = 0; s->ops = fse->ops; s->vdev.get_features = virtio_9p_get_features; |