Change in vdsm[master]: lvm: refresh on mda permission mismatch

2014-05-19 Thread iheim
Itamar Heim has abandoned this change.

Change subject: lvm: refresh on mda permission mismatch
..


Abandoned

abandoning per no reply. please restore if still relevant.

-- 
To view, visit http://gerrit.ovirt.org/20121
To unsubscribe, visit http://gerrit.ovirt.org/settings

Gerrit-MessageType: abandon
Gerrit-Change-Id: I6a77b967a057329a90499d7707074befe756b68a
Gerrit-PatchSet: 1
Gerrit-Project: vdsm
Gerrit-Branch: master
Gerrit-Owner: Federico Simoncelli fsimo...@redhat.com
Gerrit-Reviewer: Allon Mureinik amure...@redhat.com
Gerrit-Reviewer: Ayal Baron aba...@redhat.com
Gerrit-Reviewer: Federico Simoncelli fsimo...@redhat.com
Gerrit-Reviewer: Itamar Heim ih...@redhat.com
Gerrit-Reviewer: oVirt Jenkins CI Server
___
vdsm-patches mailing list
vdsm-patches@lists.fedorahosted.org
https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches


Change in vdsm[master]: lvm: refresh on mda permission mismatch

2014-02-24 Thread iheim
Itamar Heim has posted comments on this change.

Change subject: lvm: refresh on mda permission mismatch
..


Patch Set 1:

ping?

-- 
To view, visit http://gerrit.ovirt.org/20121
To unsubscribe, visit http://gerrit.ovirt.org/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: I6a77b967a057329a90499d7707074befe756b68a
Gerrit-PatchSet: 1
Gerrit-Project: vdsm
Gerrit-Branch: master
Gerrit-Owner: Federico Simoncelli fsimo...@redhat.com
Gerrit-Reviewer: Ayal Baron aba...@redhat.com
Gerrit-Reviewer: Federico Simoncelli fsimo...@redhat.com
Gerrit-Reviewer: Itamar Heim ih...@redhat.com
Gerrit-Reviewer: oVirt Jenkins CI Server
Gerrit-HasComments: No
___
vdsm-patches mailing list
vdsm-patches@lists.fedorahosted.org
https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches


Change in vdsm[master]: lvm: refresh on mda permission mismatch

2013-10-13 Thread abaron
Ayal Baron has posted comments on this change.

Change subject: lvm: refresh on mda permission mismatch
..


Patch Set 1: Code-Review+2

(1 comment)


File vdsm/storage/lvm.py
Line 1299: changelv(vg, lv, (--permission, permission))
Line 1300: except se.StorageException:
Line 1301: l = getLV(vg, lv)
Line 1302: if l.attr.permission == 'R':
Line 1303: refreshLV(vg, lv)
That was nack'd by lvm iirc?
Line 1304: l = getLV(vg, lv)
Line 1305: if l.writeable == rw:
Line 1306: # Ignore the error since lv is now rw, hoping that the 
error was
Line 1307: # because lv was already rw, see BZ#654691. We may hide 
here


-- 
To view, visit http://gerrit.ovirt.org/20121
To unsubscribe, visit http://gerrit.ovirt.org/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: I6a77b967a057329a90499d7707074befe756b68a
Gerrit-PatchSet: 1
Gerrit-Project: vdsm
Gerrit-Branch: master
Gerrit-Owner: Federico Simoncelli fsimo...@redhat.com
Gerrit-Reviewer: Ayal Baron aba...@redhat.com
Gerrit-Reviewer: Federico Simoncelli fsimo...@redhat.com
Gerrit-Reviewer: oVirt Jenkins CI Server
Gerrit-HasComments: Yes
___
vdsm-patches mailing list
vdsm-patches@lists.fedorahosted.org
https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches


Change in vdsm[master]: lvm: refresh on mda permission mismatch

2013-10-11 Thread fsimonce
Federico Simoncelli has uploaded a new change for review.

Change subject: lvm: refresh on mda permission mismatch
..

lvm: refresh on mda permission mismatch

Bug-Url: https://bugzilla.redhat.com/show_bug.cgi?id=905665
Change-Id: I6a77b967a057329a90499d7707074befe756b68a
Signed-off-by: Federico Simoncelli fsimo...@redhat.com
---
M vdsm/storage/lvm.py
1 file changed, 3 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/21/20121/1

diff --git a/vdsm/storage/lvm.py b/vdsm/storage/lvm.py
index 0c2964e..3686570 100644
--- a/vdsm/storage/lvm.py
+++ b/vdsm/storage/lvm.py
@@ -1299,6 +1299,9 @@
 changelv(vg, lv, (--permission, permission))
 except se.StorageException:
 l = getLV(vg, lv)
+if l.attr.permission == 'R':
+refreshLV(vg, lv)
+l = getLV(vg, lv)
 if l.writeable == rw:
 # Ignore the error since lv is now rw, hoping that the error was
 # because lv was already rw, see BZ#654691. We may hide here


-- 
To view, visit http://gerrit.ovirt.org/20121
To unsubscribe, visit http://gerrit.ovirt.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I6a77b967a057329a90499d7707074befe756b68a
Gerrit-PatchSet: 1
Gerrit-Project: vdsm
Gerrit-Branch: master
Gerrit-Owner: Federico Simoncelli fsimo...@redhat.com
___
vdsm-patches mailing list
vdsm-patches@lists.fedorahosted.org
https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches


Change in vdsm[master]: lvm: refresh on mda permission mismatch

2013-10-11 Thread fsimonce
Federico Simoncelli has posted comments on this change.

Change subject: lvm: refresh on mda permission mismatch
..


Patch Set 1:

(1 comment)


File vdsm/storage/lvm.py
Line 1299: changelv(vg, lv, (--permission, permission))
Line 1300: except se.StorageException:
Line 1301: l = getLV(vg, lv)
Line 1302: if l.attr.permission == 'R':
Line 1303: refreshLV(vg, lv)
I am still not convinced that this is the appropriate fix. I'd prefer to fix 
this in lvm.
Line 1304: l = getLV(vg, lv)
Line 1305: if l.writeable == rw:
Line 1306: # Ignore the error since lv is now rw, hoping that the 
error was
Line 1307: # because lv was already rw, see BZ#654691. We may hide 
here


-- 
To view, visit http://gerrit.ovirt.org/20121
To unsubscribe, visit http://gerrit.ovirt.org/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: I6a77b967a057329a90499d7707074befe756b68a
Gerrit-PatchSet: 1
Gerrit-Project: vdsm
Gerrit-Branch: master
Gerrit-Owner: Federico Simoncelli fsimo...@redhat.com
Gerrit-Reviewer: Ayal Baron aba...@redhat.com
Gerrit-Reviewer: Federico Simoncelli fsimo...@redhat.com
Gerrit-HasComments: Yes
___
vdsm-patches mailing list
vdsm-patches@lists.fedorahosted.org
https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches


Change in vdsm[master]: lvm: refresh on mda permission mismatch

2013-10-11 Thread oVirt Jenkins CI Server
oVirt Jenkins CI Server has posted comments on this change.

Change subject: lvm: refresh on mda permission mismatch
..


Patch Set 1:

Build Successful 

http://jenkins.ovirt.org/job/vdsm_unit_tests_gerrit/4937/ : SUCCESS

http://jenkins.ovirt.org/job/vdsm_unit_tests_gerrit_el/4051/ : SUCCESS

http://jenkins.ovirt.org/job/vdsm_pep8_gerrit/4861/ : SUCCESS

-- 
To view, visit http://gerrit.ovirt.org/20121
To unsubscribe, visit http://gerrit.ovirt.org/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: I6a77b967a057329a90499d7707074befe756b68a
Gerrit-PatchSet: 1
Gerrit-Project: vdsm
Gerrit-Branch: master
Gerrit-Owner: Federico Simoncelli fsimo...@redhat.com
Gerrit-Reviewer: Ayal Baron aba...@redhat.com
Gerrit-Reviewer: Federico Simoncelli fsimo...@redhat.com
Gerrit-Reviewer: oVirt Jenkins CI Server
Gerrit-HasComments: No
___
vdsm-patches mailing list
vdsm-patches@lists.fedorahosted.org
https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches