[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] xend: Allow drbd disks.
# HG changeset patch # User Keir Fraser <keir.fraser@xxxxxxxxxx> # Date 1238495170 -3600 # Node ID 1522573509309fdc5ba9348b04622af6de676205 # Parent 35fd5a1922bc67609b2b20a1c0b7fb157faf33ba xend: Allow drbd disks. From: Ben Timby <btimby@xxxxxxxxx> Signed-off-by: Keir Fraser <keir.fraser@xxxxxxxxxx> --- tools/python/xen/util/blkif.py | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -r 35fd5a1922bc -r 152257350930 tools/python/xen/util/blkif.py --- a/tools/python/xen/util/blkif.py Tue Mar 31 11:24:13 2009 +0100 +++ b/tools/python/xen/util/blkif.py Tue Mar 31 11:26:10 2009 +0100 @@ -75,7 +75,7 @@ def _parse_uname(uname): fn = taptype = None 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 == "tap": (taptype, fn) = fn.split(":", 1) _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |