Re: [Qemu-devel] [V4 PATCH 6/8] Support for creating special files

2011-02-01 Thread Stefan Hajnoczi
On Tue, Feb 1, 2011 at 5:27 AM, M. Mohan Kumar mo...@in.ibm.com wrote: +static int passthrough_mknod(FsContext *fs_ctx, const char *path, FsCred *credp) +{ +    V9fsFileObjectRequest request; +    int retval, error = 0; + +    fill_request(request, path, credp); +    request.data.type =

[Qemu-devel] [V4 PATCH 6/8] Support for creating special files

2011-01-31 Thread M. Mohan Kumar
Add both server and client side interfaces to create special files (directory, device nodes, links and symbolic links) Signed-off-by: M. Mohan Kumar mo...@in.ibm.com --- hw/9pfs/virtio-9p-chroot.c | 84 ++ hw/9pfs/virtio-9p-chroot.h |2 + hw/9pfs/virtio-9p-local.c