search for: blkdev_uname_to_fil

Displaying 4 results from an estimated 4 matches for "blkdev_uname_to_fil".

Did you mean: blkdev_uname_to_file
2010 Jun 21
6
Xen 4.0.1 rc3 pre install problem
...t;/usr/lib/python2.6/dist-packages/xen/xend/XendConfig.py", line 1448, in device_add ret_uuid = self.device_duplicate_check(dev_type, dev_info, target, config) File "/usr/lib/python2.6/dist-packages/xen/xend/XendConfig.py", line 1237, in device_duplicate_check blkdev_file = blkdev_uname_to_file(dev_uname) File "/usr/lib/python2.6/dist-packages/xen/util/blkif.py", line 95, in blkdev_uname_to_file return _parse_uname(uname)[0] File "/usr/lib/python2.6/dist-packages/xen/util/blkif.py", line 90, in _parse_uname (taptype, fn) = fn.split(":", 2)[1:3] V...
2006 Sep 28
6
[Patch] Fix blktap to work with a bootloader
If a Xen guest has a bootloader configured, then it will fail to start on a blktap image. The problem is blkdev_uname_to_file, which cannot parse the "tap:aio:$filename" image strings: it tries to split the string apart at ":" and assign the result to a 2-tuple, and this results in a python error if the split results in three or more strings. The fix is to split only at the first ":", and t...
2010 Jun 21
7
Third release candidate for Xen 4.0.1
Folks, The tag 4.0.1-rc3 has been added to http://xenbits.xensource.com/xen-4.0-testing.hg Please test! -- Keir _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2007 Jan 05
10
[PATCH 1/7] Fix pygrub path on Solaris
...t;john.levon@sun.com> diff --git a/tools/python/xen/xend/XendDomainInfo.py b/tools/python/xen/xend/XendDomainInfo.py --- a/tools/python/xen/xend/XendDomainInfo.py +++ b/tools/python/xen/xend/XendDomainInfo.py @@ -37,7 +37,7 @@ from xen.util.blkif import blkdev_uname_ from xen.util.blkif import blkdev_uname_to_file from xen.util import security -from xen.xend import balloon, sxp, uuid, image, arch +from xen.xend import balloon, sxp, uuid, image, arch, osdep from xen.xend import XendOptions, XendNode, XendConfig from xen.xend.XendConfig import scrub_password @@ -1547,7 +1547,7 @@ class XendDomainInfo:...