From: Ian Jackson Date: Wed, 5 Jan 2011 23:31:24 +0000 (+0000) Subject: tools/xend: drbd: fix things by reverting 20158 X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~10994 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=2cf5846885cac2762803c3bb5245d20157d2f1ce;p=xen.git tools/xend: drbd: fix things by reverting 20158 drbd's block-drbd script handles all of the details that c/s 20158 introduces within xend :-(. This c/s should be reverted as it causes a regression. Jim Fehlig tested drbd without 20158 and it works fine. Signed-off-by: Ian Jackson Tested-by: Jim Fehlig --- diff --git a/tools/python/xen/util/blkif.py b/tools/python/xen/util/blkif.py index 92c8f3f4fd..d68423c4c3 100644 --- a/tools/python/xen/util/blkif.py +++ b/tools/python/xen/util/blkif.py @@ -71,15 +71,8 @@ def _parse_uname(uname): if uname.find(":") != -1: (typ, fn) = uname.split(":", 1) - if typ == "phy" and not fn.startswith("/"): + if typ in ("phy", "drbd") and not fn.startswith("/"): fn = "/dev/%s" %(fn,) - - if typ == "drbd": - if not fn.startswith("drbd"): - (drbdadmstdin, drbdadmstdout) = os.popen2(["/sbin/drbdadm", "sh-dev", fn]) - fn = drbdadmstdout.readline().strip() - else: - fn = "/dev/%s" %(fn,) if typ in ("tap", "tap2"): (taptype, fn) = fn.split(":", 1) diff --git a/tools/python/xen/xend/XendDomainInfo.py b/tools/python/xen/xend/XendDomainInfo.py index 6c4b044478..89403be7d6 100644 --- a/tools/python/xen/xend/XendDomainInfo.py +++ b/tools/python/xen/xend/XendDomainInfo.py @@ -3249,16 +3249,6 @@ class XendDomainInfo: disk = devinfo[1]['uname'] fn = blkdev_uname_to_file(disk) - - # If this is a drbd volume, check if we need to activate it - if disk.find(":") != -1: - (disktype, diskname) = disk.split(':', 1) - if disktype == 'drbd': - (drbdadmstdin, drbdadmstdout) = os.popen2(["/sbin/drbdadm", "state", diskname]) - (state, junk) = drbdadmstdout.readline().split('/', 1) - if state == 'Secondary': - os.system('/sbin/drbdadm primary ' + diskname) - taptype = blkdev_uname_to_taptype(disk) mounted = devtype in ['tap', 'tap2'] and taptype != 'aio' and taptype != 'sync' and not os.stat(fn).st_rdev mounted_vbd_uuid = 0