hw/arm/virt: Disable pl011 clock migration if needed
[qemu/ar7.git] / include / scsi / pr-manager.h
blobe4ecbe00f6f6276a8602cd32849e91dc94755533
1 #ifndef PR_MANAGER_H
2 #define PR_MANAGER_H
4 #include "qom/object.h"
5 #include "qapi/visitor.h"
6 #include "qom/object_interfaces.h"
7 #include "block/aio.h"
8 #include "qemu/coroutine.h"
10 #define TYPE_PR_MANAGER "pr-manager"
12 OBJECT_DECLARE_TYPE(PRManager, PRManagerClass,
13 PR_MANAGER)
15 struct sg_io_hdr;
17 struct PRManager {
18 /* <private> */
19 Object parent;
22 /**
23 * PRManagerClass:
24 * @parent_class: the base class
25 * @run: callback invoked in thread pool context
27 struct PRManagerClass {
28 /* <private> */
29 ObjectClass parent_class;
31 /* <public> */
32 int (*run)(PRManager *pr_mgr, int fd, struct sg_io_hdr *hdr);
33 bool (*is_connected)(PRManager *pr_mgr);
36 bool pr_manager_is_connected(PRManager *pr_mgr);
37 int coroutine_fn pr_manager_execute(PRManager *pr_mgr, AioContext *ctx, int fd,
38 struct sg_io_hdr *hdr);
40 PRManager *pr_manager_lookup(const char *id, Error **errp);
42 #endif