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
)
29 .iov_base
= table
->offsets
,
30 .iov_len
= s
->header
.cluster_size
* s
->header
.table_size
,
32 qemu_iovec_init_external(&qiov
, &iov
, 1);
34 trace_qed_read_table(s
, offset
, table
);
36 qemu_co_mutex_unlock(&s
->table_lock
);
37 ret
= bdrv_preadv(s
->bs
->file
, offset
, &qiov
);
38 qemu_co_mutex_lock(&s
->table_lock
);
43 /* Byteswap offsets */
44 noffsets
= qiov
.size
/ sizeof(uint64_t);
45 for (i
= 0; i
< noffsets
; i
++) {
46 table
->offsets
[i
] = le64_to_cpu(table
->offsets
[i
]);
52 trace_qed_read_table_cb(s
, table
, ret
);
57 * Write out an updated part or all of a table
60 * @offset: Offset of table in image file, in bytes
62 * @index: Index of first element
63 * @n: Number of elements
64 * @flush: Whether or not to sync to disk
66 * Called with table_lock held.
68 static int qed_write_table(BDRVQEDState
*s
, uint64_t offset
, QEDTable
*table
,
69 unsigned int index
, unsigned int n
, bool flush
)
71 unsigned int sector_mask
= BDRV_SECTOR_SIZE
/ sizeof(uint64_t) - 1;
72 unsigned int start
, end
, i
;
79 trace_qed_write_table(s
, offset
, table
, index
, n
);
81 /* Calculate indices of the first and one after last elements */
82 start
= index
& ~sector_mask
;
83 end
= (index
+ n
+ sector_mask
) & ~sector_mask
;
85 len_bytes
= (end
- start
) * sizeof(uint64_t);
87 new_table
= qemu_blockalign(s
->bs
, len_bytes
);
88 iov
= (struct iovec
) {
89 .iov_base
= new_table
->offsets
,
92 qemu_iovec_init_external(&qiov
, &iov
, 1);
95 for (i
= start
; i
< end
; i
++) {
96 uint64_t le_offset
= cpu_to_le64(table
->offsets
[i
]);
97 new_table
->offsets
[i
- start
] = le_offset
;
100 /* Adjust for offset into table */
101 offset
+= start
* sizeof(uint64_t);
103 qemu_co_mutex_unlock(&s
->table_lock
);
104 ret
= bdrv_pwritev(s
->bs
->file
, offset
, &qiov
);
105 qemu_co_mutex_lock(&s
->table_lock
);
106 trace_qed_write_table_cb(s
, table
, flush
, ret
);
112 ret
= bdrv_flush(s
->bs
);
120 qemu_vfree(new_table
);
124 int qed_read_l1_table_sync(BDRVQEDState
*s
)
126 return qed_read_table(s
, s
->header
.l1_table_offset
, s
->l1_table
);
129 /* Called with table_lock held. */
130 int qed_write_l1_table(BDRVQEDState
*s
, unsigned int index
, unsigned int n
)
132 BLKDBG_EVENT(s
->bs
->file
, BLKDBG_L1_UPDATE
);
133 return qed_write_table(s
, s
->header
.l1_table_offset
,
134 s
->l1_table
, index
, n
, false);
137 int qed_write_l1_table_sync(BDRVQEDState
*s
, unsigned int index
,
140 return qed_write_l1_table(s
, index
, n
);
143 /* Called with table_lock held. */
144 int qed_read_l2_table(BDRVQEDState
*s
, QEDRequest
*request
, uint64_t offset
)
148 qed_unref_l2_cache_entry(request
->l2_table
);
150 /* Check for cached L2 entry */
151 request
->l2_table
= qed_find_l2_cache_entry(&s
->l2_cache
, offset
);
152 if (request
->l2_table
) {
156 request
->l2_table
= qed_alloc_l2_cache_entry(&s
->l2_cache
);
157 request
->l2_table
->table
= qed_alloc_table(s
);
159 BLKDBG_EVENT(s
->bs
->file
, BLKDBG_L2_LOAD
);
160 ret
= qed_read_table(s
, offset
, request
->l2_table
->table
);
163 /* can't trust loaded L2 table anymore */
164 qed_unref_l2_cache_entry(request
->l2_table
);
165 request
->l2_table
= NULL
;
167 request
->l2_table
->offset
= offset
;
169 qed_commit_l2_cache_entry(&s
->l2_cache
, request
->l2_table
);
171 /* This is guaranteed to succeed because we just committed the entry
174 request
->l2_table
= qed_find_l2_cache_entry(&s
->l2_cache
, offset
);
175 assert(request
->l2_table
!= NULL
);
181 int qed_read_l2_table_sync(BDRVQEDState
*s
, QEDRequest
*request
, uint64_t offset
)
183 return qed_read_l2_table(s
, request
, offset
);
186 /* Called with table_lock held. */
187 int qed_write_l2_table(BDRVQEDState
*s
, QEDRequest
*request
,
188 unsigned int index
, unsigned int n
, bool flush
)
190 BLKDBG_EVENT(s
->bs
->file
, BLKDBG_L2_UPDATE
);
191 return qed_write_table(s
, request
->l2_table
->offset
,
192 request
->l2_table
->table
, index
, n
, flush
);
195 int qed_write_l2_table_sync(BDRVQEDState
*s
, QEDRequest
*request
,
196 unsigned int index
, unsigned int n
, bool flush
)
198 return qed_write_l2_table(s
, request
, index
, n
, flush
);