@@ -13,20 +13,38 @@
#include "block/block_int.h"
#include "qapi/error.h"
#include "qapi/qmp/qstring.h"
+#include "qemu/rbcache.h"
+#define PCACHE_OPT_STATS_SIZE "pcache-stats-size"
static QemuOptsList runtime_opts = {
.name = "pcache",
.head = QTAILQ_HEAD_INITIALIZER(runtime_opts.head),
.desc = {
+ {
+ .name = PCACHE_OPT_STATS_SIZE,
+ .type = QEMU_OPT_SIZE,
+ .help = "Total volume of requests for statistics",
+ },
{ /* end of list */ }
},
};
+#define MB_BITS 20
+#define PCACHE_DEFAULT_STATS_SIZE (3 << MB_BITS)
+
+typedef struct BDRVPCacheState {
+ RBCache *req_stats;
+} BDRVPCacheState;
+
static coroutine_fn int pcache_co_preadv(BlockDriverState *bs, uint64_t offset,
uint64_t bytes, QEMUIOVector *qiov,
int flags)
{
+ BDRVPCacheState *s = bs->opaque;
+
+ rbcache_search_and_insert(s->req_stats, offset, bytes);
+
return bdrv_co_preadv(bs->file, offset, bytes, qiov, flags);
}
@@ -37,6 +55,13 @@ static coroutine_fn int pcache_co_pwritev(BlockDriverState *bs, uint64_t offset,
return bdrv_co_pwritev(bs->file, offset, bytes, qiov, flags);
}
+static void pcache_state_init(QemuOpts *opts, BDRVPCacheState *s)
+{
+ uint64_t stats_size = qemu_opt_get_size(opts, PCACHE_OPT_STATS_SIZE,
+ PCACHE_DEFAULT_STATS_SIZE);
+ s->req_stats = rbcache_create(NULL, NULL, stats_size, RBCACHE_FIFO, s);
+}
+
static int pcache_file_open(BlockDriverState *bs, QDict *options, int flags,
Error **errp)
{
@@ -58,7 +83,9 @@ static int pcache_file_open(BlockDriverState *bs, QDict *options, int flags,
if (local_err) {
ret = -EINVAL;
error_propagate(errp, local_err);
+ goto fail;
}
+ pcache_state_init(opts, bs->opaque);
fail:
qemu_opts_del(opts);
return ret;
@@ -66,6 +93,9 @@ fail:
static void pcache_close(BlockDriverState *bs)
{
+ BDRVPCacheState *s = bs->opaque;
+
+ rbcache_destroy(s->req_stats);
}
static int64_t pcache_getlength(BlockDriverState *bs)
@@ -81,7 +111,7 @@ static bool pcache_recurse_is_first_non_filter(BlockDriverState *bs,
static BlockDriver bdrv_pcache = {
.format_name = "pcache",
- .instance_size = 0,
+ .instance_size = sizeof(BDRVPCacheState),
.bdrv_file_open = pcache_file_open,
.bdrv_close = pcache_close,
Here the rbcache is used as a repository statistics requests, in fact, data requests are not cached, so we have the ability to store a large number of requests. We need statistics requests to determine the sequential requests. Signed-off-by: Pavel Butsykin <pbutsykin@virtuozzo.com> --- block/pcache.c | 32 +++++++++++++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-)