search for: domainif

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

Did you mean: domainid
2010 Mar 31
1
[PATCH] Default to IDE when VirtIO isn't available
...$guestif{$1}->{$1.$2} = 1; + } - # If fstab contains references to sdX, these could refer to IDE or SCSI - # devices. Need to look at the domain config for clues. - if (exists($guestif{sd})) { - # Look for IDE and SCSI devices from the domain definition - my %domainif; - foreach my $device (@$devices) { - foreach my $type ('hd', 'sd') { - if ($device =~ m{^$type([a-z]+)}) { - $domainif{$type} ||= {}; - $domainif{$type}->{$device} = 1; + # If fstab contains references...
2010 Feb 19
2
[PATCH 1/2] Fix remapping of block devices
...+ $guestif{$1}->{$1.$2} = 1; + } + + # If fstab contains references to sdX, these could refer to IDE or SCSI + # devices. Need to look at the domain config for clues. + if (exists($guestif{sd})) { + # Look for IDE and SCSI devices from the domain definition + my %domainif; + foreach my $device (@$devices) { + foreach my $type ('hd', 'sd') { + if ($device =~ m{^$type([a-z]+)}) { + $domainif{$type} ||= {}; + $domainif{$type}->{$device} = 1; + } }...
2010 Jun 30
3
[PATCH 1/2] Add new augeas directory with grub device.map lens
Add a directory to contain required augeas lenses which aren't yet upstream. Include a new lens for grub's device.map. --- augeas/README.txt | 4 ++++ augeas/device_map.aug | 28 ++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+), 0 deletions(-) create mode 100644 augeas/README.txt create mode 100644 augeas/device_map.aug diff --git a/augeas/README.txt
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,