SHA256
1
0
forked from pool/xen

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:
OBS User autobuild
2010-04-18 22:21:05 +00:00
committed by Git OBS Bridge
parent f46075e596
commit ce2ee9452b
17 changed files with 160 additions and 573 deletions

View File

@@ -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))