summaryrefslogtreecommitdiffstats
path: root/storage/devicelibs/mpath.py
Commit message (Collapse)AuthorAgeFilesLines
* Revert "Write a multipath.conf before probing for mpaths."Peter Jones2010-02-261-6/+0
| | | | This reverts commit 74e65cbf111a4f17fa393192519910de53d6c7ac.
* Revert "working on this"Peter Jones2010-02-261-1/+1
| | | | This reverts commit a24e722ebcb06c88f88605190caebdcf83236690.
* working on thisPeter Jones2010-02-261-1/+1
|
* Write a multipath.conf before probing for mpaths.Peter Jones2010-02-261-0/+6
| | | | | If we don't have a multipath.conf when we scan, we get a default blacklist of everything, which isn't helpful. So write one.
* Correctly add found multipath devices to our dict (#560029).Chris Lumens2010-01-291-1/+1
|
* multipath gives us CCISS devices names with ! in them, but we expect /.Chris Lumens2010-01-251-1/+1
|
* Fix broken log message.Peter Jones2010-01-221-1/+2
| | | | | Format strings need to match the things being formatted, as Hans correctly pointed out.
* Make multipath support use device-mapper-multipath to setup mpaths.Peter Jones2010-01-211-30/+61
| | | | | Use device-mapper-multipath's "multipath" tool to find and set up multipath devices.
* Create multipath.confPeter Jones2010-01-211-488/+29
| | | | | | | | Revamp this since multipath is now writing our rules for us. Use device.serial/device.vendor/device.model where appropriate, and don't give the device a braindead mode. Also change /when/ we write the files out.
* Add a parser for 'multipath -d' output.Peter Jones2010-01-201-0/+47
| | | | | We need to find out about multipath topology from /sbin/multipath, which unfortunately needs some parsing - it's fairly easy, though.
* Move identifyMultipaths from DeviceTree to devicelibs.Chris Lumens2009-12-111-0/+81
| | | | | | | | The return type has also changed. It now returns a tuple of a list of regular devices, a list of multipath sets, and a list of partition devices. This is necessary so the filtering UI can use the same knowledge that was in the DeviceTree object to know which devices are part of a multipath set and which are just standalone disks.
* Don't set unnecessary multipath defaults.Peter Jones2009-10-151-2/+492
| | | | | | Use "device" entries in the config file rather than specifying configuration parameters in the "multipath" section of the config file. This gets us more reasonable configuration.
* Write multipathd.conf in anaconda so that dracut can find it.Peter Jones2009-10-121-0/+37
This writes a multipathd.conf that whitelists the devices we're using in our multipath devices. It's a fairly basic configuration, and it doesn't handle ALUA yet.