summaryrefslogtreecommitdiff
path: root/src/machine/operation.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2016-06-24 16:01:14 +0200
committerLennart Poettering <lennart@poettering.net>2016-06-24 16:01:14 +0200
commit03c2b2889fa2d090d7953e28124ec5d00898289d (patch)
tree9c9c6a7f4d63510817142e8f30acabe9abf5abe1 /src/machine/operation.h
parent5816a84352e19492df61036d26eff0eb00f2d8c0 (diff)
machined: "machinectl clean" can take a while, do it asynchronously from a background process
This is a follow-up to 5d2036b5f3506bd0ff07042aee8d69c26db32298, and also makes the "machinectl clean" verb asynchronous, after all it's little more than a series of image removals. The changes required to make this happen are a bit more comprehensive as we need to pass information about deleted images back to the client, as well as information about the image we failed on if we failed on one. Hence, create a temporary file in /tmp, serialize that data into, and read it from the parent after the operation is complete.
Diffstat (limited to 'src/machine/operation.h')
-rw-r--r--src/machine/operation.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/machine/operation.h b/src/machine/operation.h
index 7ca47bc3af..9831b123d7 100644
--- a/src/machine/operation.h
+++ b/src/machine/operation.h
@@ -38,10 +38,12 @@ struct Operation {
pid_t pid;
sd_bus_message *message;
int errno_fd;
+ int extra_fd;
sd_event_source *event_source;
+ int (*done)(Operation *o, int ret, sd_bus_error *error);
LIST_FIELDS(Operation, operations);
LIST_FIELDS(Operation, operations_by_machine);
};
-int operation_new(Manager *manager, Machine *machine, pid_t child, sd_bus_message *message, int errno_fd);
+int operation_new(Manager *manager, Machine *machine, pid_t child, sd_bus_message *message, int errno_fd, Operation **ret);
Operation *operation_free(Operation *o);