efd38c93e9
Modify multipath.conf * remove getuid_callout example Re-add 0050-RH-listing-speedup.patch Add 0081-RHBZ-1066264-check-prefix-on-rename.patch * make multipath check the prefix on kpartx partitions during rename, and copy the existing behaviour Add 0082-UPBZ-1109995-no-sync-turs-on-pthread_cancel.patch * If async tur checker fails on threads, don't retry with the sync version Add 0083-RHBZ-1080055-orphan-paths-on-reload.patch * Fix case where pathlist wasn't getting updated properly Add 0084-RHBZ-1110000-multipath-man.patch * fix errors in multipath man page Add 0085-UPBZ-1110006-datacore-config.patch * Add support for DataCore Virtual Disk Add 0086-RHBZ-1110007-orphan-path-on-failed-add.patch * If multipathd fails to add path correctly, it now fully orphans the path Add 0087-RHBZ-1110013-config-error-checking.patch * Improve multipath.conf error checking. Add 0088-RHBZ-1069811-configurable-prio-timeout.patch * checker_timeout now adjusts the timeouts of the prioritizers as well. Add 0089-RHBZ-1110016-add-noasync-option.patch * Add a new defaults option, "force_sync", that disables the async mode of the path checkers. This is for cases where to many parallel checkers hog the cpu Add 0090-UPBZ-1080038-reorder-paths-for-round-robin.patch * make multipathd order paths for better throughput in round-robin mode Add 0091-RHBZ-1069584-fix-empty-values-fast-io-fail-and-dev-loss.patch * check for null pointers in configuration reading code. Add 0092-UPBZ-1104605-reload-on-rename.patch * Reload table on rename if necessary Add 0093-UPBZ-1086825-user-friendly-name-remap.patch * Keep existing user_friend_name if possible Add 0094-RHBZ-1086825-cleanup-remap.patch * Cleanup issues with upstream patch Add 0095-RHBZ-1127944-xtremIO-config.patch * Add support for EMC ExtremIO devices Add 0096-RHBZ-979474-new-wildcards.patch * Add N, n, R, and r path wildcards to print World Wide ids Add 0097-RH-fix-coverity-errors.patch * Fix a number of unterminated strings and memory leaks on failure paths. Add 0098-UPBZ-1067171-mutipath-i.patch * Add -i option to ignore wwids file when checking for valid paths Add 0099-RH-add-all-devs.patch * Add new devices config option all_devs. This makes the configuration overwrite the specified values in all builtin configs Add 0100-RHBZ-1067171-multipath-i-update.patch * make -i work correctly with find_multipaths Add 0101-RH-adapter-name-wildcard.patch * Add 'a' path wildcard to print adapter name
94 lines
2.4 KiB
Plaintext
94 lines
2.4 KiB
Plaintext
# This is a basic configuration file with some examples, for device mapper
|
|
# multipath.
|
|
#
|
|
# For a complete list of the default configuration values, run either
|
|
# multipath -t
|
|
# or
|
|
# multipathd show config
|
|
#
|
|
# For a list of configuration options with descriptions, see the multipath.conf
|
|
# man page
|
|
|
|
## By default, devices with vendor = "IBM" and product = "S/390.*" are
|
|
## blacklisted. To enable mulitpathing on these devies, uncomment the
|
|
## following lines.
|
|
#blacklist_exceptions {
|
|
# device {
|
|
# vendor "IBM"
|
|
# product "S/390.*"
|
|
# }
|
|
#}
|
|
|
|
## Use user friendly names, instead of using WWIDs as names.
|
|
defaults {
|
|
user_friendly_names yes
|
|
find_multipaths yes
|
|
}
|
|
##
|
|
## Here is an example of how to configure some standard options.
|
|
##
|
|
#
|
|
#defaults {
|
|
# udev_dir /dev
|
|
# polling_interval 10
|
|
# selector "round-robin 0"
|
|
# path_grouping_policy multibus
|
|
# prio alua
|
|
# path_checker readsector0
|
|
# rr_min_io 100
|
|
# max_fds 8192
|
|
# rr_weight priorities
|
|
# failback immediate
|
|
# no_path_retry fail
|
|
# user_friendly_names yes
|
|
#}
|
|
##
|
|
## The wwid line in the following blacklist section is shown as an example
|
|
## of how to blacklist devices by wwid. The 2 devnode lines are the
|
|
## compiled in default blacklist. If you want to blacklist entire types
|
|
## of devices, such as all scsi devices, you should use a devnode line.
|
|
## However, if you want to blacklist specific devices, you should use
|
|
## a wwid line. Since there is no guarantee that a specific device will
|
|
## not change names on reboot (from /dev/sda to /dev/sdb for example)
|
|
## devnode lines are not recommended for blacklisting specific devices.
|
|
##
|
|
#blacklist {
|
|
# wwid 26353900f02796769
|
|
# devnode "^(ram|raw|loop|fd|md|dm-|sr|scd|st)[0-9]*"
|
|
# devnode "^hd[a-z]"
|
|
#}
|
|
#multipaths {
|
|
# multipath {
|
|
# wwid 3600508b4000156d700012000000b0000
|
|
# alias yellow
|
|
# path_grouping_policy multibus
|
|
# path_checker readsector0
|
|
# path_selector "round-robin 0"
|
|
# failback manual
|
|
# rr_weight priorities
|
|
# no_path_retry 5
|
|
# }
|
|
# multipath {
|
|
# wwid 1DEC_____321816758474
|
|
# alias red
|
|
# }
|
|
#}
|
|
#devices {
|
|
# device {
|
|
# vendor "COMPAQ "
|
|
# product "HSV110 (C)COMPAQ"
|
|
# path_grouping_policy multibus
|
|
# path_checker readsector0
|
|
# path_selector "round-robin 0"
|
|
# hardware_handler "0"
|
|
# failback 15
|
|
# rr_weight priorities
|
|
# no_path_retry queue
|
|
# }
|
|
# device {
|
|
# vendor "COMPAQ "
|
|
# product "MSA1000 "
|
|
# path_grouping_policy multibus
|
|
# }
|
|
#}
|