Accepting request 38078 from Virtualization
checked in (request 38078) OBS-URL: https://build.opensuse.org/request/show/38078 OBS-URL: https://build.opensuse.org/package/show/Virtualization/xen?expand=0&rev=41
This commit is contained in:
committed by
Git OBS Bridge
parent
f46075e596
commit
ce2ee9452b
@@ -13,13 +13,11 @@ Index: xen-4.0.0-testing/tools/python/xen/util/blkif.py
|
||||
if uname.find(":") != -1:
|
||||
(typ, fn) = uname.split(":", 1)
|
||||
|
||||
@@ -88,15 +88,18 @@ def _parse_uname(uname):
|
||||
@@ -88,15 +88,16 @@ def _parse_uname(uname):
|
||||
|
||||
if typ == "tap":
|
||||
(taptype, fn) = fn.split(":", 1)
|
||||
- return (fn, taptype)
|
||||
+ if taptype in ("tapdisk", "ioemu"):
|
||||
+ (taptype, fn) = fn.split(":", 1)
|
||||
+ return (fn, (typ, taptype))
|
||||
+ return (fn, (typ,taptype))
|
||||
|
||||
|
Reference in New Issue
Block a user