diff options
author | Kevin Wolf <kwolf@redhat.com> | 2013-06-25 15:13:43 +0200 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2013-06-28 09:20:27 +0200 |
commit | f59fee8d509b446df24843c1145a99b740492725 (patch) | |
tree | a9f9cb2b4abfd23d5a9c13a64f907c5855a64a66 /block/stream.c | |
parent | e5ca8fdd407431e281c6f303dc9f45f63a28048f (diff) |
block: Make BlockJobTypes const
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'block/stream.c')
-rw-r--r-- | block/stream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/stream.c b/block/stream.c index d6df06f35a..7fe9e486bf 100644 --- a/block/stream.c +++ b/block/stream.c @@ -198,7 +198,7 @@ static void stream_set_speed(BlockJob *job, int64_t speed, Error **errp) ratelimit_set_speed(&s->limit, speed / BDRV_SECTOR_SIZE, SLICE_TIME); } -static BlockJobType stream_job_type = { +static const BlockJobType stream_job_type = { .instance_size = sizeof(StreamBlockJob), .job_type = "stream", .set_speed = stream_set_speed, |