* [PATCH] libmount/context: ignore fstab entries with fstype "ignore"
@ 2012-06-17 15:36 Dave Reisner
2012-06-19 10:13 ` Karel Zak
0 siblings, 1 reply; 2+ messages in thread
From: Dave Reisner @ 2012-06-17 15:36 UTC (permalink / raw)
To: util-linux; +Cc: Dave Reisner
This is documented in fstab(5) as being a valid option for fstype, and
should be left alone when iterating via mount -a, similar to "noauto" in
the option string.
Signed-off-by: Dave Reisner <dreisner@archlinux.org>
---
libmount/src/context_mount.c | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/libmount/src/context_mount.c b/libmount/src/context_mount.c
index 36dc414..04a34c0 100644
--- a/libmount/src/context_mount.c
+++ b/libmount/src/context_mount.c
@@ -831,7 +831,7 @@ int mnt_context_next_mount(struct libmnt_context *cxt,
int *ignored)
{
struct libmnt_table *fstab, *mtab;
- const char *o, *tgt;
+ const char *o, *tgt, *fstype;
int rc, mounted = 0;
if (ignored)
@@ -857,6 +857,7 @@ int mnt_context_next_mount(struct libmnt_context *cxt,
o = mnt_fs_get_user_options(*fs);
tgt = mnt_fs_get_target(*fs);
+ fstype = mnt_fs_get_fstype(*fs);
DBG(CXT, mnt_debug_h(cxt, "next-mount: trying %s", tgt));
@@ -869,6 +870,9 @@ int mnt_context_next_mount(struct libmnt_context *cxt,
/* ignore noauto filesystems */
(o && mnt_optstr_get_option(o, "noauto", NULL, NULL) == 0) ||
+ /* ignore filesystems declared with fstype "ignore" */
+ (strcmp(fstype, "ignore") == 0) ||
+
/* ignore filesystems not match with options patterns */
(cxt->fstype_pattern && !mnt_fs_match_fstype(*fs,
cxt->fstype_pattern)) ||
@@ -880,7 +884,7 @@ int mnt_context_next_mount(struct libmnt_context *cxt,
*ignored = 1;
DBG(CXT, mnt_debug_h(cxt, "next-mount: not-match "
"[fstype: %s, t-pattern: %s, options: %s, O-pattern: %s]",
- mnt_fs_get_fstype(*fs),
+ fstype,
cxt->fstype_pattern,
mnt_fs_get_options(*fs),
cxt->optstr_pattern));
--
1.7.10.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-06-19 10:13 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-17 15:36 [PATCH] libmount/context: ignore fstab entries with fstype "ignore" Dave Reisner
2012-06-19 10:13 ` Karel Zak
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).