diff mbox

[2/4] kvm tool: avoid byte-order conversion during each read operation

Message ID 1302877138-6695-2-git-send-email-prasadjoshi124@gmail.com (mailing list archive)
State New, archived
Headers show

Commit Message

Prasad Joshi April 15, 2011, 2:18 p.m. UTC
Signed-off-by: Prasad Joshi <prasadjoshi124@gmail.com>
---
 tools/kvm/qcow.c |   17 ++++++++++++-----
 1 files changed, 12 insertions(+), 5 deletions(-)
diff mbox

Patch

diff --git a/tools/kvm/qcow.c b/tools/kvm/qcow.c
index 219fd6b..243bfa8 100644
--- a/tools/kvm/qcow.c
+++ b/tools/kvm/qcow.c
@@ -58,7 +58,7 @@  static int qcow1_read_sector(struct disk_image *self, uint64_t sector, void *dst
 	if (l1_idx >= q->table.table_size)
 		goto out_error;
 
-	l2_table_offset	= be64_to_cpu(q->table.l1_table[l1_idx]);
+	l2_table_offset	= q->table.l1_table[l1_idx];
 	if (!l2_table_offset)
 		goto zero_sector;
 
@@ -128,16 +128,23 @@  struct disk_image_operations qcow1_disk_ops = {
 static int qcow_read_l1_table(struct qcow *q)
 {
 	struct qcow1_header *header = q->header;
+	struct qcow_table *table = &q->table;
+	u64 i;
 
-	q->table.table_size	= header->size / ((1 << header->l2_bits) * (1 << header->cluster_bits));
+	table->table_size = header->size / ((1 << header->l2_bits) *
+			(1 << header->cluster_bits));
 
-	q->table.l1_table	= calloc(q->table.table_size, sizeof(uint64_t));
-	if (!q->table.l1_table)
+	table->l1_table	= calloc(table->table_size, sizeof(u64));
+	if (!table->l1_table)
 		return -1;
 
-	if (pread_in_full(q->fd, q->table.l1_table, sizeof(uint64_t) * q->table.table_size, header->l1_table_offset) < 0)
+	if (pread_in_full(q->fd, table->l1_table, sizeof(u64) *
+				table->table_size, header->l1_table_offset) < 0)
 		return -1;
 
+	for (i = 0; i < table->table_size; i++)
+		be64_to_cpus(&table->l1_table[i]);
+
 	return 0;
 }