qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v2] qed: adjust the way to get nb_sectors
@ 2011-11-01  8:04 Zhi Yong Wu
  2011-11-01  9:10 ` Stefan Hajnoczi
  2011-11-02 11:13 ` Kevin Wolf
  0 siblings, 2 replies; 3+ messages in thread
From: Zhi Yong Wu @ 2011-11-01  8:04 UTC (permalink / raw)
  To: kwolf; +Cc: zwu.kernel, wuzhy, qemu-devel, stefanha

This patch is only to refactor some lines of codes to get better and more robust codes.

As you have seen, in qed_read_table_cb() it's nice to
use qiov->size because that function doesn't obviously use a single
struct iovec.

In other two functions, if qiov use more than one struct iovec, the existing way will get wrong nb_sectors.
To make the code more robust, it will be nicer to refactor the existing way as below.


Signed-off-by: Zhi Yong Wu <wuzhy@linux.vnet.ibm.com>
---
 block/qed-table.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/block/qed-table.c b/block/qed-table.c
index f31f9ff..8ee8443 100644
--- a/block/qed-table.c
+++ b/block/qed-table.c
@@ -29,7 +29,7 @@ static void qed_read_table_cb(void *opaque, int ret)
 {
     QEDReadTableCB *read_table_cb = opaque;
     QEDTable *table = read_table_cb->table;
-    int noffsets = read_table_cb->iov.iov_len / sizeof(uint64_t);
+    int noffsets = read_table_cb->qiov.size / sizeof(uint64_t);
     int i;
 
     /* Handle I/O error */
@@ -65,7 +65,7 @@ static void qed_read_table(BDRVQEDState *s, uint64_t offset, QEDTable *table,
 
     qemu_iovec_init_external(qiov, &read_table_cb->iov, 1);
     aiocb = bdrv_aio_readv(s->bs->file, offset / BDRV_SECTOR_SIZE, qiov,
-                           read_table_cb->iov.iov_len / BDRV_SECTOR_SIZE,
+                           qiov->size / BDRV_SECTOR_SIZE,
                            qed_read_table_cb, read_table_cb);
     if (!aiocb) {
         qed_read_table_cb(read_table_cb, -EIO);
@@ -160,7 +160,7 @@ static void qed_write_table(BDRVQEDState *s, uint64_t offset, QEDTable *table,
 
     aiocb = bdrv_aio_writev(s->bs->file, offset / BDRV_SECTOR_SIZE,
                             &write_table_cb->qiov,
-                            write_table_cb->iov.iov_len / BDRV_SECTOR_SIZE,
+                            write_table_cb->qiov.size / BDRV_SECTOR_SIZE,
                             qed_write_table_cb, write_table_cb);
     if (!aiocb) {
         qed_write_table_cb(write_table_cb, -EIO);
-- 
1.7.6

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [Qemu-devel] [PATCH v2] qed: adjust the way to get nb_sectors
  2011-11-01  8:04 [Qemu-devel] [PATCH v2] qed: adjust the way to get nb_sectors Zhi Yong Wu
@ 2011-11-01  9:10 ` Stefan Hajnoczi
  2011-11-02 11:13 ` Kevin Wolf
  1 sibling, 0 replies; 3+ messages in thread
From: Stefan Hajnoczi @ 2011-11-01  9:10 UTC (permalink / raw)
  To: Zhi Yong Wu; +Cc: kwolf, zwu.kernel, qemu-devel, stefanha

On Tue, Nov 1, 2011 at 8:04 AM, Zhi Yong Wu <wuzhy@linux.vnet.ibm.com> wrote:
> This patch is only to refactor some lines of codes to get better and more robust codes.
>
> As you have seen, in qed_read_table_cb() it's nice to
> use qiov->size because that function doesn't obviously use a single
> struct iovec.
>
> In other two functions, if qiov use more than one struct iovec, the existing way will get wrong nb_sectors.
> To make the code more robust, it will be nicer to refactor the existing way as below.
>
>
> Signed-off-by: Zhi Yong Wu <wuzhy@linux.vnet.ibm.com>
> ---
>  block/qed-table.c |    6 +++---
>  1 files changed, 3 insertions(+), 3 deletions(-)

Acked-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Qemu-devel] [PATCH v2] qed: adjust the way to get nb_sectors
  2011-11-01  8:04 [Qemu-devel] [PATCH v2] qed: adjust the way to get nb_sectors Zhi Yong Wu
  2011-11-01  9:10 ` Stefan Hajnoczi
@ 2011-11-02 11:13 ` Kevin Wolf
  1 sibling, 0 replies; 3+ messages in thread
From: Kevin Wolf @ 2011-11-02 11:13 UTC (permalink / raw)
  To: Zhi Yong Wu; +Cc: zwu.kernel, qemu-devel, stefanha

Am 01.11.2011 09:04, schrieb Zhi Yong Wu:
> This patch is only to refactor some lines of codes to get better and more robust codes.
> 
> As you have seen, in qed_read_table_cb() it's nice to
> use qiov->size because that function doesn't obviously use a single
> struct iovec.
> 
> In other two functions, if qiov use more than one struct iovec, the existing way will get wrong nb_sectors.
> To make the code more robust, it will be nicer to refactor the existing way as below.
> 
> 
> Signed-off-by: Zhi Yong Wu <wuzhy@linux.vnet.ibm.com>

Thanks, applied to the block branch.

Kevin

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-11-02 11:11 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-01  8:04 [Qemu-devel] [PATCH v2] qed: adjust the way to get nb_sectors Zhi Yong Wu
2011-11-01  9:10 ` Stefan Hajnoczi
2011-11-02 11:13 ` Kevin Wolf

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).