All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/30] SLES resync, second try
@ 2013-07-16  7:12 Hannes Reinecke
  2013-07-16  7:12 ` [PATCH 01/30] multipath: bind lifetime of udev context to main thread Hannes Reinecke
                   ` (30 more replies)
  0 siblings, 31 replies; 39+ messages in thread
From: Hannes Reinecke @ 2013-07-16  7:12 UTC (permalink / raw)
  To: Christophe Varoqui; +Cc: dm-devel

Hi Christophe,

here as some patches which accumulated in my SLES repository.
Most are plain bugfixes, but there are some nasty issues fixed
with this:
- The conversion to libudev was a bit overzealous; originally
  we'd be skipping all devices which don't have a SCSI ID.
  With libudev we'd be including even those, making multipath
  claiming even USB flash disks 
  So I've implemented a new 'property' blacklist which will
  allow us to blacklist devices based on the udev property.
- dev_loss_tmo setting continues to be tricky, but this time
  I think we've got it sorted
- When using libudev to read attribute variables we'd be getting
  an automated caching from libudev. Which is nice, unless the
  data changed in between. So I'd have to go back an roll our
  own accessors, skipping libudev here.
- Ripping out 'getuid_callout' rendered all old configuration
  files still using in unworkable. So I've re-introduced it by
  marked it 'obsolete'.
- The confusion regarding directly reading from udev has been
  cleared up; I've added another patch for reading the 'state'
  attribute directly, too.

As usual, comments etc are welcome.

The patchset can also be pulled from
git://github.com/hreinecke/multipath-tools.git
branch sles-resync

Hannes Reinecke (28):
  multipath: bind lifetime of udev context to main thread
  Document 'infinity' as possible value for dev_loss_tmo
  alua: Do not add preferred path priority for active/optimized
  multipath: Increase dev_loss_tmo prior to fast_io_fail
  libmultipath: return PATH_DOWN for quiesced paths
  libmultipath: Implement PATH_TIMEOUT
  Deprecate pg_timeout
  kpartx: create correct symlinks for PATH_FAILED events
  multipath: Deprecate 'getuid' configuration variable
  multipath: Add 'Datacore Virtual Disk' to internal hardware table
  Minor fixes for priority handling
  Check return value from pathinfo()
  Read directly from sysfs when checking the device size
  multipath.conf.annotated: Document rr_min_io_rq
  Correctly print out 'max' for max_fds
  Correctly set max_fds in case of failure
  Update multipath.conf.defaults
  Correctly set pgfailback
  multipath.conf.5: clarify 'no_path_retry' default setting
  multipath.conf.annotated: remove 'udev_dir'
  multipath: Implement 'property' blacklist
  Do not print error when rport is blocked
  multipath: reference the udev context when starting event queue
  multipathd: valgrind fixes
  multipathd: increase stacksize for uevent listener
  Specify checker_timeout in seconds
  multipath: reset queue_if_no_path if flush failed
  libmultipath: read path state directly from sysfs

Petr Uzel (2):
  kpartx: support disk with non-512B sectors
  multipath: fix setting of fast_io_fail_tmo

 kpartx/dos.c                         |  17 +--
 kpartx/gpt.c                         |  20 +---
 kpartx/kpartx.c                      |  12 ++
 kpartx/kpartx.h                      |   8 ++
 kpartx/kpartx.rules                  |  18 ++-
 libmpathpersist/mpath_persist.c      |   7 +-
 libmpathpersist/mpath_persist.h      |   2 +-
 libmpathpersist/mpath_pr_ioctl.c     |   5 +-
 libmultipath/Makefile                |   2 +-
 libmultipath/blacklist.c             | 105 +++++++++++++----
 libmultipath/blacklist.h             |  19 +--
 libmultipath/callout.c               | 216 +++++++++++++++++++++++++++++++++++
 libmultipath/callout.h               |   7 ++
 libmultipath/checkers.c              |   3 +-
 libmultipath/checkers.h              |   5 +
 libmultipath/checkers/emc_clariion.c |   2 +-
 libmultipath/checkers/hp_sw.c        |   4 +-
 libmultipath/checkers/libsg.c        |   2 +-
 libmultipath/checkers/rdac.c         |   4 +-
 libmultipath/checkers/tur.c          |   4 +-
 libmultipath/config.c                |  44 +++++--
 libmultipath/config.h                |  10 +-
 libmultipath/configure.c             |  25 ++--
 libmultipath/devmapper.c             |  31 ++---
 libmultipath/devmapper.h             |   3 +-
 libmultipath/dict.c                  | 195 +++++++++++++++++--------------
 libmultipath/discovery.c             | 174 +++++++++++++++++++++-------
 libmultipath/discovery.h             |   2 +-
 libmultipath/hwtable.c               |  13 +++
 libmultipath/print.c                 |  35 ++++++
 libmultipath/prioritizers/alua.c     |   2 +-
 libmultipath/propsel.c               |  57 +++------
 libmultipath/propsel.h               |   1 -
 libmultipath/structs.h               |   2 +-
 libmultipath/structs_vec.c           |   2 +-
 libmultipath/sysfs.c                 |  86 +++++++++++---
 libmultipath/sysfs.h                 |   2 +
 libmultipath/uevent.c                |  16 ++-
 libmultipath/uevent.h                |   4 +-
 mpathpersist/main.c                  |  11 +-
 multipath.conf.annotated             |  40 +++++--
 multipath.conf.defaults              | 112 ++++++++++--------
 multipath/main.c                     |  27 +++--
 multipath/multipath.conf.5           |  27 ++++-
 multipathd/main.c                    |  19 ++-
 45 files changed, 1009 insertions(+), 393 deletions(-)
 create mode 100644 libmultipath/callout.c
 create mode 100644 libmultipath/callout.h

-- 
1.7.12.4

^ permalink raw reply	[flat|nested] 39+ messages in thread

end of thread, other threads:[~2014-11-19  5:33 UTC | newest]

Thread overview: 39+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-07-16  7:12 [PATCH 00/30] SLES resync, second try Hannes Reinecke
2013-07-16  7:12 ` [PATCH 01/30] multipath: bind lifetime of udev context to main thread Hannes Reinecke
2013-07-16  7:12 ` [PATCH 02/30] Document 'infinity' as possible value for dev_loss_tmo Hannes Reinecke
2013-07-16  7:12 ` [PATCH 03/30] alua: Do not add preferred path priority for active/optimized Hannes Reinecke
2013-07-16  7:12 ` [PATCH 04/30] multipath: Increase dev_loss_tmo prior to fast_io_fail Hannes Reinecke
2013-07-19 21:17   ` Benjamin Marzinski
2013-07-22  7:19     ` Hannes Reinecke
2013-07-16  7:12 ` [PATCH 05/30] libmultipath: return PATH_DOWN for quiesced paths Hannes Reinecke
2013-07-16  7:12 ` [PATCH 06/30] libmultipath: Implement PATH_TIMEOUT Hannes Reinecke
2013-07-16  7:12 ` [PATCH 07/30] Deprecate pg_timeout Hannes Reinecke
2013-07-16  7:12 ` [PATCH 08/30] kpartx: create correct symlinks for PATH_FAILED events Hannes Reinecke
2013-07-16  7:13 ` [PATCH 09/30] multipath: Deprecate 'getuid' configuration variable Hannes Reinecke
2013-07-16  7:13 ` [PATCH 10/30] kpartx: support disk with non-512B sectors Hannes Reinecke
2013-07-16  7:13 ` [PATCH 11/30] multipath: Add 'Datacore Virtual Disk' to internal hardware table Hannes Reinecke
2013-07-16  7:13 ` [PATCH 12/30] Minor fixes for priority handling Hannes Reinecke
2013-07-16  7:13 ` [PATCH 13/30] Check return value from pathinfo() Hannes Reinecke
2013-07-16  7:13 ` [PATCH 14/30] Read directly from sysfs when checking the device size Hannes Reinecke
2013-07-16  7:13 ` [PATCH 15/30] multipath.conf.annotated: Document rr_min_io_rq Hannes Reinecke
2013-07-16  7:13 ` [PATCH 16/30] Correctly print out 'max' for max_fds Hannes Reinecke
2013-07-16  7:13 ` [PATCH 17/30] Correctly set max_fds in case of failure Hannes Reinecke
2013-07-16  7:13 ` [PATCH 18/30] Update multipath.conf.defaults Hannes Reinecke
2013-07-16  7:13 ` [PATCH 19/30] Correctly set pgfailback Hannes Reinecke
2013-07-16  7:13 ` [PATCH 20/30] multipath.conf.5: clarify 'no_path_retry' default setting Hannes Reinecke
2013-07-16  7:13 ` [PATCH 21/30] multipath.conf.annotated: remove 'udev_dir' Hannes Reinecke
2013-07-16  7:13 ` [PATCH 22/30] multipath: Implement 'property' blacklist Hannes Reinecke
2014-08-21 16:37   ` Bart Van Assche
2014-08-21 19:31     ` Hannes Reinecke
2014-11-07  9:04       ` Bart Van Assche
2014-11-07  9:09         ` Hannes Reinecke
2014-11-19  5:33         ` Benjamin Marzinski
2013-07-16  7:13 ` [PATCH 23/30] Do not print error when rport is blocked Hannes Reinecke
2013-07-16  7:13 ` [PATCH 24/30] multipath: reference the udev context when starting event queue Hannes Reinecke
2013-07-16  7:13 ` [PATCH 25/30] multipathd: valgrind fixes Hannes Reinecke
2013-07-16  7:13 ` [PATCH 26/30] multipathd: increase stacksize for uevent listener Hannes Reinecke
2013-07-16  7:13 ` [PATCH 27/30] Specify checker_timeout in seconds Hannes Reinecke
2013-07-16  7:13 ` [PATCH 28/30] multipath: fix setting of fast_io_fail_tmo Hannes Reinecke
2013-07-16  7:13 ` [PATCH 29/30] multipath: reset queue_if_no_path if flush failed Hannes Reinecke
2013-07-16  7:13 ` [PATCH 30/30] libmultipath: read path state directly from sysfs Hannes Reinecke
2013-07-16 20:21 ` [PATCH 00/30] SLES resync, second try Christophe Varoqui

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.