qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: jvrao <jvrao@linux.vnet.ibm.com>
To: "Aneesh Kumar K. V" <aneesh.kumar@linux.vnet.ibm.com>
Cc: Anthony Liguori <aliguori@us.ibm.com>,
	qemu-devel@nongnu.org, Gautham R Shenoy <ego@in.ibm.com>
Subject: Re: [Qemu-devel] [PATCH 04/17] virtio-9p: Implement P9_TSTAT
Date: Mon, 08 Mar 2010 18:08:19 -0800	[thread overview]
Message-ID: <4B95AD93.1070502@linux.vnet.ibm.com> (raw)
In-Reply-To: <87vddcjhpv.fsf@linux.vnet.ibm.com>

Aneesh Kumar K. V wrote:
> On Wed, 3 Mar 2010 23:35:36 +0300 (MSK), malc <av1474@comtv.ru> wrote:
>> On Wed, 3 Mar 2010, Anthony Liguori wrote:
>>
>>> This get the mount to work on the guest
>>>
>>> [kiran@linux.vnet.ibm.com: malloc to qemu_malloc conversion]
>>>
>>> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
>>> Signed-off-by: Gautham R Shenoy <ego@in.ibm.com>
>>> Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
>>> ---
>>>  hw/virtio-9p-local.c |    7 ++
>>>  hw/virtio-9p.c       |  169 +++++++++++++++++++++++++++++++++++++++++++++++++-
>>>  2 files changed, 174 insertions(+), 2 deletions(-)
>>>
>>> diff --git a/hw/virtio-9p-local.c b/hw/virtio-9p-local.c
>>> index 204437c..9752f76 100644
>>> --- a/hw/virtio-9p-local.c
>>> +++ b/hw/virtio-9p-local.c
>>> @@ -72,9 +72,16 @@ static int local_setuid(void *opaque, uid_t uid)
>>>      return 0;
>>>  }
>>>  
>>> +static ssize_t local_readlink(void *opaque, const char *path,
>>> +			      char *buf, size_t bufsz)
>>> +{
>>> +    return readlink(rpath(path), buf, bufsz);
>>> +}
>>> +
>>>  static V9fsPosixFileOperations ops = {
>>>      .lstat = local_lstat,
>>>      .setuid = local_setuid,
>>> +    .readlink = local_readlink,
>>>  };
>>>  
>>>  V9fsPosixFileOperations *virtio_9p_init_local(const char *path)
>>> diff --git a/hw/virtio-9p.c b/hw/virtio-9p.c
>>> index c63ac80..10bcd89 100644
>>> --- a/hw/virtio-9p.c
>>> +++ b/hw/virtio-9p.c
>>> @@ -102,6 +102,21 @@ static int posix_setuid(V9fsState *s, uid_t uid)
>>>      return s->ops->setuid(s->ops->opaque, uid);
>>>  }
>>>  
>>> +static ssize_t posix_readlink(V9fsState *s, V9fsString *path, V9fsString *buf)
>>> +{
>>> +    ssize_t len;
>>> +
>>> +    buf->data = qemu_malloc(1024);
>>> +
>>> +    len = s->ops->readlink(s->ops->opaque, path->data, buf->data, 1024 - 1);
>>> +    if (len > -1) {
>>> +	buf->size = len;
>>> +	buf->data[len] = 0;
>>> +    }
>>> +
>>> +    return len;
>>> +}
>>> +
>>>  static void v9fs_string_free(V9fsString *str)
>>>  {
>>>      free(str->data);
>> Should be qemu_free, no?
>>
> 
> 
> Updated the patch

Is  there any reason (other than being coding style) in using qemu_free() 
instead of free()? As per qem-malloc.c qemu_free() is nothing but free().

The reason I am asking is.. tracking string allocs become tricky 
if some of them were defined using qemu_alloc() and others are allocated through
sprintf().

Thanks,
JV


> 
> -aneesh
> 
> 

  reply	other threads:[~2010-03-09  2:08 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-03-03 19:00 [Qemu-devel] [PATCH 00/17][RFC] virtio-9p: paravirtual filesystem passthrough Anthony Liguori
2010-03-03 19:00 ` Anthony Liguori
2010-03-03 19:00 ` [Qemu-devel] [PATCH 01/17] vitio-9p: Add a virtio 9p device to qemu Anthony Liguori
2010-03-03 19:00 ` [Qemu-devel] [PATCH 02/17] vrtio-9p: Implement P9_TVERSION for 9P Anthony Liguori
2010-03-04  9:23   ` [Qemu-devel] " Michael S. Tsirkin
2010-03-04 14:30     ` Aneesh Kumar K. V
2010-03-03 19:01 ` [Qemu-devel] [PATCH 03/17] virtio-9p: Implement P9_TATTACH Anthony Liguori
2010-03-03 19:01 ` [Qemu-devel] [PATCH 04/17] virtio-9p: Implement P9_TSTAT Anthony Liguori
2010-03-03 20:35   ` malc
2010-03-04 14:15     ` Aneesh Kumar K. V
2010-03-09  2:08       ` jvrao [this message]
2010-03-09 12:30         ` Paul Brook
2010-03-09 14:35           ` Aneesh Kumar K. V
2010-03-09 15:59           ` jvrao
2010-03-11 16:37             ` Paul Brook
2010-03-03 19:01 ` [Qemu-devel] [PATCH 05/17] virtio-9p: Implement P9_TWALK Anthony Liguori
2010-03-03 19:01 ` [Qemu-devel] [PATCH 06/17] virtio-9p: Implement P9_TOPEN Anthony Liguori
2010-03-03 19:01 ` [Qemu-devel] [PATCH 07/17] virtio-9p: Implement P9_TREAD Anthony Liguori
2010-03-03 19:01 ` [Qemu-devel] [PATCH 08/17] virtio-9p: Implement P9_TCLUNK Anthony Liguori
2010-03-03 19:01 ` [Qemu-devel] [PATCH 09/17] virtio-9p: Implement P9_TWRITE Anthony Liguori
2010-03-03 19:01 ` [Qemu-devel] [PATCH 10/17] virtio-9p: Implement P9_TCREATE Anthony Liguori
2010-03-03 19:01 ` [Qemu-devel] [PATCH 11/17] virtio-9p: Implement P9_TWSTAT Anthony Liguori
2010-03-03 19:01 ` [Qemu-devel] [PATCH 12/17] virtio-9p: Implement P9_TREMOVE Anthony Liguori
2010-03-03 19:01 ` [Qemu-devel] [PATCH 13/17] virtio-9p: Implement P9_TFLUSH Anthony Liguori
2010-03-03 19:01 ` [Qemu-devel] [PATCH 14/17] virtio-9p: Add multiple mount point support Anthony Liguori
2010-03-03 19:01 ` [Qemu-devel] [PATCH 15/17] virtio-9p: Use little endian format on virtio Anthony Liguori
2010-03-03 19:01 ` [Qemu-devel] [PATCH 16/17] virtio-9p: Add support for hardlink Anthony Liguori
2010-03-03 19:01 ` [Qemu-devel] [PATCH 17/17] Implement sync support in 9p server Anthony Liguori

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=4B95AD93.1070502@linux.vnet.ibm.com \
    --to=jvrao@linux.vnet.ibm.com \
    --cc=aliguori@us.ibm.com \
    --cc=aneesh.kumar@linux.vnet.ibm.com \
    --cc=ego@in.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).