autofs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Ian Kent <raven@themaw.net>
To: autofs mailing list <autofs@vger.kernel.org>
Subject: [PATCH 00/27] Still trying to get 5.1.4 released
Date: Mon, 11 Dec 2017 16:56:58 +0800	[thread overview]
Message-ID: <151298256987.19722.18421086447160152668.stgit@pluto.themaw.net> (raw)

I have committed the last series I posted to the autofs repository,
expect for the "fix ordering of seteuid/setegid in do_spawn()" patch
which changed order in the queue during the discussion of the previous
series.

But now there are a number of additional patches that I really
would like to include in 5.1.4 too.

Comments welcome.
---

Ian Kent (25):
      autofs-5.1.3 - handle additional nfs versions in mount_nfs.c
      autofs-5.1.3 - fix symlink option passthrough in mount_nfs.c
      autofs-5.1.3 - update configure to check for pipe2(2)
      autofs-5.1.3 - fix open calls not using open_xxxx() calls
      autofs-5.1.3 - move open_xxxx() functions to spawn.c
      autofs-5.1.3 - serialize calls to open_xxxx() functions
      autofs-5.1.3 - improve debug logging of lookup key
      autofs-5.1.3 - fix typo in amd_parse.c
      autofs-5.1.3 - add missing MODPREFIX to logging in amd parser
      autofs-5.1.3 - fix symlink false negative in umount_multi()
      autofs-5.1.3 - remove expand_selectors() call on amd parser entry
      autofs-5.1.3 - fix amd defaults map entry handling
      autofs-5.1.3 - refactor amd_parse.c
      autofs-5.1.3 - fix amd parser double quote handling
      autofs-5.1.3 - fix expandamdent() quote handling
      autofs-5.1.3 - fix possible memory leak during amd parse
      autofs-5.1.3 - remove path restriction of amd external mount
      autofs-5.1.3 - add function umount_amd_ext_mount()
      autofs-5.1.3 - add function ext_mount_inuse()
      autofs-5.1.3 - add function construct_argv()
      autofs-5.1.3 - add amd mount type program mount support
      autofs-5.1.3 - fix memory leak in umount_amd_ext_mount()
      autofs-5.1.3 - fix strerror_r() parameter declaration in do program_mount()
      autofs-5.1.3 - fix incorrect check in validate_program_options()
      autofs-5.1.3 - fix log message in spawn_umount()

Jeff Mahoney (1):
      autofs-5.1.3 - fix ordering of seteuid/setegid in do_spawn()

Thiago Rafael Becker (1):
      autofs-5.1.3 - Fix two typos


 CHANGELOG                |   26 ++
 README.amd-maps          |    6 -
 configure                |   18 ++
 configure.in             |    2 
 daemon/automount.c       |   29 ---
 daemon/spawn.c           |  185 +++++++++++++++++
 include/automount.h      |  134 +------------
 include/config.h.in      |    3 
 include/mounts.h         |    2 
 include/parse_amd.h      |    3 
 include/parse_subs.h     |    1 
 lib/mounts.c             |   96 +++++++--
 lib/parse_subs.c         |  103 ++++++++--
 man/auto.master.5.in     |    2 
 man/automount.8          |    2 
 modules/amd_parse.y      |  489 ++++++++++++++++++++++++++++++++++------------
 modules/amd_tok.l        |    4 
 modules/lookup_file.c    |   14 +
 modules/lookup_hesiod.c  |   20 ++
 modules/lookup_ldap.c    |   15 +
 modules/lookup_nisplus.c |   15 +
 modules/lookup_program.c |    3 
 modules/lookup_yp.c      |   43 ++--
 modules/mount_nfs.c      |   13 +
 modules/parse_amd.c      |  302 ++++++++++++++++++++++------
 25 files changed, 1105 insertions(+), 425 deletions(-)

--
Ian
--
To unsubscribe from this list: send the line "unsubscribe autofs" in

             reply	other threads:[~2017-12-11  8:56 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-12-11  8:56 Ian Kent [this message]
2017-12-11  8:57 ` [PATCH 01/27] autofs-5.1.3 - handle additional nfs versions in mount_nfs.c Ian Kent
2017-12-11  8:57 ` [PATCH 02/27] autofs-5.1.3 - fix symlink option passthrough " Ian Kent
2017-12-11  8:57 ` [PATCH 03/27] autofs-5.1.3 - fix ordering of seteuid/setegid in do_spawn() Ian Kent
2017-12-11  8:57 ` [PATCH 04/27] autofs-5.1.3 - Fix two typos Ian Kent
2017-12-11  8:58 ` [PATCH 05/27] autofs-5.1.3 - update configure to check for pipe2(2) Ian Kent
2017-12-11  8:58 ` [PATCH 06/27] autofs-5.1.3 - fix open calls not using open_xxxx() calls Ian Kent
2017-12-11  8:58 ` [PATCH 07/27] autofs-5.1.3 - move open_xxxx() functions to spawn.c Ian Kent
2017-12-11  8:58 ` [PATCH 08/27] autofs-5.1.3 - serialize calls to open_xxxx() functions Ian Kent
2017-12-11  8:58 ` [PATCH 09/27] autofs-5.1.3 - improve debug logging of lookup key Ian Kent
2017-12-11  8:58 ` [PATCH 10/27] autofs-5.1.3 - fix typo in amd_parse.c Ian Kent
2017-12-11  8:58 ` [PATCH 11/27] autofs-5.1.3 - add missing MODPREFIX to logging in amd parser Ian Kent
2017-12-11  8:58 ` [PATCH 12/27] autofs-5.1.3 - fix symlink false negative in umount_multi() Ian Kent
2017-12-11  8:58 ` [PATCH 13/27] autofs-5.1.3 - remove expand_selectors() call on amd parser entry Ian Kent
2017-12-11  8:59 ` [PATCH 14/27] autofs-5.1.3 - fix amd defaults map entry handling Ian Kent
2017-12-11  8:59 ` [PATCH 15/27] autofs-5.1.3 - refactor amd_parse.c Ian Kent
2017-12-11  8:59 ` [PATCH 16/27] autofs-5.1.3 - fix amd parser double quote handling Ian Kent
2017-12-11  8:59 ` [PATCH 17/27] autofs-5.1.3 - fix expandamdent() " Ian Kent
2017-12-11  8:59 ` [PATCH 18/27] autofs-5.1.3 - fix possible memory leak during amd parse Ian Kent
2017-12-11  8:59 ` [PATCH 19/27] autofs-5.1.3 - remove path restriction of amd external mount Ian Kent
2017-12-11  8:59 ` [PATCH 20/27] autofs-5.1.3 - add function umount_amd_ext_mount() Ian Kent
2017-12-11  8:59 ` [PATCH 21/27] autofs-5.1.3 - add function ext_mount_inuse() Ian Kent
2017-12-11  8:59 ` [PATCH 22/27] autofs-5.1.3 - add function construct_argv() Ian Kent
2017-12-11  8:59 ` [PATCH 23/27] autofs-5.1.3 - add amd mount type program mount support Ian Kent
2017-12-11  9:00 ` [PATCH 24/27] autofs-5.1.3 - fix memory leak in umount_amd_ext_mount() Ian Kent
2017-12-11  9:00 ` [PATCH 25/27] autofs-5.1.3 - fix strerror_r() parameter declaration in do program_mount() Ian Kent
2017-12-11  9:00 ` [PATCH 26/27] autofs-5.1.3 - fix incorrect check in validate_program_options() Ian Kent
2017-12-11  9:00 ` [PATCH 27/27] autofs-5.1.3 - fix log message in spawn_umount() Ian Kent

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=151298256987.19722.18421086447160152668.stgit@pluto.themaw.net \
    --to=raven@themaw.net \
    --cc=autofs@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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 read-only IMAP folder(s) and NNTP newsgroup(s).