summaryrefslogtreecommitdiffstats
path: root/block/block-ram-registrar.c
blob: 25dbafa789c217328952bc7080959878554d58a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*
 * BlockBackend RAM Registrar
 *
 * SPDX-License-Identifier: GPL-2.0-or-later
 */

#include "qemu/osdep.h"
#include "sysemu/block-backend.h"
#include "sysemu/block-ram-registrar.h"
#include "qapi/error.h"

static void ram_block_added(RAMBlockNotifier *n, void *host, size_t size,
                            size_t max_size)
{
    BlockRAMRegistrar *r = container_of(n, BlockRAMRegistrar, notifier);
    Error *err = NULL;

    if (!r->ok) {
        return; /* don't try again if we've already failed */
    }

    if (!blk_register_buf(r->blk, host, max_size, &err)) {
        error_report_err(err);
        ram_block_notifier_remove(&r->notifier);
        r->ok = false;
    }
}

static void ram_block_removed(RAMBlockNotifier *n, void *host, size_t size,
                              size_t max_size)
{
    BlockRAMRegistrar *r = container_of(n, BlockRAMRegistrar, notifier);
    blk_unregister_buf(r->blk, host, max_size);
}

void blk_ram_registrar_init(BlockRAMRegistrar *r, BlockBackend *blk)
{
    r->blk = blk;
    r->notifier = (RAMBlockNotifier){
        .ram_block_added = ram_block_added,
        .ram_block_removed = ram_block_removed,

        /*
         * .ram_block_resized() is not necessary because we use the max_size
         * value that does not change across resize.
         */
    };
    r->ok = true;

    ram_block_notifier_add(&r->notifier);
}

void blk_ram_registrar_destroy(BlockRAMRegistrar *r)
{
    if (r->ok) {
        ram_block_notifier_remove(&r->notifier);
    }
}