summaryrefslogtreecommitdiff
path: root/src/core/swap.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2013-11-25 21:08:39 +0100
committerLennart Poettering <lennart@poettering.net>2013-11-25 22:10:22 +0100
commit9670d583d381d4c2c7f4d80de63bee7ad54fef44 (patch)
tree64468a91c77e6ea65f684353e3af59d6b20313ac /src/core/swap.h
parent0bee65f0622c4faa8ac8ae771cc0c8a936dfa284 (diff)
downloadsystemd-9670d583d381d4c2c7f4d80de63bee7ad54fef44.tar.gz
swap: always track the current real device node of all swap devices, even when not active
This way, we can avoid executing two /bin/swapon jobs to be dispatched for the same swap device if it is configured for two different paths. Previously we were just tracking the device nodes of active swap devices, which would not allow us to recognize the identity of two swap devices before they are active. https://bugs.freedesktop.org/show_bug.cgi?id=69835
Diffstat (limited to 'src/core/swap.h')
-rw-r--r--src/core/swap.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/core/swap.h b/src/core/swap.h
index 313a195957..3005abb2d2 100644
--- a/src/core/swap.h
+++ b/src/core/swap.h
@@ -22,6 +22,8 @@
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
+#include <libudev.h>
+
typedef struct Swap Swap;
#include "unit.h"
@@ -71,6 +73,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;
@@ -103,11 +110,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_new_device(Manager *m, struct udev_device *dev);
+int swap_process_removed_device(Manager *m, struct udev_device *dev);
+
const char* swap_state_to_string(SwapState i) _const_;
SwapState swap_state_from_string(const char *s) _pure_;