Yeela Kaplan has uploaded a new change for review.
Change subject: iscsi: Add FC scan to forceScsiScan ......................................................................
iscsi: Add FC scan to forceScsiScan
Change-Id: I9f740d9048aabbfaecba55cff338c57f31a20801 Bug-Url: https://bugzilla.redhat.com/show_bug.cgi?id=883390 Signed-off-by: Yeela Kaplan ykaplan@redhat.com --- M vdsm/storage/iscsi.py M vdsm/storage/multipath.py M vdsm/supervdsmServer.py 3 files changed, 28 insertions(+), 26 deletions(-)
git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/21/13221/1
diff --git a/vdsm/storage/iscsi.py b/vdsm/storage/iscsi.py index bc93f5c..bd2cf3b 100644 --- a/vdsm/storage/iscsi.py +++ b/vdsm/storage/iscsi.py @@ -43,7 +43,8 @@ IscsiTarget = namedtuple("IscsiTarget", "portal, tpgt, iqn")
ISCSI_DEFAULT_PORT = 3260 -SCAN_PATTERN = "/sys/class/scsi_host/host*/scan" +SCAN_SCSI_PATTERN = "/sys/class/scsi_host/host*/scan" +SCAN_FC_PATTERN = "/sys/class/fc_host/host*/issue_lip"
IscsiSession = namedtuple("IscsiSession", "id, iface, target, credentials")
@@ -373,30 +374,31 @@
@misc.samplingmethod -def forceIScsiScan(): +def forceScsiScan(): processes = [] minTimeout = config.getint('irs', 'scsi_rescan_minimal_timeout') maxTimeout = config.getint('irs', 'scsi_rescan_maximal_timeout') - for hba in glob.glob(SCAN_PATTERN): - cmd = [constants.EXT_DD, 'of=' + hba] - p = misc.execCmd(cmd, sudo=False, sync=False) - try: - p.stdin.write("- - -") - p.stdin.flush() - p.stdin.close() - except OSError as e: - if p.wait(0) is False: - log.error("pid %s still running", p.pid) - log.warning("Error in rescan of hba:%s with returncode:%s and " - "error message: %s", hba, p.returncode, - p.stderr.read(1000)) - if e.errno != errno.EPIPE: - raise - else: - log.warning("Ignoring error in rescan of hba %s: ", - hba, exc_info=True) - continue - processes.append((hba, p)) + for pattern in [(SCAN_SCSI_PATTERN, "- - -"), (SCAN_FC_PATTERN, "1")]: + for hba in glob.glob(pattern[0]): + cmd = [constants.EXT_DD, 'of=' + hba] + p = misc.execCmd(cmd, sudo=False, sync=False) + try: + p.stdin.write(pattern[1]) + p.stdin.flush() + p.stdin.close() + except OSError as e: + if p.wait(0) is False: + log.error("pid %s still running", p.pid) + log.warning("Error in rescan of hba:%s with returncode:%s and " + "error message: %s", hba, p.returncode, + p.stderr.read(1000)) + if e.errno != errno.EPIPE: + raise + else: + log.warning("Ignoring error in rescan of hba %s: ", + hba, exc_info=True) + continue + processes.append((hba, p)) if (minTimeout > maxTimeout or minTimeout < 0): minTimeout = 2 maxTimeout = 30 diff --git a/vdsm/storage/multipath.py b/vdsm/storage/multipath.py index 94801ca..2b01347 100644 --- a/vdsm/storage/multipath.py +++ b/vdsm/storage/multipath.py @@ -104,7 +104,7 @@ # First ask iSCSI to rescan all its sessions iscsi.rescan()
- supervdsm.getProxy().forceIScsiScan() + supervdsm.getProxy().forceScsiScan()
# Now let multipath daemon pick up new devices misc.execCmd([constants.EXT_MULTIPATH], sudo=True) diff --git a/vdsm/supervdsmServer.py b/vdsm/supervdsmServer.py index 75d73e3..63f167a 100755 --- a/vdsm/supervdsmServer.py +++ b/vdsm/supervdsmServer.py @@ -37,7 +37,7 @@
from lsblk import getLsBlk as _getLsBlk from storage.multipath import getScsiSerial as _getScsiSerial -from storage.iscsi import forceIScsiScan as _forceIScsiScan +from storage.iscsi import forceScsiScan as _forceScsiScan from storage.iscsi import getDevIscsiInfo as _getdeviSCSIinfo from storage.iscsi import readSessionInfo as _readSessionInfo from supervdsm import _SuperVdsmManager @@ -124,8 +124,8 @@ return _getScsiSerial(*args, **kwargs)
@logDecorator - def forceIScsiScan(self, *args, **kwargs): - return _forceIScsiScan(*args, **kwargs) + def forceScsiScan(self, *args, **kwargs): + return _forceScsiScan(*args, **kwargs)
@logDecorator def removeDeviceMapping(self, devName):
-- To view, visit http://gerrit.ovirt.org/13221 To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: newchange Gerrit-Change-Id: I9f740d9048aabbfaecba55cff338c57f31a20801 Gerrit-PatchSet: 1 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Yeela Kaplan ykaplan@redhat.com
oVirt Jenkins CI Server has posted comments on this change.
Change subject: iscsi: Add FC scan to forceScsiScan ......................................................................
Patch Set 1:
Build Started http://jenkins.ovirt.org/job/vdsm_unit_tests_gerrit/1725/ (1/2)
-- To view, visit http://gerrit.ovirt.org/13221 To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: comment Gerrit-Change-Id: I9f740d9048aabbfaecba55cff338c57f31a20801 Gerrit-PatchSet: 1 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Yeela Kaplan ykaplan@redhat.com Gerrit-Reviewer: oVirt Jenkins CI Server
oVirt Jenkins CI Server has posted comments on this change.
Change subject: iscsi: Add FC scan to forceScsiScan ......................................................................
Patch Set 1:
Build Started http://jenkins.ovirt.org/job/vdsm_pep8_gerrit/1675/ (2/2)
-- To view, visit http://gerrit.ovirt.org/13221 To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: comment Gerrit-Change-Id: I9f740d9048aabbfaecba55cff338c57f31a20801 Gerrit-PatchSet: 1 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Yeela Kaplan ykaplan@redhat.com Gerrit-Reviewer: oVirt Jenkins CI Server
oVirt Jenkins CI Server has posted comments on this change.
Change subject: iscsi: Add FC scan to forceScsiScan ......................................................................
Patch Set 1:
Build Successful
http://jenkins.ovirt.org/job/vdsm_pep8_gerrit/1675/ : SUCCESS
http://jenkins.ovirt.org/job/vdsm_unit_tests_gerrit/1725/ : SUCCESS
-- To view, visit http://gerrit.ovirt.org/13221 To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: comment Gerrit-Change-Id: I9f740d9048aabbfaecba55cff338c57f31a20801 Gerrit-PatchSet: 1 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Yeela Kaplan ykaplan@redhat.com Gerrit-Reviewer: oVirt Jenkins CI Server
Ayal Baron has posted comments on this change.
Change subject: iscsi: Add FC scan to forceScsiScan ......................................................................
Patch Set 1: (1 inline comment)
.................................................... Commit Message Line 3: AuthorDate: 2013-03-20 17:37:52 +0200 Line 4: Commit: Yeela Kaplan ykaplan@redhat.com Line 5: CommitDate: 2013-03-20 19:31:17 +0200 Line 6: Line 7: iscsi: Add FC scan to forceScsiScan why? Line 8: Line 9: Change-Id: I9f740d9048aabbfaecba55cff338c57f31a20801 Line 10: Bug-Url: https://bugzilla.redhat.com/show_bug.cgi?id=883390
-- To view, visit http://gerrit.ovirt.org/13221 To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: comment Gerrit-Change-Id: I9f740d9048aabbfaecba55cff338c57f31a20801 Gerrit-PatchSet: 1 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Yeela Kaplan ykaplan@redhat.com Gerrit-Reviewer: Ayal Baron abaron@redhat.com Gerrit-Reviewer: Dan Kenigsberg danken@redhat.com Gerrit-Reviewer: Eduardo ewarszaw@redhat.com Gerrit-Reviewer: Federico Simoncelli fsimonce@redhat.com Gerrit-Reviewer: oVirt Jenkins CI Server
oVirt Jenkins CI Server has posted comments on this change.
Change subject: iscsi: Add FC scan to forceScsiScan ......................................................................
Patch Set 2:
Build Started http://jenkins.ovirt.org/job/vdsm_unit_tests_gerrit/1813/ (2/2)
-- To view, visit http://gerrit.ovirt.org/13221 To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: comment Gerrit-Change-Id: I9f740d9048aabbfaecba55cff338c57f31a20801 Gerrit-PatchSet: 2 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Yeela Kaplan ykaplan@redhat.com Gerrit-Reviewer: Ayal Baron abaron@redhat.com Gerrit-Reviewer: Dan Kenigsberg danken@redhat.com Gerrit-Reviewer: Eduardo ewarszaw@redhat.com Gerrit-Reviewer: Federico Simoncelli fsimonce@redhat.com Gerrit-Reviewer: Yeela Kaplan ykaplan@redhat.com Gerrit-Reviewer: oVirt Jenkins CI Server
oVirt Jenkins CI Server has posted comments on this change.
Change subject: iscsi: Add FC scan to forceScsiScan ......................................................................
Patch Set 2:
Build Started http://jenkins.ovirt.org/job/vdsm_pep8_gerrit/1762/ (1/2)
-- To view, visit http://gerrit.ovirt.org/13221 To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: comment Gerrit-Change-Id: I9f740d9048aabbfaecba55cff338c57f31a20801 Gerrit-PatchSet: 2 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Yeela Kaplan ykaplan@redhat.com Gerrit-Reviewer: Ayal Baron abaron@redhat.com Gerrit-Reviewer: Dan Kenigsberg danken@redhat.com Gerrit-Reviewer: Eduardo ewarszaw@redhat.com Gerrit-Reviewer: Federico Simoncelli fsimonce@redhat.com Gerrit-Reviewer: Yeela Kaplan ykaplan@redhat.com Gerrit-Reviewer: oVirt Jenkins CI Server
oVirt Jenkins CI Server has posted comments on this change.
Change subject: iscsi: Add FC scan to forceScsiScan ......................................................................
Patch Set 2:
Build Successful
http://jenkins.ovirt.org/job/vdsm_pep8_gerrit/1762/ : SUCCESS
http://jenkins.ovirt.org/job/vdsm_unit_tests_gerrit/1813/ : SUCCESS
-- To view, visit http://gerrit.ovirt.org/13221 To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: comment Gerrit-Change-Id: I9f740d9048aabbfaecba55cff338c57f31a20801 Gerrit-PatchSet: 2 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Yeela Kaplan ykaplan@redhat.com Gerrit-Reviewer: Ayal Baron abaron@redhat.com Gerrit-Reviewer: Dan Kenigsberg danken@redhat.com Gerrit-Reviewer: Eduardo ewarszaw@redhat.com Gerrit-Reviewer: Federico Simoncelli fsimonce@redhat.com Gerrit-Reviewer: Yeela Kaplan ykaplan@redhat.com Gerrit-Reviewer: oVirt Jenkins CI Server
Ayal Baron has posted comments on this change.
Change subject: iscsi: Add FC scan to forceScsiScan ......................................................................
Patch Set 2: Looks good to me, approved
-- To view, visit http://gerrit.ovirt.org/13221 To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: comment Gerrit-Change-Id: I9f740d9048aabbfaecba55cff338c57f31a20801 Gerrit-PatchSet: 2 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Yeela Kaplan ykaplan@redhat.com Gerrit-Reviewer: Ayal Baron abaron@redhat.com Gerrit-Reviewer: Dan Kenigsberg danken@redhat.com Gerrit-Reviewer: Eduardo ewarszaw@redhat.com Gerrit-Reviewer: Federico Simoncelli fsimonce@redhat.com Gerrit-Reviewer: Yeela Kaplan ykaplan@redhat.com Gerrit-Reviewer: oVirt Jenkins CI Server
oVirt Jenkins CI Server has posted comments on this change.
Change subject: sp: invalidate lvm cache before attach storage domain ......................................................................
Patch Set 3:
Build Started http://jenkins.ovirt.org/job/vdsm_pep8_gerrit/1802/ (1/2)
-- To view, visit http://gerrit.ovirt.org/13221 To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: comment Gerrit-Change-Id: I9f740d9048aabbfaecba55cff338c57f31a20801 Gerrit-PatchSet: 3 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Yeela Kaplan ykaplan@redhat.com Gerrit-Reviewer: Ayal Baron abaron@redhat.com Gerrit-Reviewer: Dan Kenigsberg danken@redhat.com Gerrit-Reviewer: Eduardo ewarszaw@redhat.com Gerrit-Reviewer: Federico Simoncelli fsimonce@redhat.com Gerrit-Reviewer: Yeela Kaplan ykaplan@redhat.com Gerrit-Reviewer: oVirt Jenkins CI Server
oVirt Jenkins CI Server has posted comments on this change.
Change subject: sp: invalidate lvm cache before attach storage domain ......................................................................
Patch Set 3:
Build Started http://jenkins.ovirt.org/job/vdsm_unit_tests_gerrit/1853/ (2/2)
-- To view, visit http://gerrit.ovirt.org/13221 To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: comment Gerrit-Change-Id: I9f740d9048aabbfaecba55cff338c57f31a20801 Gerrit-PatchSet: 3 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Yeela Kaplan ykaplan@redhat.com Gerrit-Reviewer: Ayal Baron abaron@redhat.com Gerrit-Reviewer: Dan Kenigsberg danken@redhat.com Gerrit-Reviewer: Eduardo ewarszaw@redhat.com Gerrit-Reviewer: Federico Simoncelli fsimonce@redhat.com Gerrit-Reviewer: Yeela Kaplan ykaplan@redhat.com Gerrit-Reviewer: oVirt Jenkins CI Server
oVirt Jenkins CI Server has posted comments on this change.
Change subject: sp: invalidate lvm cache if attachSD fails ......................................................................
Patch Set 4:
Build Started http://jenkins.ovirt.org/job/vdsm_pep8_gerrit/1803/ (1/2)
-- To view, visit http://gerrit.ovirt.org/13221 To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: comment Gerrit-Change-Id: I9f740d9048aabbfaecba55cff338c57f31a20801 Gerrit-PatchSet: 4 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Yeela Kaplan ykaplan@redhat.com Gerrit-Reviewer: Ayal Baron abaron@redhat.com Gerrit-Reviewer: Dan Kenigsberg danken@redhat.com Gerrit-Reviewer: Eduardo ewarszaw@redhat.com Gerrit-Reviewer: Federico Simoncelli fsimonce@redhat.com Gerrit-Reviewer: Yeela Kaplan ykaplan@redhat.com Gerrit-Reviewer: oVirt Jenkins CI Server
Yeela Kaplan has posted comments on this change.
Change subject: sp: invalidate lvm cache if attachSD fails ......................................................................
Patch Set 4: Verified
Verified by paikov.
-- To view, visit http://gerrit.ovirt.org/13221 To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: comment Gerrit-Change-Id: I9f740d9048aabbfaecba55cff338c57f31a20801 Gerrit-PatchSet: 4 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Yeela Kaplan ykaplan@redhat.com Gerrit-Reviewer: Ayal Baron abaron@redhat.com Gerrit-Reviewer: Dan Kenigsberg danken@redhat.com Gerrit-Reviewer: Eduardo ewarszaw@redhat.com Gerrit-Reviewer: Federico Simoncelli fsimonce@redhat.com Gerrit-Reviewer: Yeela Kaplan ykaplan@redhat.com Gerrit-Reviewer: oVirt Jenkins CI Server
oVirt Jenkins CI Server has posted comments on this change.
Change subject: sp: invalidate lvm cache if attachSD fails ......................................................................
Patch Set 4:
Build Started http://jenkins.ovirt.org/job/vdsm_unit_tests_gerrit/1854/ (2/2)
-- To view, visit http://gerrit.ovirt.org/13221 To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: comment Gerrit-Change-Id: I9f740d9048aabbfaecba55cff338c57f31a20801 Gerrit-PatchSet: 4 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Yeela Kaplan ykaplan@redhat.com Gerrit-Reviewer: Ayal Baron abaron@redhat.com Gerrit-Reviewer: Dan Kenigsberg danken@redhat.com Gerrit-Reviewer: Eduardo ewarszaw@redhat.com Gerrit-Reviewer: Federico Simoncelli fsimonce@redhat.com Gerrit-Reviewer: Yeela Kaplan ykaplan@redhat.com Gerrit-Reviewer: oVirt Jenkins CI Server
oVirt Jenkins CI Server has posted comments on this change.
Change subject: sp: invalidate lvm cache if attachSD fails ......................................................................
Patch Set 4:
Build Successful
http://jenkins.ovirt.org/job/vdsm_pep8_gerrit/1803/ : SUCCESS
http://jenkins.ovirt.org/job/vdsm_unit_tests_gerrit/1854/ : SUCCESS
-- To view, visit http://gerrit.ovirt.org/13221 To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: comment Gerrit-Change-Id: I9f740d9048aabbfaecba55cff338c57f31a20801 Gerrit-PatchSet: 4 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Yeela Kaplan ykaplan@redhat.com Gerrit-Reviewer: Ayal Baron abaron@redhat.com Gerrit-Reviewer: Dan Kenigsberg danken@redhat.com Gerrit-Reviewer: Eduardo ewarszaw@redhat.com Gerrit-Reviewer: Federico Simoncelli fsimonce@redhat.com Gerrit-Reviewer: Yeela Kaplan ykaplan@redhat.com Gerrit-Reviewer: oVirt Jenkins CI Server
oVirt Jenkins CI Server has posted comments on this change.
Change subject: sp: invalidate lvm cache if attachSD fails ......................................................................
Patch Set 5:
Build Started http://jenkins.ovirt.org/job/vdsm_pep8_gerrit/1808/ (1/2)
-- To view, visit http://gerrit.ovirt.org/13221 To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: comment Gerrit-Change-Id: I9f740d9048aabbfaecba55cff338c57f31a20801 Gerrit-PatchSet: 5 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Yeela Kaplan ykaplan@redhat.com Gerrit-Reviewer: Ayal Baron abaron@redhat.com Gerrit-Reviewer: Dan Kenigsberg danken@redhat.com Gerrit-Reviewer: Eduardo ewarszaw@redhat.com Gerrit-Reviewer: Federico Simoncelli fsimonce@redhat.com Gerrit-Reviewer: Yeela Kaplan ykaplan@redhat.com Gerrit-Reviewer: oVirt Jenkins CI Server
oVirt Jenkins CI Server has posted comments on this change.
Change subject: sp: invalidate lvm cache if attachSD fails ......................................................................
Patch Set 5:
Build Started http://jenkins.ovirt.org/job/vdsm_unit_tests_gerrit/1859/ (2/2)
-- To view, visit http://gerrit.ovirt.org/13221 To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: comment Gerrit-Change-Id: I9f740d9048aabbfaecba55cff338c57f31a20801 Gerrit-PatchSet: 5 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Yeela Kaplan ykaplan@redhat.com Gerrit-Reviewer: Ayal Baron abaron@redhat.com Gerrit-Reviewer: Dan Kenigsberg danken@redhat.com Gerrit-Reviewer: Eduardo ewarszaw@redhat.com Gerrit-Reviewer: Federico Simoncelli fsimonce@redhat.com Gerrit-Reviewer: Yeela Kaplan ykaplan@redhat.com Gerrit-Reviewer: oVirt Jenkins CI Server
Yeela Kaplan has posted comments on this change.
Change subject: sp: invalidate lvm cache if attachSD fails ......................................................................
Patch Set 5: Verified
Verified by paikov.
-- To view, visit http://gerrit.ovirt.org/13221 To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: comment Gerrit-Change-Id: I9f740d9048aabbfaecba55cff338c57f31a20801 Gerrit-PatchSet: 5 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Yeela Kaplan ykaplan@redhat.com Gerrit-Reviewer: Ayal Baron abaron@redhat.com Gerrit-Reviewer: Dan Kenigsberg danken@redhat.com Gerrit-Reviewer: Eduardo ewarszaw@redhat.com Gerrit-Reviewer: Federico Simoncelli fsimonce@redhat.com Gerrit-Reviewer: Yeela Kaplan ykaplan@redhat.com Gerrit-Reviewer: oVirt Jenkins CI Server
oVirt Jenkins CI Server has posted comments on this change.
Change subject: sp: invalidate lvm cache if attachSD fails ......................................................................
Patch Set 5:
Build Successful
http://jenkins.ovirt.org/job/vdsm_pep8_gerrit/1808/ : SUCCESS
http://jenkins.ovirt.org/job/vdsm_unit_tests_gerrit/1859/ : SUCCESS
-- To view, visit http://gerrit.ovirt.org/13221 To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: comment Gerrit-Change-Id: I9f740d9048aabbfaecba55cff338c57f31a20801 Gerrit-PatchSet: 5 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Yeela Kaplan ykaplan@redhat.com Gerrit-Reviewer: Ayal Baron abaron@redhat.com Gerrit-Reviewer: Dan Kenigsberg danken@redhat.com Gerrit-Reviewer: Eduardo ewarszaw@redhat.com Gerrit-Reviewer: Federico Simoncelli fsimonce@redhat.com Gerrit-Reviewer: Yeela Kaplan ykaplan@redhat.com Gerrit-Reviewer: oVirt Jenkins CI Server
Ayal Baron has posted comments on this change.
Change subject: sp: invalidate lvm cache if attachSD fails ......................................................................
Patch Set 5: Looks good to me, approved
This is much better!
-- To view, visit http://gerrit.ovirt.org/13221 To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: comment Gerrit-Change-Id: I9f740d9048aabbfaecba55cff338c57f31a20801 Gerrit-PatchSet: 5 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Yeela Kaplan ykaplan@redhat.com Gerrit-Reviewer: Ayal Baron abaron@redhat.com Gerrit-Reviewer: Dan Kenigsberg danken@redhat.com Gerrit-Reviewer: Eduardo ewarszaw@redhat.com Gerrit-Reviewer: Federico Simoncelli fsimonce@redhat.com Gerrit-Reviewer: Yeela Kaplan ykaplan@redhat.com Gerrit-Reviewer: oVirt Jenkins CI Server
Federico Simoncelli has posted comments on this change.
Change subject: sp: invalidate lvm cache if attachSD fails ......................................................................
Patch Set 5: Looks good to me, approved
-- To view, visit http://gerrit.ovirt.org/13221 To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: comment Gerrit-Change-Id: I9f740d9048aabbfaecba55cff338c57f31a20801 Gerrit-PatchSet: 5 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Yeela Kaplan ykaplan@redhat.com Gerrit-Reviewer: Ayal Baron abaron@redhat.com Gerrit-Reviewer: Dan Kenigsberg danken@redhat.com Gerrit-Reviewer: Eduardo ewarszaw@redhat.com Gerrit-Reviewer: Federico Simoncelli fsimonce@redhat.com Gerrit-Reviewer: Yeela Kaplan ykaplan@redhat.com Gerrit-Reviewer: oVirt Jenkins CI Server
Dan Kenigsberg has posted comments on this change.
Change subject: sp: invalidate lvm cache if attachSD fails ......................................................................
Patch Set 5:
Oh, Federico suggested this back in http://gerrit.ovirt.org/#/c/10495/1/vdsm/storage/sp.py
-- To view, visit http://gerrit.ovirt.org/13221 To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: comment Gerrit-Change-Id: I9f740d9048aabbfaecba55cff338c57f31a20801 Gerrit-PatchSet: 5 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Yeela Kaplan ykaplan@redhat.com Gerrit-Reviewer: Ayal Baron abaron@redhat.com Gerrit-Reviewer: Dan Kenigsberg danken@redhat.com Gerrit-Reviewer: Eduardo ewarszaw@redhat.com Gerrit-Reviewer: Federico Simoncelli fsimonce@redhat.com Gerrit-Reviewer: Yeela Kaplan ykaplan@redhat.com Gerrit-Reviewer: oVirt Jenkins CI Server
Dan Kenigsberg has submitted this change and it was merged.
Change subject: sp: invalidate lvm cache if attachSD fails ......................................................................
sp: invalidate lvm cache if attachSD fails
Change-Id: I9f740d9048aabbfaecba55cff338c57f31a20801 Bug-Url: https://bugzilla.redhat.com/show_bug.cgi?id=883390 Signed-off-by: Yeela Kaplan ykaplan@redhat.com --- M vdsm/storage/iscsi.py M vdsm/storage/multipath.py M vdsm/storage/sp.py M vdsm/supervdsmServer.py 4 files changed, 6 insertions(+), 7 deletions(-)
Approvals: Ayal Baron: Looks good to me, approved Yeela Kaplan: Verified Federico Simoncelli: Looks good to me, approved Dan Kenigsberg:
-- To view, visit http://gerrit.ovirt.org/13221 To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: merged Gerrit-Change-Id: I9f740d9048aabbfaecba55cff338c57f31a20801 Gerrit-PatchSet: 5 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Yeela Kaplan ykaplan@redhat.com Gerrit-Reviewer: Ayal Baron abaron@redhat.com Gerrit-Reviewer: Dan Kenigsberg danken@redhat.com Gerrit-Reviewer: Eduardo ewarszaw@redhat.com Gerrit-Reviewer: Federico Simoncelli fsimonce@redhat.com Gerrit-Reviewer: Yeela Kaplan ykaplan@redhat.com Gerrit-Reviewer: oVirt Jenkins CI Server
vdsm-patches@lists.fedorahosted.org