All of lore.kernel.org
 help / color / mirror / Atom feed
From: Gleb Natapov <gleb@redhat.com>
To: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH 3/5] Write table offset and size in one syscall.
Date: Mon, 24 Nov 2008 22:11:29 +0200	[thread overview]
Message-ID: <20081124201129.GD3482@redhat.com> (raw)
In-Reply-To: <492AD970.9050805@codemonkey.ws>

On Mon, Nov 24, 2008 at 10:42:24AM -0600, Anthony Liguori wrote:
>>       new_l1_size = s->l1_size;
>>      if (min_size <= new_l1_size)
>> @@ -460,14 +459,12 @@ static int grow_l1_table(BlockDriverState *bs, int min_size)
>>          new_l1_table[i] = be64_to_cpu(new_l1_table[i]);
>>       /* set new table */
>> -    data64 = cpu_to_be64(new_l1_table_offset);
>> -    if (bdrv_pwrite(s->hd, offsetof(QCowHeader, l1_table_offset),
>> -                    &data64, sizeof(data64)) != sizeof(data64))
>> -        goto fail;
>> -    data32 = cpu_to_be32(new_l1_size);
>> -    if (bdrv_pwrite(s->hd, offsetof(QCowHeader, l1_size),
>> -                    &data32, sizeof(data32)) != sizeof(data32))
>> +    *(uint32_t*)data = cpu_to_be32(new_l1_size);
>> +    *(uint64_t*)&data[4] = cpu_to_be64(new_l1_table_offset);
>> +    if (bdrv_pwrite(s->hd, offsetof(QCowHeader, l1_size), data,
>> +                sizeof(data)) != sizeof(data))
>>          goto fail;
>>
>>   
>
> Why not just introduces a uint8_t data[12] in this function, memcpy to  
> the right offsets, and do one brdv_pwrite?  Then you don't need to do  
> weird things with packing.
>
It is exactly what I did except memcpy part. What can go wrong with
packing the way I did it?

>>          be64_to_cpus(&new_table[i]);
>>  -    data64 = cpu_to_be64(table_offset);
>> +    *(uint64_t*)data = cpu_to_be64(table_offset);
>> +    *(uint32_t*)&data[8] = cpu_to_be32(refcount_table_clusters);
>>      if (bdrv_pwrite(s->hd, offsetof(QCowHeader, refcount_table_offset),
>> -                    &data64, sizeof(data64)) != sizeof(data64))
>> -        goto fail;
>> -    data32 = cpu_to_be32(refcount_table_clusters);
>> -    if (bdrv_pwrite(s->hd, offsetof(QCowHeader, refcount_table_clusters),
>> -                    &data32, sizeof(data32)) != sizeof(data32))
>> +                    data, sizeof(data)) != sizeof(data))
>>          goto fail;
>>   
>
> Same here.  Alternatively, you could use the cpu_to_beXXs() variants and  
> just pass in pointer offsets.
>
That is good idea. I'll use cpu_to_beXXs().

--
			Gleb.

  reply	other threads:[~2008-11-24 20:11 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-11-23 14:52 [Qemu-devel] [PATCH 0/5] QCOW2 small cleanups and changing metadata update order Gleb Natapov
2008-11-23 14:52 ` [Qemu-devel] [PATCH 1/5] Remove tabs from qcow_aio_read_cb(). Fix indentation Gleb Natapov
2008-11-24 16:31   ` Anthony Liguori
2008-11-24 20:03     ` Gleb Natapov
2008-11-23 14:53 ` [Qemu-devel] [PATCH 2/5] Introduce new helper function qcow_shedule_bh() Gleb Natapov
2008-11-24 16:32   ` Anthony Liguori
2008-11-24 20:05     ` Gleb Natapov
2008-11-23 14:53 ` [Qemu-devel] [PATCH 3/5] Write table offset and size in one syscall Gleb Natapov
2008-11-24 16:42   ` Anthony Liguori
2008-11-24 20:11     ` Gleb Natapov [this message]
2008-11-23 14:53 ` [Qemu-devel] [PATCH 4/5] Cleanup {alloc|get}_cluster_offset() Gleb Natapov
2008-11-24 16:47   ` Anthony Liguori
2008-11-23 14:53 ` [Qemu-devel] [PATCH 5/5] Change order of metadata update to prevent loosing guest data because of unexpected exit Gleb Natapov
2008-11-24 16:49   ` Anthony Liguori
2008-11-24 20:19     ` Gleb Natapov

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=20081124201129.GD3482@redhat.com \
    --to=gleb@redhat.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.