Merge tag 'qemu-macppc-20230206' of https://github.com/mcayland/qemu into staging
[qemu.git] / block / qed-table.c
blobe41c87a157d079302d9ccc0f70fccf11c8708b5d
1 /*
2 * QEMU Enhanced Disk Format Table I/O
4 * Copyright IBM, Corp. 2010
6 * Authors:
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"
16 #include "block/block-io.h"
17 #include "trace.h"
18 #include "qemu/sockets.h" /* for EINPROGRESS on Windows */
19 #include "qed.h"
20 #include "qemu/bswap.h"
21 #include "qemu/memalign.h"
23 /* Called with table_lock held. */
24 static int coroutine_fn qed_read_table(BDRVQEDState *s, uint64_t offset,
25 QEDTable *table)
27 unsigned int bytes = s->header.cluster_size * s->header.table_size;
29 int noffsets;
30 int i, ret;
32 trace_qed_read_table(s, offset, table);
34 qemu_co_mutex_unlock(&s->table_lock);
35 ret = bdrv_co_pread(s->bs->file, offset, bytes, table->offsets, 0);
36 qemu_co_mutex_lock(&s->table_lock);
37 if (ret < 0) {
38 goto out;
41 /* Byteswap offsets */
42 noffsets = bytes / sizeof(uint64_t);
43 for (i = 0; i < noffsets; i++) {
44 table->offsets[i] = le64_to_cpu(table->offsets[i]);
47 ret = 0;
48 out:
49 /* Completion */
50 trace_qed_read_table_cb(s, table, ret);
51 return ret;
54 /**
55 * Write out an updated part or all of a table
57 * @s: QED state
58 * @offset: Offset of table in image file, in bytes
59 * @table: Table
60 * @index: Index of first element
61 * @n: Number of elements
62 * @flush: Whether or not to sync to disk
64 * Called with table_lock held.
66 static int coroutine_fn qed_write_table(BDRVQEDState *s, uint64_t offset,
67 QEDTable *table, unsigned int index,
68 unsigned int n, bool flush)
70 unsigned int sector_mask = BDRV_SECTOR_SIZE / sizeof(uint64_t) - 1;
71 unsigned int start, end, i;
72 QEDTable *new_table;
73 size_t len_bytes;
74 int ret;
76 trace_qed_write_table(s, offset, table, index, n);
78 /* Calculate indices of the first and one after last elements */
79 start = index & ~sector_mask;
80 end = (index + n + sector_mask) & ~sector_mask;
82 len_bytes = (end - start) * sizeof(uint64_t);
84 new_table = qemu_blockalign(s->bs, len_bytes);
86 /* Byteswap table */
87 for (i = start; i < end; i++) {
88 uint64_t le_offset = cpu_to_le64(table->offsets[i]);
89 new_table->offsets[i - start] = le_offset;
92 /* Adjust for offset into table */
93 offset += start * sizeof(uint64_t);
95 qemu_co_mutex_unlock(&s->table_lock);
96 ret = bdrv_co_pwrite(s->bs->file, offset, len_bytes, new_table->offsets, 0);
97 qemu_co_mutex_lock(&s->table_lock);
98 trace_qed_write_table_cb(s, table, flush, ret);
99 if (ret < 0) {
100 goto out;
103 if (flush) {
104 ret = bdrv_co_flush(s->bs);
105 if (ret < 0) {
106 goto out;
110 ret = 0;
111 out:
112 qemu_vfree(new_table);
113 return ret;
116 int coroutine_fn qed_read_l1_table_sync(BDRVQEDState *s)
118 return qed_read_table(s, s->header.l1_table_offset, s->l1_table);
121 /* Called with table_lock held. */
122 int coroutine_fn qed_write_l1_table(BDRVQEDState *s, unsigned int index,
123 unsigned int n)
125 BLKDBG_EVENT(s->bs->file, BLKDBG_L1_UPDATE);
126 return qed_write_table(s, s->header.l1_table_offset,
127 s->l1_table, index, n, false);
130 int coroutine_fn qed_write_l1_table_sync(BDRVQEDState *s, unsigned int index,
131 unsigned int n)
133 return qed_write_l1_table(s, index, n);
136 /* Called with table_lock held. */
137 int coroutine_fn qed_read_l2_table(BDRVQEDState *s, QEDRequest *request,
138 uint64_t offset)
140 int ret;
142 qed_unref_l2_cache_entry(request->l2_table);
144 /* Check for cached L2 entry */
145 request->l2_table = qed_find_l2_cache_entry(&s->l2_cache, offset);
146 if (request->l2_table) {
147 return 0;
150 request->l2_table = qed_alloc_l2_cache_entry(&s->l2_cache);
151 request->l2_table->table = qed_alloc_table(s);
153 BLKDBG_EVENT(s->bs->file, BLKDBG_L2_LOAD);
154 ret = qed_read_table(s, offset, request->l2_table->table);
156 if (ret) {
157 /* can't trust loaded L2 table anymore */
158 qed_unref_l2_cache_entry(request->l2_table);
159 request->l2_table = NULL;
160 } else {
161 request->l2_table->offset = offset;
163 qed_commit_l2_cache_entry(&s->l2_cache, request->l2_table);
165 /* This is guaranteed to succeed because we just committed the entry
166 * to the cache.
168 request->l2_table = qed_find_l2_cache_entry(&s->l2_cache, offset);
169 assert(request->l2_table != NULL);
172 return ret;
175 int coroutine_fn qed_read_l2_table_sync(BDRVQEDState *s, QEDRequest *request,
176 uint64_t offset)
178 return qed_read_l2_table(s, request, offset);
181 /* Called with table_lock held. */
182 int coroutine_fn qed_write_l2_table(BDRVQEDState *s, QEDRequest *request,
183 unsigned int index, unsigned int n,
184 bool flush)
186 BLKDBG_EVENT(s->bs->file, BLKDBG_L2_UPDATE);
187 return qed_write_table(s, request->l2_table->offset,
188 request->l2_table->table, index, n, flush);
191 int coroutine_fn qed_write_l2_table_sync(BDRVQEDState *s, QEDRequest *request,
192 unsigned int index, unsigned int n,
193 bool flush)
195 return qed_write_l2_table(s, request, index, n, flush);