Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20190726' into...
[qemu/ar7.git] / fsdev / qemu-fsdev-throttle.h
blob7d6211d49910a0874ee55e1384a555e451cef8a8
1 /*
2 * Fsdev Throttle
4 * Copyright (C) 2016 Huawei Technologies Duesseldorf GmbH
6 * Author: Pradeep Jagadeesh <pradeep.jagadeesh@huawei.com>
8 * This work is licensed under the terms of the GNU GPL, version 2 or
9 * (at your option) any later version.
11 * See the COPYING file in the top-level directory for details.
15 #ifndef QEMU_FSDEV_THROTTLE_H
16 #define QEMU_FSDEV_THROTTLE_H
18 #include "block/aio.h"
19 #include "qemu/main-loop.h"
20 #include "qemu/coroutine.h"
21 #include "qemu/throttle.h"
23 typedef struct FsThrottle {
24 ThrottleState ts;
25 ThrottleTimers tt;
26 ThrottleConfig cfg;
27 CoQueue throttled_reqs[2];
28 } FsThrottle;
30 void fsdev_throttle_parse_opts(QemuOpts *, FsThrottle *, Error **);
32 void fsdev_throttle_init(FsThrottle *);
34 void coroutine_fn fsdev_co_throttle_request(FsThrottle *, bool ,
35 struct iovec *, int);
37 void fsdev_throttle_cleanup(FsThrottle *);
39 #endif /* QEMU_FSDEV_THROTTLE_H */