]> git.ipfire.org Git - thirdparty/qemu.git/blame - include/block/blockjob.h
block: Use a single global AioWait
[thirdparty/qemu.git] / include / block / blockjob.h
CommitLineData
2f0c9fe6
PB
1/*
2 * Declarations for long-running block device operations
3 *
4 * Copyright (c) 2011 IBM Corp.
5 * Copyright (c) 2012 Red Hat, Inc.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23 * THE SOFTWARE.
24 */
175de524 25
2f0c9fe6 26#ifndef BLOCKJOB_H
175de524 27#define BLOCKJOB_H
2f0c9fe6 28
33e9e9bd 29#include "qemu/job.h"
737e150e 30#include "block/block.h"
f05fee50 31#include "qemu/ratelimit.h"
2f0c9fe6 32
18bb6928
KW
33#define BLOCK_JOB_SLICE_TIME 100000000ULL /* ns */
34
c87621ea 35typedef struct BlockJobDriver BlockJobDriver;
2f0c9fe6
PB
36
37/**
38 * BlockJob:
39 *
40 * Long-running operation on a BlockDriverState.
41 */
c87621ea 42typedef struct BlockJob {
33e9e9bd
KW
43 /** Data belonging to the generic Job infrastructure */
44 Job job;
45
2f0c9fe6 46 /** The block device on which the job is operating. */
b6d2e599 47 BlockBackend *blk;
2f0c9fe6 48
32c81a4a
PB
49 /** Status that is published by the query-block-jobs QMP API */
50 BlockDeviceIoStatus iostatus;
51
2f0c9fe6
PB
52 /** Speed that was set with @block_job_set_speed. */
53 int64_t speed;
54
f05fee50
KW
55 /** Rate limiting data structure for implementing @speed. */
56 RateLimit limit;
57
3718d8ab
FZ
58 /** Block other operations when block job is running */
59 Error *blocker;
60
139a9f02
KW
61 /** Called when a cancelled job is finalised. */
62 Notifier finalize_cancelled_notifier;
63
64 /** Called when a successfully completed job is finalised. */
65 Notifier finalize_completed_notifier;
66
67 /** Called when the job transitions to PENDING */
68 Notifier pending_notifier;
69
2e1795b5
KW
70 /** Called when the job transitions to READY */
71 Notifier ready_notifier;
72
34dc97b9
KW
73 /** Called when the job coroutine yields or terminates */
74 Notifier idle_notifier;
75
23d402d4
AG
76 /** BlockDriverStates that are involved in this block job */
77 GSList *nodes;
c87621ea 78} BlockJob;
2f0c9fe6 79
a7112795
AG
80/**
81 * block_job_next:
82 * @job: A block job, or %NULL.
83 *
84 * Get the next element from the list of block jobs after @job, or the
85 * first one if @job is %NULL.
86 *
87 * Returns the requested job, or %NULL if there are no more jobs left.
88 */
89BlockJob *block_job_next(BlockJob *job);
90
ffb1f10c
AG
91/**
92 * block_job_get:
93 * @id: The id of the block job.
94 *
95 * Get the block job identified by @id (which must not be %NULL).
96 *
97 * Returns the requested job, or %NULL if it doesn't exist.
98 */
99BlockJob *block_job_get(const char *id);
100
23d402d4
AG
101/**
102 * block_job_add_bdrv:
103 * @job: A block job
76d554e2 104 * @name: The name to assign to the new BdrvChild
23d402d4 105 * @bs: A BlockDriverState that is involved in @job
76d554e2 106 * @perm, @shared_perm: Permissions to request on the node
23d402d4
AG
107 *
108 * Add @bs to the list of BlockDriverState that are involved in
109 * @job. This means that all operations will be blocked on @bs while
110 * @job exists.
111 */
76d554e2
KW
112int block_job_add_bdrv(BlockJob *job, const char *name, BlockDriverState *bs,
113 uint64_t perm, uint64_t shared_perm, Error **errp);
23d402d4 114
bbc02b90
KW
115/**
116 * block_job_remove_all_bdrv:
117 * @job: The block job
118 *
119 * Remove all BlockDriverStates from the list of nodes that are involved in the
120 * job. This removes the blockers added with block_job_add_bdrv().
121 */
122void block_job_remove_all_bdrv(BlockJob *job);
123
2f0c9fe6
PB
124/**
125 * block_job_set_speed:
126 * @job: The job to set the speed for.
127 * @speed: The new value
128 * @errp: Error object.
129 *
130 * Set a rate-limiting parameter for the job; the actual meaning may
131 * vary depending on the job type.
132 */
133void block_job_set_speed(BlockJob *job, int64_t speed, Error **errp);
134
30e628b7
PB
135/**
136 * block_job_query:
137 * @job: The job to get information about.
138 *
139 * Return information about a job.
140 */
559b935f 141BlockJobInfo *block_job_query(BlockJob *job, Error **errp);
30e628b7 142
32c81a4a
PB
143/**
144 * block_job_iostatus_reset:
145 * @job: The job whose I/O status should be reset.
146 *
3bd293c3 147 * Reset I/O status on @job and on BlockDriverState objects it uses,
e3a4f91b 148 * other than job->blk.
32c81a4a
PB
149 */
150void block_job_iostatus_reset(BlockJob *job);
151
559b935f
JS
152/**
153 * block_job_is_internal:
154 * @job: The job to determine if it is user-visible or not.
155 *
156 * Returns true if the job should not be visible to the management layer.
157 */
158bool block_job_is_internal(BlockJob *job);
159
bd21935b
KW
160/**
161 * block_job_driver:
162 *
163 * Returns the driver associated with a block job.
164 */
165const BlockJobDriver *block_job_driver(BlockJob *job);
166
2f0c9fe6 167#endif