From: "Benjamin Marzinski" <bmarzins@redhat.com>
To: device-mapper development <dm-devel@redhat.com>
Cc: Christophe Varoqui <christophe.varoqui@gmail.com>
Subject: [PATCH v2 00/18] Multipath patch sync
Date: Thu,  7 Apr 2016 18:19:54 -0500	[thread overview]
Message-ID: <1460071212-21018-1-git-send-email-bmarzins@redhat.com> (raw)
This is a resend of my previous batch of patches.  The only one that has
changed (besides in offsets) is patch 10 "multipathd: delay reloads during
creation". I renamed the config option "missing_uev_wait_timeout". When
it triggers, multipath will simply print a warning message and re-enable
reloads as if it had received the uevent.
I also added a new patch that adds a new keyword to the weightedpath
prioritizer, so that you can refer to paths in a persistent way.
Benjamin Marzinski (18):
  multipathd: use /run instead of /var/run
  retrigger uevents to try and get the uid through udev
  Fix issues with user_friendly_names initramfs bindings
  Add libmpathcmd library and use it internally
  libmultipath: add ignore_new_boot_devs option
  libmultipath: fix PAD and PRINT macros
  libmultipath: Cut down on alua prioritizer ioctls
  multipathd: fail if pidfile can't be created
  libmultipath: check correct function for define
  multipathd: delay reloads during creation
  multipath: Fix minor text issues
  kpartx: verify partition devices
  multipath: add exclusive_pref_bit for alua prio
  multipathd: print "fail" when remove fails
  multipath: check partitions unused before removing
  multipathd.service: remove blk-availability Requires
  multipathd: use 64-bit int for command key
  multipath: add wwn keyword to weightedpath prio
 Makefile                                 |   1 +
 Makefile.inc                             |  12 +-
 kpartx/devmapper.c                       |  17 ++-
 kpartx/devmapper.h                       |   2 +-
 kpartx/kpartx.c                          |  70 ++++++++++-
 libmpathcmd/Makefile                     |  30 +++++
 libmpathcmd/mpath_cmd.c                  | 178 +++++++++++++++++++++++++++
 libmpathcmd/mpath_cmd.h                  | 125 +++++++++++++++++++
 libmpathpersist/Makefile                 |   9 +-
 libmpathpersist/mpath_persist.c          |   2 +-
 libmpathpersist/mpath_updatepr.c         |  14 +--
 libmultipath/Makefile                    |   5 +-
 libmultipath/config.c                    |   7 +-
 libmultipath/config.h                    |   5 +
 libmultipath/configure.c                 |  20 +--
 libmultipath/defaults.h                  |   6 +-
 libmultipath/devmapper.c                 |  46 +++++--
 libmultipath/devmapper.h                 |   2 +-
 libmultipath/dict.c                      |  20 ++-
 libmultipath/discovery.c                 |  28 +++--
 libmultipath/discovery.h                 |   2 +
 libmultipath/print.c                     |  25 ++--
 libmultipath/print.h                     |   4 +
 libmultipath/prioritizers/alua.c         |  44 ++++---
 libmultipath/prioritizers/alua_rtpg.c    |  69 +++++++----
 libmultipath/prioritizers/alua_rtpg.h    |   2 +-
 libmultipath/prioritizers/weightedpath.c |  37 ++++++
 libmultipath/prioritizers/weightedpath.h |   1 +
 libmultipath/propsel.c                   |   2 +-
 libmultipath/structs.h                   |  10 ++
 libmultipath/uxsock.c                    |  73 +++--------
 libmultipath/uxsock.h                    |   5 +-
 libmultipath/wwids.c                     |  19 +--
 mpathpersist/Makefile                    |   2 +-
 multipath.conf.defaults                  |   1 +
 multipath/Makefile                       |   5 +-
 multipath/main.c                         |   6 +-
 multipath/multipath.conf.5               |  36 +++++-
 multipathd/Makefile                      |   5 +-
 multipathd/cli.c                         |  22 ++--
 multipathd/cli.h                         |  20 +--
 multipathd/cli_handlers.c                |  73 ++++++++---
 multipathd/main.c                        | 205 ++++++++++++++++++++++++++-----
 multipathd/main.h                        |   1 +
 multipathd/multipathd.8                  |   4 +
 multipathd/multipathd.init.suse          |   2 +-
 multipathd/multipathd.service            |   3 +-
 multipathd/uxclnt.c                      |  13 +-
 multipathd/uxlsnr.c                      |  11 +-
 49 files changed, 1031 insertions(+), 270 deletions(-)
 create mode 100644 libmpathcmd/Makefile
 create mode 100644 libmpathcmd/mpath_cmd.c
 create mode 100644 libmpathcmd/mpath_cmd.h
-- 
1.8.3.1
next             reply	other threads:[~2016-04-07 23:19 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-04-07 23:19 Benjamin Marzinski [this message]
2016-04-07 23:19 ` [PATCH v2 01/18] multipathd: use /run instead of /var/run Benjamin Marzinski
2016-04-07 23:19 ` [PATCH v2 02/18] retrigger uevents to try and get the uid through udev Benjamin Marzinski
2016-04-07 23:19 ` [PATCH v2 03/18] Fix issues with user_friendly_names initramfs bindings Benjamin Marzinski
2016-04-07 23:19 ` [PATCH v2 04/18] Add libmpathcmd library and use it internally Benjamin Marzinski
2016-04-07 23:19 ` [PATCH v2 05/18] libmultipath: add ignore_new_boot_devs option Benjamin Marzinski
2016-04-07 23:20 ` [PATCH v2 06/18] libmultipath: fix PAD and PRINT macros Benjamin Marzinski
2016-04-07 23:20 ` [PATCH v2 07/18] libmultipath: Cut down on alua prioritizer ioctls Benjamin Marzinski
2016-04-07 23:20 ` [PATCH v2 08/18] multipathd: fail if pidfile can't be created Benjamin Marzinski
2016-04-07 23:20 ` [PATCH v2 09/18] libmultipath: check correct function for define Benjamin Marzinski
2016-04-07 23:20 ` [PATCH v2 10/18] multipathd: delay reloads during creation Benjamin Marzinski
2016-04-08  8:36   ` Zdenek Kabelac
2016-04-08 21:53     ` Benjamin Marzinski
2016-04-07 23:20 ` [PATCH v2 11/18] multipath: Fix minor text issues Benjamin Marzinski
2016-04-07 23:20 ` [PATCH v2 12/18] kpartx: verify partition devices Benjamin Marzinski
2016-04-07 23:20 ` [PATCH v2 13/18] multipath: add exclusive_pref_bit for alua prio Benjamin Marzinski
2016-04-07 23:20 ` [PATCH v2 14/18] multipathd: print "fail" when remove fails Benjamin Marzinski
2016-04-07 23:20 ` [PATCH v2 15/18] multipath: check partitions unused before removing Benjamin Marzinski
2016-04-07 23:20 ` [PATCH v2 16/18] multipathd.service: remove blk-availability Requires Benjamin Marzinski
2016-04-07 23:20 ` [PATCH v2 17/18] multipathd: use 64-bit int for command key Benjamin Marzinski
2016-04-07 23:20 ` [PATCH v2 18/18] multipath: add wwn keyword to weightedpath prio Benjamin Marzinski
2016-04-18  9:36 ` [PATCH v2 00/18] Multipath patch sync Christophe Varoqui
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=1460071212-21018-1-git-send-email-bmarzins@redhat.com \
    --to=bmarzins@redhat.com \
    --cc=christophe.varoqui@gmail.com \
    --cc=dm-devel@redhat.com \
    /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 NNTP newsgroup(s).