Displaying 7 results from an estimated 7 matches for "get_partition_offsets".
2015 Oct 21
0
Bug#753358:
...ot any domUs via pygrub. As a test I've just
pulled pygrub out of xen-tools-4.5 from experimental but I'm still getting
the same error in the bootloader.log:
----
Traceback (most recent call last):
File "/usr/lib/xen-4.4/bin/pygrub", line 809, in <module>
part_offs = get_partition_offsets(file)
File "/usr/lib/xen-4.4/bin/pygrub", line 106, in get_partition_offsets
image_type = identify_disk_image(file)
File "/usr/lib/xen-4.4/bin/pygrub", line 48, in identify_disk_image
fd = os.open(file, os.O_RDONLY)
OSError: [Errno 2] No such file or directory: '...
2018 May 27
1
Using libvirt to access Ceph RBDs with Xen
...xited with error status 1
2018-05-27 11:24:36.667+0000: libxl:
libxl_create.c:1259:domcreate_rebuild_done: cannot (re-)build domain: -3
/var/log/xen/bootloader.14.log:
->
Traceback (most recent call last):
File "/usr/lib64/xen/bin/pygrub", line 896, in <module>
part_offs = get_partition_offsets(file)
File "/usr/lib64/xen/bin/pygrub", line 113, in get_partition_offsets
image_type = identify_disk_image(file)
File "/usr/lib64/xen/bin/pygrub", line 56, in identify_disk_image
fd = os.open(file, os.O_RDONLY)
OSError: [Errno 2] No such file or directory:
'rbd:...
2015 Sep 18
0
Bug#753358: Bug#743977: drbd8: Xen resource script fails when using the xl stack
Hi,
we are still experiencing this error on stable jessie with xen 4.4.1 and it
does not appear to be fixed in that version at all.
The actual error is:
-- snip --
Traceback (most recent call last):
File "/usr/lib/xen-4.4/bin/pygrub", line 809, in <module>
part_offs = get_partition_offsets(file)
File "/usr/lib/xen-4.4/bin/pygrub", line 106, in get_partition_offsets
image_type = identify_disk_image(file)
File "/usr/lib/xen-4.4/bin/pygrub", line 48, in
identify_disk_image
fd = os.open(file, os.O_RDONLY)
OSError: [Errno 2] No such file or directory:...
2012 Jul 19
2
[PATCH] pygrub: add syslog support to pygrub
...slicetag == V_ROOT:
return slicesect * SECTOR_SIZE
- raise RuntimeError, "No root slice found"
+ raise RuntimeError, "No root slice found"
def get_fs_offset_gpt(file):
fd = os.open(file, os.O_RDONLY)
@@ -102,7 +103,7 @@ FDISK_PART_GPT=0xee
def get_partition_offsets(file):
image_type = identify_disk_image(file)
if image_type == DISK_TYPE_RAW:
- # No MBR: assume whole disk filesystem, which is like a
+ # No MBR: assume whole disk filesystem, which is like a
# single partition starting at 0
return [0]
elif image_ty...
2014 Apr 21
7
Bug#745419: xen-utils-4.1: Pygrub fails to boot from LVM LV when something installed in the volume boot record
...think this is because of the function "is_disk_image" on line 45 of
/usr/lib/xen-4.1/bin/pygrub: it should return false on LVM LV's because they
are not disk images but virtual devices, but it returns true because of certain
bytes in the first block of 512 bytes being set. This causes
get_partition_offsets to seek fruitlessly for a partition instead of simply
returning [0], causing the bootloader not to find the right partition.
Detailed steps to reproduce:
We have a domU called blup.kassala.de, it is running Jessie, its root disk is
a LVM LV at /dev/vpsdisks/blup.kassala.de-disk. The first 512 byte...
2014 Apr 22
0
Bug#745419: Bug#745419: xen-utils-4.1: Pygrub fails to boot from LVM LV when something installed in the volume boot record
...e of the function "is_disk_image" on line 45 of
> /usr/lib/xen-4.1/bin/pygrub: it should return false on LVM LV's because they
> are not disk images but virtual devices, but it returns true because of certain
> bytes in the first block of 512 bytes being set. This causes
> get_partition_offsets to seek fruitlessly for a partition instead of simply
> returning [0], causing the bootloader not to find the right partition.
I'm afraid I don't follow your logic here. is_disk_image is trying to
determine whether or not the device (be it a virtual device or
otherwise) contains a parti...
2012 Jun 08
18
[PATCH 0 of 4 RFC] Populate-on-demand: Check pages being returned by the balloon driver
Populate-on-demand: Check pages being returned by the balloon driver
This patch series is the second result of my work last summer on
decreasing fragmentation of superpages in a guests'' p2m when using
populate-on-demand.
This patch series is against 4.1; I''m posting it to get feedback on
the viability of getting a ported version of this patch into 4.2.
As with the previous