diff options
author | Markus Armbruster <armbru@redhat.com> | 2018-12-13 18:51:54 +0100 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2019-02-01 13:46:44 +0100 |
commit | 4e20c1becba3fd2e8e71a2663cefb9627fd2a6e0 (patch) | |
tree | 7e2de083c4c59c935c7117b8de736073ecb693ef | |
parent | 76f1cf0a5e279a28fb833104b97ea561e4293c47 (diff) |
block: Replace qdict_put() by qdict_put_obj() where appropriate
Patch created mechanically by rerunning:
$ spatch --sp-file scripts/coccinelle/qobject.cocci \
--macro-file scripts/cocci-macro-file.h \
--dir block --in-place
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Alberto Garcia <berto@igalia.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
-rw-r--r-- | block/blklogwrites.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/block/blklogwrites.c b/block/blklogwrites.c index ff98cd5533..d2e01bdb1d 100644 --- a/block/blklogwrites.c +++ b/block/blklogwrites.c @@ -295,10 +295,9 @@ static void blk_log_writes_refresh_filename(BlockDriverState *bs, qdict_put_str(opts, "driver", "blklogwrites"); qobject_ref(bs->file->bs->full_open_options); - qdict_put_obj(opts, "file", QOBJECT(bs->file->bs->full_open_options)); + qdict_put(opts, "file", bs->file->bs->full_open_options); qobject_ref(s->log_file->bs->full_open_options); - qdict_put_obj(opts, "log", - QOBJECT(s->log_file->bs->full_open_options)); + qdict_put(opts, "log", s->log_file->bs->full_open_options); qdict_put_int(opts, "log-sector-size", s->sectorsize); bs->full_open_options = opts; |