[PATCH 1/5] correctly activate zFCP LUN on s390

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Activation happens in correct order and synchronizes with udev_settle.
Error cases are handled gracefully and report user readable error messages.
Supports both old (RHEL 5) and new sysfs zfcp device driver interface.
---
 storage/zfcp.py |   69 +++++++++++++++++++++++++++++++++++++++++++++++++-----
 1 files changed, 62 insertions(+), 7 deletions(-)

diff --git a/storage/zfcp.py b/storage/zfcp.py
index 2584268..f4cf339 100644
--- a/storage/zfcp.py
+++ b/storage/zfcp.py
@@ -22,6 +22,8 @@
 import string
 import os
 from constants import *
+from udev import udev_settle
+from time import sleep
 
 import gettext
 _ = lambda x: gettext.ldgettext("anaconda", x)
@@ -117,17 +119,70 @@ class ZFCPDevice:
         online = "%s/%s/online" %(zfcpsysfs, self.devnum)
         portadd = "%s/%s/port_add" %(zfcpsysfs, self.devnum)
         unitadd = "%s/%s/%s/unit_add" %(zfcpsysfs, self.devnum, self.wwpn)
+        portdir = "%s/%s/%s" %(zfcpsysfs, self.devnum, self.wwpn)
+        unitdir = "%s/%s" %(portdir, self.fcplun)
 
         try:
-            if not os.path.exists(unitadd):
-                loggedWriteLineToFile(portadd, self.wwpn)
+            if not os.path.exists(online):
+                loggedWriteLineToFile("/proc/cio_ignore",
+                                      "free %s" %(self.devnum,))
+                udev_settle()
+                sleep(1)
+        except Exception, e:
+            raise ValueError, _(
+                "could not free zfcp device %s from device ignore list (%s)"
+                %(self.devnum, e))
+
+        if not os.path.exists(online):
+            raise ValueError, _(
+                "zfcp device %s not found, not even in device ignore list"
+                %(self.devnum,))
 
-            loggedWriteLineToFile(unitadd, self.fcplun)
-            loggedWriteLineToFile(online, "1")
+        try:
+            f = open(online, "r")
+            devonline = f.readline().strip()
+            f.close()
+            if devonline != "1":
+                loggedWriteLineToFile(online, "1")
+            else:
+                log.info("zfcp device %s already online" %(self.devnum,))
         except Exception, e:
-            log.warn("error bringing zfcp device %s online: %s"
-                     %(self.devnum, e))
-            return False
+            raise ValueError, _(
+                "could not set zfcp device %s online (%s)"
+                %(self.devnum, e))
+
+        if not os.path.exists(portdir):
+            if os.path.exists(portadd):
+                # older zfcp sysfs interface
+                try:
+                    loggedWriteLineToFile(portadd, self.wwpn)
+                    udev_settle()
+                except Exception, e:
+                    raise ValueError, _(
+                        "could not add wwpn %s to zfcp device %s (%s)"
+                        %(self.wwpn, self.devnum, e))
+            else:
+                # newer zfcp sysfs interface with auto port scan
+                raise ValueError, _("wwpn %s not found at zfcp device %s"
+                                    %(self.wwpn, self.devnum))
+        else:
+            if os.path.exists(portadd):
+                # older zfcp sysfs interface
+                log.info("wwpn %s at zfcp device %s already there"
+                         %(self.wwpn, self.devnum))
+
+        if not os.path.exists(unitdir):
+            try:
+                loggedWriteLineToFile(unitadd, self.fcplun)
+                udev_settle()
+            except Exception, e:
+                raise ValueError, _(
+                    "could not add lun %s to wwpn %s on zfcp device %s (%s)"
+                    %(self.fcplun, self.wwpn, self.devnum, e))
+        else:
+            raise ValueError, _(
+                "lun %s at wwpn %s on zfcp device %s already configured"
+                %(self.fcplun, self.wwpn, self.devnum))
 
         return True
 
-- 
1.6.3.1


_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/anaconda-devel-list

[Index of Archives]     [Kickstart]     [Fedora Users]     [Fedora Legacy List]     [Fedora Maintainers]     [Fedora Desktop]     [Fedora SELinux]     [Big List of Linux Books]     [Yosemite News]     [Yosemite Photos]     [KDE Users]     [Fedora Tools]
  Powered by Linux