aboutsummaryrefslogtreecommitdiffstats
path: root/tools/python
diff options
context:
space:
mode:
authorJim Fehlig <jfehlig@novell.com>2011-01-18 17:20:55 +0000
committerJim Fehlig <jfehlig@novell.com>2011-01-18 17:20:55 +0000
commit94182843973828ec589e2efc9b65ec013c6caf58 (patch)
treef0e3e9c4524d4e66d7565bd9d2fdccd2a6db9e0c /tools/python
parentf1b2ae8e6c5a90ced7b9c75001818784b3aed162 (diff)
downloadxen-94182843973828ec589e2efc9b65ec013c6caf58.tar.gz
xen-94182843973828ec589e2efc9b65ec013c6caf58.tar.bz2
xen-94182843973828ec589e2efc9b65ec013c6caf58.zip
xend: drbd: Revert 19444:152257350930
Remove some more "drbd" cruft from xend. This is not necessary for drbd to work with Xen. Requested-by: Jim Fehlig <jfehlig@novell.com> Tested-by: Shriram Rajagopalan <rshriram@gmail.com> Committed-by: Ian Jackson <ian.jackson@eu.citrix.com>
Diffstat (limited to 'tools/python')
-rw-r--r--tools/python/xen/util/blkif.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/python/xen/util/blkif.py b/tools/python/xen/util/blkif.py
index d68423c4c3..3fc54e79cd 100644
--- a/tools/python/xen/util/blkif.py
+++ b/tools/python/xen/util/blkif.py
@@ -71,7 +71,7 @@ def _parse_uname(uname):
if uname.find(":") != -1:
(typ, fn) = uname.split(":", 1)
- if typ in ("phy", "drbd") and not fn.startswith("/"):
+ if typ in ("phy") and not fn.startswith("/"):
fn = "/dev/%s" %(fn,)
if typ in ("tap", "tap2"):