X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fcore%2Fswap.h;h=9136b9abab724083dc27abf34b1235bf2d15b1bf;hb=340a1d2330ddc1dd18ad75bcdddf32f63c84b4a1;hp=313a1959577208ffa40dcf05c6102c288ffac7f6;hpb=5bcb0f2ba0615897662fcd4f6227d066781c6fc2;p=elogind.git diff --git a/src/core/swap.h b/src/core/swap.h index 313a19595..9136b9aba 100644 --- a/src/core/swap.h +++ b/src/core/swap.h @@ -22,9 +22,10 @@ along with systemd; If not, see . ***/ +#include + typedef struct Swap Swap; -#include "unit.h" typedef enum SwapState { SWAP_DEAD, @@ -61,9 +62,8 @@ typedef enum SwapResult { typedef struct SwapParameters { char *what; + char *options; int priority; - bool noauto:1; - bool nofail:1; } SwapParameters; struct Swap { @@ -71,6 +71,11 @@ struct Swap { char *what; + /* If the device has already shown up, this is the device + * node, which might be different from what, due to + * symlinks */ + char *devnode; + SwapParameters parameters_proc_swaps; SwapParameters parameters_fragment; @@ -82,6 +87,8 @@ struct Swap { bool is_active:1; bool just_activated:1; + bool reset_cpu_usage:1; + SwapResult result; usec_t timeout_usec; @@ -91,6 +98,8 @@ struct Swap { KillContext kill_context; CGroupContext cgroup_context; + ExecRuntime *exec_runtime; + SwapState state, deserialized_state; ExecCommand* control_command; @@ -103,11 +112,14 @@ struct Swap { different device nodes we might end up creating multiple devices for the same swap. We chain them up here. */ - LIST_FIELDS(struct Swap, same_proc_swaps); + LIST_FIELDS(struct Swap, same_devnode); }; extern const UnitVTable swap_vtable; +int swap_process_device_new(Manager *m, struct udev_device *dev); +int swap_process_device_remove(Manager *m, struct udev_device *dev); + const char* swap_state_to_string(SwapState i) _const_; SwapState swap_state_from_string(const char *s) _pure_;