Displaying 8 results from an estimated 8 matches for "1238053".
2015 Jul 02
0
Re: [PATCH 1/9] v2v: Stable bus and slot numbers for removable drives (RHBZ#1238053).
...ble
> drives (CDs and floppies) when the guest is converted using virt-v2v
> or virt-p2v.
>
> Previously we were a bit random about this. After this patch series,
> the bus and slot numbers and preserved if at all possible.
>
> BZ: https://bugzilla.redhat.com/show_bug.cgi?id=1238053
Patches 1-6 are fine.
Patch 7 has a note.
Patches 8-9 seems fine too, at a first glance.
Thanks,
--
Pino Toscano
2015 Jul 01
12
[PATCH 1/9] v2v: Stable bus and slot numbers for removable drives (RHBZ#1238053).
...ble bus and slot numbers for removable
drives (CDs and floppies) when the guest is converted using virt-v2v
or virt-p2v.
Previously we were a bit random about this. After this patch series,
the bus and slot numbers and preserved if at all possible.
BZ: https://bugzilla.redhat.com/show_bug.cgi?id=1238053
Rich.
2004 Aug 06
1
libshout2 namespace
At 05:30 PM 5/7/01 -0700, you wrote:
>any suggestions? I supposed to could make all calls shout2_*
>
>Michael, any suggestions here? How is this typically handled in other
>libs? Or do other libs never need to use both?
>
>I'll have to think about this a bit and see if I can't figure out a way
>to add mp3 into libshout2.
>
The easy solution is to just ensure the
2015 Jul 01
0
[PATCH 7/9] v2v: Introduce the concept of target buses.
...tfs handle
@@ -833,4 +838,75 @@ and du filename =
| line::_ -> (try Some (Int64.of_string line) with _ -> None)
| [] -> None
+(* Assign fixed and removable disks to target buses, as best we can.
+ * This is not solvable for all guests, but at least avoid overlapping
+ * disks (RHBZ#1238053). XXX This doesn't do the right thing for PC
+ * legacy floppy devices.
+ *)
+and target_bus_assignment source targets guestcaps =
+ let virtio_blk_bus = ref [| |]
+ and ide_bus = ref [| |]
+ and scsi_bus = ref [| |] in
+
+ (* Insert a slot into the bus array, making the array bigger if ne...
2015 Jul 21
0
ANNOUNCE: libguestfs 1.30 released
...lowing it to
be run directly on the host. The main advantage of this is we can run
valgrind directly on the daemon during testing.
Bugs fixed
https://bugzilla.redhat.com/1239053
virt-v2v error reporting when grub.conf cannot be parsed by Augeas
https://bugzilla.redhat.com/1238053
v2v:Duplicate disk target set when convert guest with cdrom attached
https://bugzilla.redhat.com/1237869
Virtio drivers are not installed for windows 2008 guests by virt-v2v
https://bugzilla.redhat.com/1234351
virt-v2v Support for Fedora virtio-win drivers
https:...
2017 Feb 19
3
[PATCH [WIP] 0/3] tests: Define common test functions.
There's a lot of common code in the tests, eg:
if [ "$(guestfish get-backend)" = "uml" ]; then
echo "$0: test skipped because UML backend does not support network"
exit 77
fi
These commits (work in progress) create a common set of test functions
for skipping tests etc.
Rich.
2015 Aug 11
41
[PATCH v2 00/17] v2v: add --in-place mode
This series is a second attempt to add a mode of virt-v2v operation
where it leaves the config and disk image conversion, rollback on
errors, registering with the destination hypervisor, etc. to a
third-party toolset, and performs only tuning of the guest OS to run in
the KVM-based hypervisor.
The first 14 patches are just refactoring and rearrangement of the code,
factoring the implementation
2017 Feb 20
3
[PATCH 0/3] tests: Define common test functions.
Previously I posted a work-in-progress preview of this patch series:
https://www.redhat.com/archives/libguestfs/2017-February/msg00224.html
This is the finished version that updates all of the shell-script
based tests. It passes 'make check', 'make check-direct' and
'make check-slow'.
Rich.