1
0
mirror of https://github.com/systemd/systemd.git synced 2024-11-07 18:27:04 +03:00

core dbus: Check that flush works with memstream

This commit is contained in:
Nicolas Cornu 2015-10-21 18:17:12 +02:00
parent 91839b49dd
commit 1f2f874c3c
2 changed files with 12 additions and 4 deletions

View File

@ -421,7 +421,9 @@ int bus_cgroup_set_property(
fprintf(f, "BlockIOWriteBandwidth=%s %" PRIu64 "\n", a->path, a->bandwidth);
}
fflush(f);
r = fflush_and_check(f);
if (r < 0)
return r;
unit_write_drop_in_private(u, mode, name, buf);
}
@ -495,7 +497,9 @@ int bus_cgroup_set_property(
LIST_FOREACH(device_weights, a, c->blockio_device_weights)
fprintf(f, "BlockIODeviceWeight=%s %" PRIu64 "\n", a->path, a->weight);
fflush(f);
r = fflush_and_check(f);
if (r < 0)
return r;
unit_write_drop_in_private(u, mode, name, buf);
}
@ -640,7 +644,9 @@ int bus_cgroup_set_property(
LIST_FOREACH(device_allow, a, c->device_allow)
fprintf(f, "DeviceAllow=%s %s%s%s\n", a->path, a->r ? "r" : "", a->w ? "w" : "", a->m ? "m" : "");
fflush(f);
r = fflush_and_check(f);
if (r < 0)
return r;
unit_write_drop_in_private(u, mode, name, buf);
}

View File

@ -243,7 +243,9 @@ static int bus_service_set_transient_property(
a);
}
fflush(f);
r = fflush_and_check(f);
if (r < 0)
return r;
unit_write_drop_in_private(UNIT(s), mode, name, buf);
}