search for: _list_kernels

Displaying 3 results from an estimated 3 matches for "_list_kernels".

Did you mean: list_kernels
2011 Jan 20
1
[PATCH] Don't remove foreign kernels during conversion
...kernels - foreach my $kernel (_find_hv_kernels($desc)) { - # Don't actually try to remove them yet in case we remove them all. This - # might make your dependency checker unhappy. - push(@remove_kernels, $kernel); - } - # Pick first appropriate kernel returned by _list_kernels my $boot_kernel; foreach my $kernel (_list_kernels($g, $desc)) { - # Skip kernels we're going to remove - next if (grep(/^$kernel$/, @remove_kernels)); + # Skip foreign kernels + next if _is_hv_kernel($g, $kernel); # If we're configuring virt...
2011 Apr 26
7
[PATCH 1/7] Push $desc creation into Sys::VirtConvert::Converter->convert
This change is part of an ongoing effort to remove use of $desc and inspect the OS directly as required during conversion. --- lib/Sys/VirtConvert/Connection/LibVirtTarget.pm | 4 +- lib/Sys/VirtConvert/Connection/RHEVTarget.pm | 41 +++++++++--------- lib/Sys/VirtConvert/Converter.pm | 35 ++++++++++++---- lib/Sys/VirtConvert/Converter/RedHat.pm | 45
2011 Mar 11
2
[PATCH 1/2] Allow reading more data than the reported size of a volume
If a volume is not an exact multiple of 512 bytes, qemu-img will report its size rounded down to a 512 byte boundary. However, when copying, the file is still read until EOF, which will return more data than was expected. This change prevents that causing a failure in itself. The situation is still not resolved, however, as there are still situations where this will cause a failure. For example,