From: "Aneesh Kumar K.V" <aneesh.kumar@linux.vnet.ibm.com>
To: qemu-devel@nongnu.org
Cc: aliguori@us.ibm.com,
"Venkateswararao Jujjuri (JV)" <jvrao@linux.vnet.ibm.com>,
"Aneesh Kumar K.V" <aneesh.kumar@linux.vnet.ibm.com>
Subject: [Qemu-devel] [PATCH -V4 08/28] [virtio-9p] clean up v9fs_lcreate
Date: Mon, 8 Aug 2011 22:36:35 +0530 [thread overview]
Message-ID: <1312823215-28675-9-git-send-email-aneesh.kumar@linux.vnet.ibm.com> (raw)
In-Reply-To: <1312823215-28675-1-git-send-email-aneesh.kumar@linux.vnet.ibm.com>
From: Venkateswararao Jujjuri (JV) <jvrao@linux.vnet.ibm.com>
Rearrange the code so that we can avoid V9fsLcreateState
and additional malloc()s.
Signed-off-by: Venkateswararao Jujjuri "<jvrao@linux.vnet.ibm.com>
Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
---
hw/9pfs/virtio-9p.c | 63 ++++++++++++++++++++++++--------------------------
hw/9pfs/virtio-9p.h | 11 ---------
2 files changed, 30 insertions(+), 44 deletions(-)
diff --git a/hw/9pfs/virtio-9p.c b/hw/9pfs/virtio-9p.c
index 90636c3..3447b91 100644
--- a/hw/9pfs/virtio-9p.c
+++ b/hw/9pfs/virtio-9p.c
@@ -1609,63 +1609,60 @@ out:
static void v9fs_lcreate(void *opaque)
{
- V9fsPDU *pdu = opaque;
- V9fsState *s = pdu->s;
int32_t dfid, flags, mode;
gid_t gid;
- V9fsLcreateState *vs;
ssize_t err = 0;
+ ssize_t offset = 7;
+ V9fsString fullname;
+ V9fsString name;
+ V9fsFidState *fidp;
+ struct stat stbuf;
+ V9fsQID qid;
+ int32_t iounit;
+ V9fsPDU *pdu = opaque;
- vs = qemu_malloc(sizeof(*vs));
- vs->pdu = pdu;
- vs->offset = 7;
-
- v9fs_string_init(&vs->fullname);
+ v9fs_string_init(&fullname);
- pdu_unmarshal(vs->pdu, vs->offset, "dsddd", &dfid, &vs->name, &flags,
- &mode, &gid);
+ pdu_unmarshal(pdu, offset, "dsddd", &dfid, &name, &flags,
+ &mode, &gid);
- vs->fidp = lookup_fid(s, dfid);
- if (vs->fidp == NULL) {
+ fidp = lookup_fid(pdu->s, dfid);
+ if (fidp == NULL) {
err = -ENOENT;
goto out;
}
- v9fs_string_sprintf(&vs->fullname, "%s/%s", vs->fidp->path.data,
- vs->name.data);
+ v9fs_string_sprintf(&fullname, "%s/%s", fidp->path.data, name.data);
/* Ignore direct disk access hint until the server supports it. */
flags &= ~O_DIRECT;
- vs->fidp->fs.fd = v9fs_do_open2(s, vs->fullname.data, vs->fidp->uid,
- gid, flags, mode);
- if (vs->fidp->fs.fd == -1) {
+ fidp->fs.fd = v9fs_do_open2(pdu->s, fullname.data, fidp->uid,
+ gid, flags, mode);
+ if (fidp->fs.fd == -1) {
err = -errno;
goto out;
}
+ fidp->fid_type = P9_FID_FILE;
+ iounit = get_iounit(pdu->s, &fullname);
- vs->fidp->fid_type = P9_FID_FILE;
- vs->iounit = get_iounit(s, &vs->fullname);
-
- err = v9fs_do_lstat(s, &vs->fullname, &vs->stbuf);
+ err = v9fs_do_lstat(pdu->s, &fullname, &stbuf);
if (err == 0) {
- v9fs_string_copy(&vs->fidp->path, &vs->fullname);
- stat_to_qid(&vs->stbuf, &vs->qid);
- vs->offset += pdu_marshal(vs->pdu, vs->offset, "Qd", &vs->qid,
- vs->iounit);
- err = vs->offset;
+ v9fs_string_copy(&fidp->path, &fullname);
+ stat_to_qid(&stbuf, &qid);
+ offset += pdu_marshal(pdu, offset, "Qd", &qid, iounit);
+ err = offset;
} else {
- vs->fidp->fid_type = P9_FID_NONE; /*TODO:Why are we keeping this fid?*/
+ fidp->fid_type = P9_FID_NONE; /*TODO:Why are we keeping this fid?*/
err = -errno;
- if (vs->fidp->fs.fd > 0) {
- close(vs->fidp->fs.fd);
+ if (fidp->fs.fd > 0) {
+ close(fidp->fs.fd);
}
}
out:
- complete_pdu(s, vs->pdu, err);
- v9fs_string_free(&vs->name);
- v9fs_string_free(&vs->fullname);
- qemu_free(vs);
+ complete_pdu(pdu->s, pdu, err);
+ v9fs_string_free(&name);
+ v9fs_string_free(&fullname);
}
static void v9fs_post_do_fsync(V9fsState *s, V9fsPDU *pdu, int err)
diff --git a/hw/9pfs/virtio-9p.h b/hw/9pfs/virtio-9p.h
index edf3413..97ceb72 100644
--- a/hw/9pfs/virtio-9p.h
+++ b/hw/9pfs/virtio-9p.h
@@ -236,17 +236,6 @@ typedef struct V9fsCreateState {
int iounit;
} V9fsCreateState;
-typedef struct V9fsLcreateState {
- V9fsPDU *pdu;
- size_t offset;
- V9fsFidState *fidp;
- V9fsQID qid;
- int32_t iounit;
- struct stat stbuf;
- V9fsString name;
- V9fsString fullname;
-} V9fsLcreateState;
-
typedef struct V9fsStatState {
V9fsPDU *pdu;
size_t offset;
--
1.7.4.1
next prev parent reply other threads:[~2011-08-08 17:08 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-08-08 17:06 [Qemu-devel] [PATCHSET 2] VirtFS coroutine changes Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 01/28] hw/9pfs: Update vfs_rename to use coroutines Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 02/28] hw/9pfs: Add yeild support for fstat coroutine Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 03/28] hw/9pfs: Update v9fs_lock to use coroutines Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 04/28] hw/9pfs: Update v9fs_getlock " Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 05/28] hw/9pfs: Add yield support for open and opendir coroutine Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 06/28] hw/9pfs: Update v9fs_open to use coroutines Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 07/28] [virtio-9p] Remove post functions for v9fs_lcreate Aneesh Kumar K.V
2011-08-08 17:06 ` Aneesh Kumar K.V [this message]
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 09/28] [virtio-9p] coroutine and threading for open2 Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 10/28] hw/9pfs: Update v9fs_stat to use coroutines Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 11/28] hw/9pfs: Update v9fs_walk " Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 12/28] hw/9pfs: Add yeild support for clunk related coroutine Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 13/28] hw/9pfs: Update v9fs_clunk to use coroutines Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 14/28] hw/9pfs: Add yield support for fsync coroutine Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 15/28] hw/9pfs: Update v9fs_fsync to use coroutines Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 16/28] [virtio-9p] Remove post functions for v9fs_create Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 17/28] [virtio-9p] clean up v9fs_create Rearrange the code Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 18/28] [virtio-9p] Remove post functions for v9fs_symlink Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 19/28] [virtio-9p] clean up v9fs_symlink Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 20/28] [virtio-9p] coroutine and threading for v9fs_do_symlink Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 21/28] [virtio-9p] coroutine and threading for v9fs_do_link Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 22/28] hw/9pfs: Add yield support for pwritev coroutine Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 23/28] hw/9pfs: Update v9fs_write to use coroutines Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 24/28] hw/9pfs: Update v9fs_wstat " Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 25/28] hw/9pfs: Update v9fs_attach " Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 26/28] hw/9pfs: Add yield support for preadv coroutine Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 27/28] hw/9pfs: Update v9fs_read to use coroutines Aneesh Kumar K.V
2011-08-08 17:06 ` [Qemu-devel] [PATCH -V4 28/28] use readdir_r instead of readdir for reentrancy Aneesh Kumar K.V
2011-08-11 15:47 ` [Qemu-devel] [PATCHSET 2] VirtFS coroutine changes Aneesh Kumar K.V
2011-08-16 8:03 ` [Qemu-devel] [PULL] " Aneesh Kumar K.V
2011-08-21 23:36 ` Anthony Liguori
2011-08-22 5:52 ` Aneesh Kumar K.V
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1312823215-28675-9-git-send-email-aneesh.kumar@linux.vnet.ibm.com \
--to=aneesh.kumar@linux.vnet.ibm.com \
--cc=aliguori@us.ibm.com \
--cc=jvrao@linux.vnet.ibm.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).