Re: [Qemu-devel] [V2 03/25] [virtio-9p] Remove post functions for v9fs_readlink.

2011-05-18 Thread Stefan Hajnoczi
On Tue, May 17, 2011 at 8:43 PM, Venkateswararao Jujjuri (JV) wrote: > @@ -3621,8 +3605,13 @@ static void v9fs_readlink(void *opaque) > >     v9fs_string_init(&vs->target); >     err = v9fs_do_readlink(s, &fidp->path, &vs->target); > -    v9fs_readlink_post_readlink(s, vs, err); > -    return; > +

[Qemu-devel] [V2 03/25] [virtio-9p] Remove post functions for v9fs_readlink.

2011-05-17 Thread Venkateswararao Jujjuri (JV)
In the process of preparation for coroutine threads, remove all post functions and make the function more readable. Signed-off-by: Venkateswararao Jujjuri " --- hw/9pfs/virtio-9p.c | 25 +++-- 1 files changed, 7 insertions(+), 18 deletions(-) diff --git a/hw/9pfs/virtio-9p.