a1c266
From 17e470dc1acca4824b70328d733d5f99c12d0d65 Mon Sep 17 00:00:00 2001
a1c266
From: Kamil Dudka <kdudka@redhat.com>
a1c266
Date: Wed, 11 May 2011 16:46:45 +0200
a1c266
Subject: [PATCH] findutils-4.4.2-xautofs.patch
a1c266
a1c266
---
a1c266
 doc/find.texi  |    4 ++++
a1c266
 find/defs.h    |    3 +++
a1c266
 find/find.1    |    3 +++
a1c266
 find/ftsfind.c |    6 ++++++
a1c266
 find/parser.c  |    9 +++++++++
a1c266
 find/util.c    |    3 ++-
a1c266
 6 files changed, 27 insertions(+), 1 deletions(-)
a1c266
a1c266
diff --git a/doc/find.texi b/doc/find.texi
a1c266
index c584298..9731b71 100644
a1c266
--- a/doc/find.texi
a1c266
+++ b/doc/find.texi
a1c266
@@ -1474,6 +1474,10 @@ them.
a1c266
 There are two ways to avoid searching certain filesystems.  One way is
a1c266
 to tell @code{find} to only search one filesystem:
a1c266
 
a1c266
+@deffn Option -xautofs
a1c266
+Don't descend directories on autofs filesystems.
a1c266
+@end deffn
a1c266
+
a1c266
 @deffn Option -xdev
a1c266
 @deffnx Option -mount
a1c266
 Don't descend directories on other filesystems.  These options are
a1c266
diff --git a/find/defs.h b/find/defs.h
a1c266
index 11d1d00..f95ce72 100644
a1c266
--- a/find/defs.h
a1c266
+++ b/find/defs.h
a1c266
@@ -574,6 +574,9 @@ struct options
a1c266
   /* If true, don't cross filesystem boundaries. */
a1c266
   bool stay_on_filesystem;
a1c266
 
a1c266
+  /* If true, don't descend directories on autofs filesystems. */
a1c266
+  bool bypass_autofs;
a1c266
+
a1c266
   /* If true, we ignore the problem where we find that a directory entry
a1c266
    * no longer exists by the time we get around to processing it.
a1c266
    */
a1c266
diff --git a/find/find.1 b/find/find.1
a1c266
index e851f82..a4799ff 100644
a1c266
--- a/find/find.1
a1c266
+++ b/find/find.1
a1c266
@@ -567,6 +567,9 @@ to stat them; this gives a significant increase in search speed.
a1c266
 .IP "\-version, \-\-version"
a1c266
 Print the \fBfind\fR version number and exit.
a1c266
 
a1c266
+.IP \-xautofs
a1c266
+Don't descend directories on autofs filesystems.
a1c266
+
a1c266
 .IP \-xdev
a1c266
 Don't descend directories on other filesystems.
a1c266
 
a1c266
diff --git a/find/ftsfind.c b/find/ftsfind.c
a1c266
index 9fdb8ef..bd7cc37 100644
a1c266
--- a/find/ftsfind.c
a1c266
+++ b/find/ftsfind.c
a1c266
@@ -479,6 +479,12 @@ consider_visiting (FTS *p, FTSENT *ent)
a1c266
 	}
a1c266
     }
a1c266
 
a1c266
+  if (options.bypass_autofs &&
a1c266
+      0 == strcmp ("autofs", filesystem_type (&statbuf, ent->fts_name)))
a1c266
+    {
a1c266
+      fts_set(p, ent, FTS_SKIP); /* descend no further */
a1c266
+    }
a1c266
+
a1c266
   if ( (ent->fts_info == FTS_D) && !options.do_dir_first )
a1c266
     {
a1c266
       /* this is the preorder visit, but user said -depth */
a1c266
diff --git a/find/parser.c b/find/parser.c
a1c266
index 52a1ef6..995aec3 100644
a1c266
--- a/find/parser.c
a1c266
+++ b/find/parser.c
a1c266
@@ -138,6 +138,7 @@ static bool parse_used          (const struct parser_table*, char *argv[], int *
a1c266
 static bool parse_user          (const struct parser_table*, char *argv[], int *arg_ptr);
a1c266
 static bool parse_wholename     (const struct parser_table*, char *argv[], int *arg_ptr);
a1c266
 static bool parse_xdev          (const struct parser_table*, char *argv[], int *arg_ptr);
a1c266
+static bool parse_xautofs       (const struct parser_table*, char *argv[], int *arg_ptr);
a1c266
 static bool parse_ignore_race   (const struct parser_table*, char *argv[], int *arg_ptr);
a1c266
 static bool parse_noignore_race (const struct parser_table*, char *argv[], int *arg_ptr);
a1c266
 static bool parse_warn          (const struct parser_table*, char *argv[], int *arg_ptr);
a1c266
@@ -302,6 +303,7 @@ static struct parser_table const parse_table[] =
a1c266
   PARSE_TEST_NP    ("wholename",             wholename), /* GNU, replaced -path, but now -path is standardized since POSIX 2008 */
a1c266
   {ARG_TEST,       "writable",               parse_accesscheck, pred_writable}, /* GNU, 4.3.0+ */
a1c266
   PARSE_OPTION     ("xdev",                  xdev), /* POSIX */
a1c266
+  PARSE_OPTION     ("xautofs",               xautofs),
a1c266
   PARSE_TEST       ("xtype",                 xtype),	     /* GNU */
a1c266
 #ifdef UNIMPLEMENTED_UNIX
a1c266
   /* It's pretty ugly for find to know about archive formats.
a1c266
@@ -2603,6 +2605,13 @@ parse_xdev (const struct parser_table* entry, char **argv, int *arg_ptr)
a1c266
   return parse_noop (entry, argv, arg_ptr);
a1c266
 }
a1c266
 
a1c266
+static bool
a1c266
+parse_xautofs (const struct parser_table* entry, char **argv, int *arg_ptr)
a1c266
+{
a1c266
+  options.bypass_autofs = true;
a1c266
+  return parse_noop (entry, argv, arg_ptr);
a1c266
+}
a1c266
+
a1c266
 static bool
a1c266
 parse_ignore_race (const struct parser_table* entry, char **argv, int *arg_ptr)
a1c266
 {
a1c266
diff --git a/find/util.c b/find/util.c
a1c266
index 8577396..4d45f84 100644
a1c266
--- a/find/util.c
a1c266
+++ b/find/util.c
a1c266
@@ -181,7 +181,7 @@ operators (decreasing precedence; -and is implicit where no others are given):\n
a1c266
 positional options (always true): -daystart -follow -regextype\n\n\
a1c266
 normal options (always true, specified before other expressions):\n\
a1c266
       -depth --help -maxdepth LEVELS -mindepth LEVELS -mount -noleaf\n\
a1c266
-      --version -xdev -ignore_readdir_race -noignore_readdir_race\n"));
a1c266
+      --version -xautofs -xdev -ignore_readdir_race -noignore_readdir_race\n"));
a1c266
   HTL (_("\
a1c266
 tests (N can be +N or -N or N): -amin N -anewer FILE -atime N -cmin N\n\
a1c266
       -cnewer FILE -ctime N -empty -false -fstype TYPE -gid N -group NAME\n\
a1c266
@@ -1044,6 +1044,7 @@ set_option_defaults (struct options *p)
a1c266
 
a1c266
   p->full_days = false;
a1c266
   p->stay_on_filesystem = false;
a1c266
+  p->bypass_autofs = false;
a1c266
   p->ignore_readdir_race = false;
a1c266
 
a1c266
   if (p->posixly_correct)
a1c266
-- 
a1c266
1.7.4.4
a1c266