]> git.proxmox.com Git - mirror_qemu.git/blame - block/write-threshold.c
MAINTAINERS: Add tests/vm/*bsd to the list to get reviews on
[mirror_qemu.git] / block / write-threshold.c
CommitLineData
e2462113
FR
1/*
2 * QEMU System Emulator block write threshold notification
3 *
4 * Copyright Red Hat, Inc. 2014
5 *
6 * Authors:
7 * Francesco Romani <fromani@redhat.com>
8 *
9 * This work is licensed under the terms of the GNU LGPL, version 2 or later.
10 * See the COPYING.LIB file in the top-level directory.
11 */
12
80c71a24 13#include "qemu/osdep.h"
e2462113 14#include "block/block_int.h"
e2462113 15#include "block/write-threshold.h"
e688df6b 16#include "qapi/error.h"
9af23989
MA
17#include "qapi/qapi-commands-block-core.h"
18#include "qapi/qapi-events-block-core.h"
e2462113 19
e2462113
FR
20uint64_t bdrv_write_threshold_get(const BlockDriverState *bs)
21{
22 return bs->write_threshold_offset;
23}
24
e2462113
FR
25void bdrv_write_threshold_set(BlockDriverState *bs, uint64_t threshold_bytes)
26{
94783301 27 bs->write_threshold_offset = threshold_bytes;
e2462113
FR
28}
29
30void qmp_block_set_write_threshold(const char *node_name,
31 uint64_t threshold_bytes,
32 Error **errp)
33{
34 BlockDriverState *bs;
35 AioContext *aio_context;
36
37 bs = bdrv_find_node(node_name);
38 if (!bs) {
6ec46ad5 39 error_setg(errp, "Device '%s' not found", node_name);
e2462113
FR
40 return;
41 }
42
43 aio_context = bdrv_get_aio_context(bs);
44 aio_context_acquire(aio_context);
45
46 bdrv_write_threshold_set(bs, threshold_bytes);
47
48 aio_context_release(aio_context);
49}
94783301
VSO
50
51void bdrv_write_threshold_check_write(BlockDriverState *bs, int64_t offset,
52 int64_t bytes)
53{
54 int64_t end = offset + bytes;
55 uint64_t wtr = bs->write_threshold_offset;
56
57 if (wtr > 0 && end > wtr) {
58 qapi_event_send_block_write_threshold(bs->node_name, end - wtr, wtr);
59
60 /* autodisable to avoid flooding the monitor */
61 bdrv_write_threshold_set(bs, 0);
62 }
63}