summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZdenek Kabelac <zkabelac@redhat.com>2015-10-12 11:35:33 +0200
committerZdenek Kabelac <zkabelac@redhat.com>2015-10-13 15:22:58 +0200
commit09a8479cb70ea2761ebd6988926017aa13fc5f5d (patch)
treee6d1b5fe1c7510c45e3a1fe71e488b36708b35fe
parent0a633750f1e43aa655e5e6e05269aeab8650f55d (diff)
downloadlvm2-09a8479cb70ea2761ebd6988926017aa13fc5f5d.tar.gz
cleanup: move system defines before structs
-rw-r--r--daemons/dmeventd/plugins/thin/dmeventd_thin.c22
1 files changed, 10 insertions, 12 deletions
diff --git a/daemons/dmeventd/plugins/thin/dmeventd_thin.c b/daemons/dmeventd/plugins/thin/dmeventd_thin.c
index 0801adfd3..d21e65bca 100644
--- a/daemons/dmeventd/plugins/thin/dmeventd_thin.c
+++ b/daemons/dmeventd/plugins/thin/dmeventd_thin.c
@@ -19,11 +19,19 @@
#include <sys/wait.h>
#include <stdarg.h>
-/* First warning when thin is 80% full. */
+/* TODO - move this mountinfo code into library to be reusable */
+#ifdef __linux__
+# include "kdev_t.h"
+#else
+# define MAJOR(x) major((x))
+# define MINOR(x) minor((x))
+#endif
+
+/* First warning when thin data or metadata is 80% full. */
#define WARNING_THRESH 80
/* Run a check every 5%. */
#define CHECK_STEP 5
-/* Do not bother checking thins less than 50% full. */
+/* Do not bother checking thin data or metadata is less than 50% full. */
#define CHECK_MINIMUM 50
#define UMOUNT_COMMAND "/bin/umount"
@@ -39,16 +47,6 @@ struct dso_state {
char cmd_str[1024];
};
-
-/* TODO - move this mountinfo code into library to be reusable */
-#ifdef __linux__
-# include "kdev_t.h"
-#else
-# define MAJOR(x) major((x))
-# define MINOR(x) minor((x))
-# define MKDEV(x,y) makedev((x),(y))
-#endif
-
DM_EVENT_LOG_FN("thin")
/* Get dependencies for device, and try to find matching device */