Skip to content

Commit f5a74a5

Browse files
elmarcoMarkus Armbruster
authored and
Markus Armbruster
committed
qobject: Modify qobject_ref() to return obj
For convenience and clarity, make it possible to call qobject_ref() at the time when the reference is associated with a variable, or argument, by making qobject_ref() return the same pointer as given. Use that to simplify the callers. Signed-off-by: Marc-André Lureau <[email protected]> Reviewed-by: Eric Blake <[email protected]> Message-Id: <[email protected]> Reviewed-by: Markus Armbruster <[email protected]> [Useless change to qobject_ref_impl() dropped, commit message improved slightly] Signed-off-by: Markus Armbruster <[email protected]>
1 parent cb3e7f0 commit f5a74a5

12 files changed

+47
-64
lines changed

block.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -5134,8 +5134,8 @@ static bool append_open_options(QDict *d, BlockDriverState *bs)
51345134
continue;
51355135
}
51365136

5137-
qobject_ref(qdict_entry_value(entry));
5138-
qdict_put_obj(d, qdict_entry_key(entry), qdict_entry_value(entry));
5137+
qdict_put_obj(d, qdict_entry_key(entry),
5138+
qobject_ref(qdict_entry_value(entry)));
51395139
found_any = true;
51405140
}
51415141

@@ -5207,8 +5207,8 @@ void bdrv_refresh_filename(BlockDriverState *bs)
52075207
* suffices without querying the (exact_)filename of this BDS. */
52085208
if (bs->file->bs->full_open_options) {
52095209
qdict_put_str(opts, "driver", drv->format_name);
5210-
qobject_ref(bs->file->bs->full_open_options);
5211-
qdict_put(opts, "file", bs->file->bs->full_open_options);
5210+
qdict_put(opts, "file",
5211+
qobject_ref(bs->file->bs->full_open_options));
52125212

52135213
bs->full_open_options = opts;
52145214
} else {

block/blkdebug.c

+3-4
Original file line numberDiff line numberDiff line change
@@ -845,13 +845,12 @@ static void blkdebug_refresh_filename(BlockDriverState *bs, QDict *options)
845845
opts = qdict_new();
846846
qdict_put_str(opts, "driver", "blkdebug");
847847

848-
qobject_ref(bs->file->bs->full_open_options);
849-
qdict_put(opts, "image", bs->file->bs->full_open_options);
848+
qdict_put(opts, "image", qobject_ref(bs->file->bs->full_open_options));
850849

851850
for (e = qdict_first(options); e; e = qdict_next(options, e)) {
852851
if (strcmp(qdict_entry_key(e), "x-image")) {
853-
qobject_ref(qdict_entry_value(e));
854-
qdict_put_obj(opts, qdict_entry_key(e), qdict_entry_value(e));
852+
qdict_put_obj(opts, qdict_entry_key(e),
853+
qobject_ref(qdict_entry_value(e)));
855854
}
856855
}
857856

block/blkverify.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -291,10 +291,10 @@ static void blkverify_refresh_filename(BlockDriverState *bs, QDict *options)
291291
QDict *opts = qdict_new();
292292
qdict_put_str(opts, "driver", "blkverify");
293293

294-
qobject_ref(bs->file->bs->full_open_options);
295-
qdict_put(opts, "raw", bs->file->bs->full_open_options);
296-
qobject_ref(s->test_file->bs->full_open_options);
297-
qdict_put(opts, "test", s->test_file->bs->full_open_options);
294+
qdict_put(opts, "raw",
295+
qobject_ref(bs->file->bs->full_open_options));
296+
qdict_put(opts, "test",
297+
qobject_ref(s->test_file->bs->full_open_options));
298298

299299
bs->full_open_options = opts;
300300
}

block/null.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,6 @@ static int coroutine_fn null_co_block_status(BlockDriverState *bs,
244244

245245
static void null_refresh_filename(BlockDriverState *bs, QDict *opts)
246246
{
247-
qobject_ref(opts);
248247
qdict_del(opts, "filename");
249248

250249
if (!qdict_size(opts)) {
@@ -253,7 +252,7 @@ static void null_refresh_filename(BlockDriverState *bs, QDict *opts)
253252
}
254253

255254
qdict_put_str(opts, "driver", bs->drv->format_name);
256-
bs->full_open_options = opts;
255+
bs->full_open_options = qobject_ref(opts);
257256
}
258257

259258
static BlockDriver bdrv_null_co = {

block/nvme.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -1073,7 +1073,6 @@ static int nvme_reopen_prepare(BDRVReopenState *reopen_state,
10731073

10741074
static void nvme_refresh_filename(BlockDriverState *bs, QDict *opts)
10751075
{
1076-
qobject_ref(opts);
10771076
qdict_del(opts, "filename");
10781077

10791078
if (!qdict_size(opts)) {
@@ -1082,7 +1081,7 @@ static void nvme_refresh_filename(BlockDriverState *bs, QDict *opts)
10821081
}
10831082

10841083
qdict_put_str(opts, "driver", bs->drv->format_name);
1085-
bs->full_open_options = opts;
1084+
bs->full_open_options = qobject_ref(opts);
10861085
}
10871086

10881087
static void nvme_refresh_limits(BlockDriverState *bs, Error **errp)

block/quorum.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1082,8 +1082,8 @@ static void quorum_refresh_filename(BlockDriverState *bs, QDict *options)
10821082

10831083
children = qlist_new();
10841084
for (i = 0; i < s->num_children; i++) {
1085-
qobject_ref(s->children[i]->bs->full_open_options);
1086-
qlist_append(children, s->children[i]->bs->full_open_options);
1085+
qlist_append(children,
1086+
qobject_ref(s->children[i]->bs->full_open_options));
10871087
}
10881088

10891089
opts = qdict_new();

include/qapi/qmp/qnull.h

+1-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ extern QNull qnull_;
2323

2424
static inline QNull *qnull(void)
2525
{
26-
qobject_ref(&qnull_);
27-
return &qnull_;
26+
return qobject_ref(&qnull_);
2827
}
2928

3029
bool qnull_is_equal(const QObject *x, const QObject *y);

include/qapi/qmp/qobject.h

+8-1
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,15 @@ static inline void qobject_unref_impl(QObject *obj)
103103

104104
/**
105105
* qobject_ref(): Increment QObject's reference count
106+
*
107+
* Returns: the same @obj. The type of @obj will be propagated to the
108+
* return type.
106109
*/
107-
#define qobject_ref(obj) qobject_ref_impl(QOBJECT(obj))
110+
#define qobject_ref(obj) ({ \
111+
typeof(obj) _o = (obj); \
112+
qobject_ref_impl(QOBJECT(_o)); \
113+
_o; \
114+
})
108115

109116
/**
110117
* qobject_unref(): Decrement QObject's reference count, deallocate

monitor.c

+7-13
Original file line numberDiff line numberDiff line change
@@ -494,9 +494,8 @@ static void monitor_json_emitter(Monitor *mon, QObject *data)
494494
* caller won't free the data (which will be finally freed in
495495
* responder thread).
496496
*/
497-
qobject_ref(data);
498497
qemu_mutex_lock(&mon->qmp.qmp_queue_lock);
499-
g_queue_push_tail(mon->qmp.qmp_responses, data);
498+
g_queue_push_tail(mon->qmp.qmp_responses, qobject_ref(data));
500499
qemu_mutex_unlock(&mon->qmp.qmp_queue_lock);
501500
qemu_bh_schedule(mon_global.qmp_respond_bh);
502501
} else {
@@ -614,8 +613,7 @@ monitor_qapi_event_queue(QAPIEvent event, QDict *qdict, Error **errp)
614613
* replacing a prior stored event if any.
615614
*/
616615
qobject_unref(evstate->qdict);
617-
evstate->qdict = qdict;
618-
qobject_ref(evstate->qdict);
616+
evstate->qdict = qobject_ref(qdict);
619617
} else {
620618
/*
621619
* Last send was (at least) evconf->rate ns ago.
@@ -629,8 +627,7 @@ monitor_qapi_event_queue(QAPIEvent event, QDict *qdict, Error **errp)
629627

630628
evstate = g_new(MonitorQAPIEventState, 1);
631629
evstate->event = event;
632-
evstate->data = data;
633-
qobject_ref(evstate->data);
630+
evstate->data = qobject_ref(data);
634631
evstate->qdict = NULL;
635632
evstate->timer = timer_new_ns(event_clock_type,
636633
monitor_qapi_event_handler,
@@ -4048,9 +4045,7 @@ static void monitor_qmp_respond(Monitor *mon, QObject *rsp,
40484045

40494046
if (rsp) {
40504047
if (id) {
4051-
/* This is for the qdict below. */
4052-
qobject_ref(id);
4053-
qdict_put_obj(qobject_to(QDict, rsp), "id", id);
4048+
qdict_put_obj(qobject_to(QDict, rsp), "id", qobject_ref(id));
40544049
}
40554050

40564051
monitor_json_emitter(mon, rsp);
@@ -4190,15 +4185,14 @@ static void handle_qmp_command(JSONMessageParser *parser, GQueue *tokens)
41904185
goto err;
41914186
}
41924187

4193-
qobject_ref(id);
4194-
qdict_del(qdict, "id");
4195-
41964188
req_obj = g_new0(QMPRequest, 1);
41974189
req_obj->mon = mon;
4198-
req_obj->id = id;
4190+
req_obj->id = qobject_ref(id);
41994191
req_obj->req = req;
42004192
req_obj->need_resume = false;
42014193

4194+
qdict_del(qdict, "id");
4195+
42024196
if (qmp_is_oob(qdict)) {
42034197
/* Out-Of-Band (OOB) requests are executed directly in parser. */
42044198
trace_monitor_qmp_cmd_out_of_band(qobject_get_try_str(req_obj->id)

qapi/qobject-input-visitor.c

+2-4
Original file line numberDiff line numberDiff line change
@@ -588,8 +588,7 @@ static void qobject_input_type_any(Visitor *v, const char *name, QObject **obj,
588588
return;
589589
}
590590

591-
qobject_ref(qobj);
592-
*obj = qobj;
591+
*obj = qobject_ref(qobj);
593592
}
594593

595594
static void qobject_input_type_null(Visitor *v, const char *name,
@@ -677,8 +676,7 @@ static QObjectInputVisitor *qobject_input_visitor_base_new(QObject *obj)
677676
v->visitor.optional = qobject_input_optional;
678677
v->visitor.free = qobject_input_free;
679678

680-
v->root = obj;
681-
qobject_ref(obj);
679+
v->root = qobject_ref(obj);
682680

683681
return v;
684682
}

qapi/qobject-output-visitor.c

+3-4
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,8 @@ static void qobject_output_type_any(Visitor *v, const char *name,
188188
QObject **obj, Error **errp)
189189
{
190190
QObjectOutputVisitor *qov = to_qov(v);
191-
qobject_ref(*obj);
192-
qobject_output_add_obj(qov, name, *obj);
191+
192+
qobject_output_add_obj(qov, name, qobject_ref(*obj));
193193
}
194194

195195
static void qobject_output_type_null(Visitor *v, const char *name,
@@ -210,8 +210,7 @@ static void qobject_output_complete(Visitor *v, void *opaque)
210210
assert(qov->root && QSLIST_EMPTY(&qov->stack));
211211
assert(opaque == qov->result);
212212

213-
qobject_ref(qov->root);
214-
*qov->result = qov->root;
213+
*qov->result = qobject_ref(qov->root);
215214
qov->result = NULL;
216215
}
217216

qobject/qdict.c

+11-22
Original file line numberDiff line numberDiff line change
@@ -373,8 +373,7 @@ QDict *qdict_clone_shallow(const QDict *src)
373373

374374
for (i = 0; i < QDICT_BUCKET_MAX; i++) {
375375
QLIST_FOREACH(entry, &src->table[i], next) {
376-
qobject_ref(entry->value);
377-
qdict_put_obj(dest, entry->key, entry->value);
376+
qdict_put_obj(dest, entry->key, qobject_ref(entry->value));
378377
}
379378
}
380379

@@ -480,8 +479,7 @@ void qdict_copy_default(QDict *dst, QDict *src, const char *key)
480479

481480
val = qdict_get(src, key);
482481
if (val) {
483-
qobject_ref(val);
484-
qdict_put_obj(dst, key, val);
482+
qdict_put_obj(dst, key, qobject_ref(val));
485483
}
486484
}
487485

@@ -526,8 +524,7 @@ static void qdict_flatten_qlist(QList *qlist, QDict *target, const char *prefix)
526524
qdict_flatten_qlist(qobject_to(QList, value), target, new_key);
527525
} else {
528526
/* All other types are moved to the target unchanged. */
529-
qobject_ref(value);
530-
qdict_put_obj(target, new_key, value);
527+
qdict_put_obj(target, new_key, qobject_ref(value));
531528
}
532529

533530
g_free(new_key);
@@ -566,8 +563,7 @@ static void qdict_flatten_qdict(QDict *qdict, QDict *target, const char *prefix)
566563
delete = true;
567564
} else if (prefix) {
568565
/* All other objects are moved to the target unchanged. */
569-
qobject_ref(value);
570-
qdict_put_obj(target, new_key, value);
566+
qdict_put_obj(target, new_key, qobject_ref(value));
571567
delete = true;
572568
}
573569

@@ -610,8 +606,7 @@ void qdict_extract_subqdict(QDict *src, QDict **dst, const char *start)
610606
while (entry != NULL) {
611607
next = qdict_next(src, entry);
612608
if (strstart(entry->key, start, &p)) {
613-
qobject_ref(entry->value);
614-
qdict_put_obj(*dst, p, entry->value);
609+
qdict_put_obj(*dst, p, qobject_ref(entry->value));
615610
qdict_del(src, entry->key);
616611
}
617612
entry = next;
@@ -894,16 +889,14 @@ QObject *qdict_crumple(const QDict *src, Error **errp)
894889
qdict_put_obj(two_level, prefix, QOBJECT(child_dict));
895890
}
896891

897-
qobject_ref(ent->value);
898-
qdict_put_obj(child_dict, suffix, ent->value);
892+
qdict_put_obj(child_dict, suffix, qobject_ref(ent->value));
899893
} else {
900894
if (child) {
901895
error_setg(errp, "Key %s prefix is already set as a dict",
902896
prefix);
903897
goto error;
904898
}
905-
qobject_ref(ent->value);
906-
qdict_put_obj(two_level, prefix, ent->value);
899+
qdict_put_obj(two_level, prefix, qobject_ref(ent->value));
907900
}
908901

909902
g_free(prefix);
@@ -924,8 +917,7 @@ QObject *qdict_crumple(const QDict *src, Error **errp)
924917

925918
qdict_put_obj(multi_level, ent->key, child);
926919
} else {
927-
qobject_ref(ent->value);
928-
qdict_put_obj(multi_level, ent->key, ent->value);
920+
qdict_put_obj(multi_level, ent->key, qobject_ref(ent->value));
929921
}
930922
}
931923
qobject_unref(two_level);
@@ -951,8 +943,7 @@ QObject *qdict_crumple(const QDict *src, Error **errp)
951943
goto error;
952944
}
953945

954-
qobject_ref(child);
955-
qlist_append_obj(qobject_to(QList, dst), child);
946+
qlist_append_obj(qobject_to(QList, dst), qobject_ref(child));
956947
}
957948
qobject_unref(multi_level);
958949
multi_level = NULL;
@@ -1055,8 +1046,7 @@ void qdict_join(QDict *dest, QDict *src, bool overwrite)
10551046
next = qdict_next(src, entry);
10561047

10571048
if (overwrite || !qdict_haskey(dest, entry->key)) {
1058-
qobject_ref(entry->value);
1059-
qdict_put_obj(dest, entry->key, entry->value);
1049+
qdict_put_obj(dest, entry->key, qobject_ref(entry->value));
10601050
qdict_del(src, entry->key);
10611051
}
10621052

@@ -1088,8 +1078,7 @@ bool qdict_rename_keys(QDict *qdict, const QDictRenames *renames, Error **errp)
10881078
}
10891079

10901080
qobj = qdict_get(qdict, renames->from);
1091-
qobject_ref(qobj);
1092-
qdict_put_obj(qdict, renames->to, qobj);
1081+
qdict_put_obj(qdict, renames->to, qobject_ref(qobj));
10931082
qdict_del(qdict, renames->from);
10941083
}
10951084

0 commit comments

Comments
 (0)