2 * QEMU Enhanced Disk Format Table I/O
4 * Copyright IBM, Corp. 2010
7 * Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
8 * Anthony Liguori <aliguori@us.ibm.com>
10 * This work is licensed under the terms of the GNU LGPL, version 2 or later.
11 * See the COPYING.LIB file in the top-level directory.
15 #include "qemu/osdep.h"
17 #include "qemu/sockets.h" /* for EINPROGRESS on Windows */
19 #include "qemu/bswap.h"
21 /* Called with table_lock held. */
22 static int qed_read_table(BDRVQEDState
*s
, uint64_t offset
, QEDTable
*table
)
24 QEMUIOVector qiov
= QEMU_IOVEC_INIT_BUF(
25 qiov
, table
->offsets
, s
->header
.cluster_size
* s
->header
.table_size
);
29 trace_qed_read_table(s
, offset
, table
);
31 qemu_co_mutex_unlock(&s
->table_lock
);
32 ret
= bdrv_preadv(s
->bs
->file
, offset
, &qiov
);
33 qemu_co_mutex_lock(&s
->table_lock
);
38 /* Byteswap offsets */
39 noffsets
= qiov
.size
/ sizeof(uint64_t);
40 for (i
= 0; i
< noffsets
; i
++) {
41 table
->offsets
[i
] = le64_to_cpu(table
->offsets
[i
]);
47 trace_qed_read_table_cb(s
, table
, ret
);
52 * Write out an updated part or all of a table
55 * @offset: Offset of table in image file, in bytes
57 * @index: Index of first element
58 * @n: Number of elements
59 * @flush: Whether or not to sync to disk
61 * Called with table_lock held.
63 static int qed_write_table(BDRVQEDState
*s
, uint64_t offset
, QEDTable
*table
,
64 unsigned int index
, unsigned int n
, bool flush
)
66 unsigned int sector_mask
= BDRV_SECTOR_SIZE
/ sizeof(uint64_t) - 1;
67 unsigned int start
, end
, i
;
73 trace_qed_write_table(s
, offset
, table
, index
, n
);
75 /* Calculate indices of the first and one after last elements */
76 start
= index
& ~sector_mask
;
77 end
= (index
+ n
+ sector_mask
) & ~sector_mask
;
79 len_bytes
= (end
- start
) * sizeof(uint64_t);
81 new_table
= qemu_blockalign(s
->bs
, len_bytes
);
82 qemu_iovec_init_buf(&qiov
, new_table
->offsets
, len_bytes
);
85 for (i
= start
; i
< end
; i
++) {
86 uint64_t le_offset
= cpu_to_le64(table
->offsets
[i
]);
87 new_table
->offsets
[i
- start
] = le_offset
;
90 /* Adjust for offset into table */
91 offset
+= start
* sizeof(uint64_t);
93 qemu_co_mutex_unlock(&s
->table_lock
);
94 ret
= bdrv_pwritev(s
->bs
->file
, offset
, &qiov
);
95 qemu_co_mutex_lock(&s
->table_lock
);
96 trace_qed_write_table_cb(s
, table
, flush
, ret
);
102 ret
= bdrv_flush(s
->bs
);
110 qemu_vfree(new_table
);
114 int qed_read_l1_table_sync(BDRVQEDState
*s
)
116 return qed_read_table(s
, s
->header
.l1_table_offset
, s
->l1_table
);
119 /* Called with table_lock held. */
120 int qed_write_l1_table(BDRVQEDState
*s
, unsigned int index
, unsigned int n
)
122 BLKDBG_EVENT(s
->bs
->file
, BLKDBG_L1_UPDATE
);
123 return qed_write_table(s
, s
->header
.l1_table_offset
,
124 s
->l1_table
, index
, n
, false);
127 int qed_write_l1_table_sync(BDRVQEDState
*s
, unsigned int index
,
130 return qed_write_l1_table(s
, index
, n
);
133 /* Called with table_lock held. */
134 int qed_read_l2_table(BDRVQEDState
*s
, QEDRequest
*request
, uint64_t offset
)
138 qed_unref_l2_cache_entry(request
->l2_table
);
140 /* Check for cached L2 entry */
141 request
->l2_table
= qed_find_l2_cache_entry(&s
->l2_cache
, offset
);
142 if (request
->l2_table
) {
146 request
->l2_table
= qed_alloc_l2_cache_entry(&s
->l2_cache
);
147 request
->l2_table
->table
= qed_alloc_table(s
);
149 BLKDBG_EVENT(s
->bs
->file
, BLKDBG_L2_LOAD
);
150 ret
= qed_read_table(s
, offset
, request
->l2_table
->table
);
153 /* can't trust loaded L2 table anymore */
154 qed_unref_l2_cache_entry(request
->l2_table
);
155 request
->l2_table
= NULL
;
157 request
->l2_table
->offset
= offset
;
159 qed_commit_l2_cache_entry(&s
->l2_cache
, request
->l2_table
);
161 /* This is guaranteed to succeed because we just committed the entry
164 request
->l2_table
= qed_find_l2_cache_entry(&s
->l2_cache
, offset
);
165 assert(request
->l2_table
!= NULL
);
171 int qed_read_l2_table_sync(BDRVQEDState
*s
, QEDRequest
*request
, uint64_t offset
)
173 return qed_read_l2_table(s
, request
, offset
);
176 /* Called with table_lock held. */
177 int qed_write_l2_table(BDRVQEDState
*s
, QEDRequest
*request
,
178 unsigned int index
, unsigned int n
, bool flush
)
180 BLKDBG_EVENT(s
->bs
->file
, BLKDBG_L2_UPDATE
);
181 return qed_write_table(s
, request
->l2_table
->offset
,
182 request
->l2_table
->table
, index
, n
, flush
);
185 int qed_write_l2_table_sync(BDRVQEDState
*s
, QEDRequest
*request
,
186 unsigned int index
, unsigned int n
, bool flush
)
188 return qed_write_l2_table(s
, request
, index
, n
, flush
);