Skip to content

Commit 8b4b527

Browse files
Vladimir Sementsov-OgievskiyMarkus Armbruster
authored andcommitted
fw_cfg: Use ERRP_GUARD()
If we want to check error after errp-function call, we need to introduce local_err and then propagate it to errp. Instead, use the ERRP_GUARD() macro, benefits are: 1. No need of explicit error_propagate call 2. No need of explicit local_err variable: use errp directly 3. ERRP_GUARD() leaves errp as is if it's not NULL or &error_fatal, this means that we don't break error_abort (we'll abort on error_set, not on error_propagate) If we want to add some info to errp (by error_prepend() or error_append_hint()), we must use the ERRP_GUARD() macro. Otherwise, this info will not be added when errp == &error_fatal (the program will exit prior to the error_append_hint() or error_prepend() call). No such cases are being fixed here. This commit is generated by command sed -n '/^Firmware configuration (fw_cfg)$/,/^$/{s/^F: //p}' \ MAINTAINERS | \ xargs git ls-files | grep '\.[hc]$' | \ xargs spatch \ --sp-file scripts/coccinelle/errp-guard.cocci \ --macro-file scripts/cocci-macro-file.h \ --in-place --no-show-diff --max-width 80 Reported-by: Kevin Wolf <[email protected]> Reported-by: Greg Kurz <[email protected]> Signed-off-by: Vladimir Sementsov-Ogievskiy <[email protected]> Reviewed-by: Philippe Mathieu-Daudé <[email protected]> [Commit message tweaked] Signed-off-by: Markus Armbruster <[email protected]> Message-Id: <[email protected]> [ERRP_AUTO_PROPAGATE() renamed to ERRP_GUARD(), and auto-propagated-errp.cocci to errp-guard.cocci. Commit message tweaked again. Coccinelle script rerun for commit 3203148 "hw/nvram/fw_cfg: Add the FW_CFG_DATA_GENERATOR interface"]
1 parent 7661245 commit 8b4b527

File tree

1 file changed

+9
-12
lines changed

1 file changed

+9
-12
lines changed

hw/nvram/fw_cfg.c

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1035,8 +1035,8 @@ void *fw_cfg_modify_file(FWCfgState *s, const char *filename,
10351035
void fw_cfg_add_from_generator(FWCfgState *s, const char *filename,
10361036
const char *gen_id, Error **errp)
10371037
{
1038+
ERRP_GUARD();
10381039
FWCfgDataGeneratorClass *klass;
1039-
Error *local_err = NULL;
10401040
GByteArray *array;
10411041
Object *obj;
10421042
gsize size;
@@ -1052,9 +1052,8 @@ void fw_cfg_add_from_generator(FWCfgState *s, const char *filename,
10521052
return;
10531053
}
10541054
klass = FW_CFG_DATA_GENERATOR_GET_CLASS(obj);
1055-
array = klass->get_data(obj, &local_err);
1056-
if (local_err) {
1057-
error_propagate(errp, local_err);
1055+
array = klass->get_data(obj, errp);
1056+
if (*errp) {
10581057
return;
10591058
}
10601059
size = array->len;
@@ -1260,12 +1259,11 @@ static Property fw_cfg_io_properties[] = {
12601259

12611260
static void fw_cfg_io_realize(DeviceState *dev, Error **errp)
12621261
{
1262+
ERRP_GUARD();
12631263
FWCfgIoState *s = FW_CFG_IO(dev);
1264-
Error *local_err = NULL;
12651264

1266-
fw_cfg_file_slots_allocate(FW_CFG(s), &local_err);
1267-
if (local_err) {
1268-
error_propagate(errp, local_err);
1265+
fw_cfg_file_slots_allocate(FW_CFG(s), errp);
1266+
if (*errp) {
12691267
return;
12701268
}
12711269

@@ -1311,14 +1309,13 @@ static Property fw_cfg_mem_properties[] = {
13111309

13121310
static void fw_cfg_mem_realize(DeviceState *dev, Error **errp)
13131311
{
1312+
ERRP_GUARD();
13141313
FWCfgMemState *s = FW_CFG_MEM(dev);
13151314
SysBusDevice *sbd = SYS_BUS_DEVICE(dev);
13161315
const MemoryRegionOps *data_ops = &fw_cfg_data_mem_ops;
1317-
Error *local_err = NULL;
13181316

1319-
fw_cfg_file_slots_allocate(FW_CFG(s), &local_err);
1320-
if (local_err) {
1321-
error_propagate(errp, local_err);
1317+
fw_cfg_file_slots_allocate(FW_CFG(s), errp);
1318+
if (*errp) {
13221319
return;
13231320
}
13241321

0 commit comments

Comments
 (0)