summaryrefslogtreecommitdiffstats
path: root/libmount/src/mountP.h
diff options
context:
space:
mode:
authorKarel Zak2014-12-05 15:30:04 +0100
committerKarel Zak2014-12-05 15:30:04 +0100
commit372112e908e73a9737ad28ee7e33da271654baff (patch)
treef34a58c619de1e94942affb076b896044c6520a5 /libmount/src/mountP.h
parentlibblkid: fix potential bufer overflows (diff)
downloadkernel-qcow2-util-linux-372112e908e73a9737ad28ee7e33da271654baff.tar.gz
kernel-qcow2-util-linux-372112e908e73a9737ad28ee7e33da271654baff.tar.xz
kernel-qcow2-util-linux-372112e908e73a9737ad28ee7e33da271654baff.zip
libmount: add new libmnt_monitor API
It's usually enough to us [e]poll() to monitor kernel mount table, but there is no way how to monitor changes in userspace mount options (e.g. _netdev). The management of these mount options is completely hidden in libmount and /rub/mount/utab is private libmount file. This patch introduces new libmnt_mount API to monitor also userspace mount table. Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'libmount/src/mountP.h')
-rw-r--r--libmount/src/mountP.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libmount/src/mountP.h b/libmount/src/mountP.h
index d530d6419..73f264821 100644
--- a/libmount/src/mountP.h
+++ b/libmount/src/mountP.h
@@ -48,6 +48,8 @@
#define MNT_DEBUG_UTILS (1 << 8)
#define MNT_DEBUG_CXT (1 << 9)
#define MNT_DEBUG_DIFF (1 << 10)
+#define MNT_DEBUG_MONITOR (1 << 11)
+
#define MNT_DEBUG_ALL 0xFFFF
UL_DEBUG_DECLARE_MASK(libmount);