summaryrefslogtreecommitdiffstats
path: root/libmount/src/mountP.h
diff options
context:
space:
mode:
authorKarel Zak2014-11-03 13:13:12 +0100
committerKarel Zak2014-11-03 13:13:12 +0100
commit3533341614bc42282df4eb6104d2e212e74660fc (patch)
treed82f48ba65c7b706eb6f963ad8c6d64e338442f8 /libmount/src/mountP.h
parentlibblkid: clean up debug, add "help" debug mask (diff)
downloadkernel-qcow2-util-linux-3533341614bc42282df4eb6104d2e212e74660fc.tar.gz
kernel-qcow2-util-linux-3533341614bc42282df4eb6104d2e212e74660fc.tar.xz
kernel-qcow2-util-linux-3533341614bc42282df4eb6104d2e212e74660fc.zip
libmount: clean up debug, add help debug mask
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'libmount/src/mountP.h')
-rw-r--r--libmount/src/mountP.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/libmount/src/mountP.h b/libmount/src/mountP.h
index f2d0a5768..2dd9fae46 100644
--- a/libmount/src/mountP.h
+++ b/libmount/src/mountP.h
@@ -37,17 +37,17 @@
/*
* Debug
*/
+#define MNT_DEBUG_HELP (1 << 0)
#define MNT_DEBUG_INIT (1 << 1)
#define MNT_DEBUG_CACHE (1 << 2)
#define MNT_DEBUG_OPTIONS (1 << 3)
#define MNT_DEBUG_LOCKS (1 << 4)
#define MNT_DEBUG_TAB (1 << 5)
#define MNT_DEBUG_FS (1 << 6)
-#define MNT_DEBUG_OPTS (1 << 7)
-#define MNT_DEBUG_UPDATE (1 << 8)
-#define MNT_DEBUG_UTILS (1 << 9)
-#define MNT_DEBUG_CXT (1 << 10)
-#define MNT_DEBUG_DIFF (1 << 11)
+#define MNT_DEBUG_UPDATE (1 << 7)
+#define MNT_DEBUG_UTILS (1 << 8)
+#define MNT_DEBUG_CXT (1 << 9)
+#define MNT_DEBUG_DIFF (1 << 10)
#define MNT_DEBUG_ALL 0xFFFF
UL_DEBUG_DECLARE_MASK(libmount);