]> git.proxmox.com Git - mirror_qemu.git/blame - fsdev/qemu-fsdev-throttle.h
migration/multifd: call multifd_send_sync_main when sending RAM_SAVE_FLAG_EOS
[mirror_qemu.git] / fsdev / qemu-fsdev-throttle.h
CommitLineData
b8bbdb88
PJ
1/*
2 * Fsdev Throttle
3 *
4 * Copyright (C) 2016 Huawei Technologies Duesseldorf GmbH
5 *
6 * Author: Pradeep Jagadeesh <pradeep.jagadeesh@huawei.com>
7 *
8 * This work is licensed under the terms of the GNU GPL, version 2 or
9 * (at your option) any later version.
10 *
11 * See the COPYING file in the top-level directory for details.
12 *
13 */
14
58ea30f5
MA
15#ifndef QEMU_FSDEV_THROTTLE_H
16#define QEMU_FSDEV_THROTTLE_H
b8bbdb88
PJ
17
18#include "block/aio.h"
19#include "qemu/main-loop.h"
20#include "qemu/coroutine.h"
b8bbdb88
PJ
21#include "qemu/throttle.h"
22
23typedef struct FsThrottle {
24 ThrottleState ts;
25 ThrottleTimers tt;
26 ThrottleConfig cfg;
27 CoQueue throttled_reqs[2];
28} FsThrottle;
29
30void fsdev_throttle_parse_opts(QemuOpts *, FsThrottle *, Error **);
31
32void fsdev_throttle_init(FsThrottle *);
33
34void coroutine_fn fsdev_co_throttle_request(FsThrottle *, bool ,
35 struct iovec *, int);
36
37void fsdev_throttle_cleanup(FsThrottle *);
58ea30f5
MA
38
39#endif /* QEMU_FSDEV_THROTTLE_H */