search for: disable_kernel_module

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

2010 Feb 18
2
[PATCH 1/2] ESX: Look harder for potential transfer failures
Although I can't reproduce, I seem to have had an incomplete transfer which wasn't picked up by the existing error handling. This change adds some more sanity checks: * Check for error on close() (should have been doing this anyway) * Check that the bytes received == reported content length --- lib/Sys/VirtV2V/Transfer/ESX.pm | 14 +++++++++++++- 1 files changed, 13 insertions(+), 1
2010 May 13
1
[PATCH] Improve augeas error reporting
...# Propagate augeas errors - die($@) if($@); + $self->_augeas_error($@) if ($@); } =item update_kernel_module(device, module) @@ -242,7 +295,7 @@ sub update_kernel_module }; # Propagate augeas errors - die($@) if($@); + $self->_augeas_error($@) if ($@); } =item disable_kernel_module(device) @@ -275,7 +328,7 @@ sub disable_kernel_module }; # Propagate augeas errors - die($@) if($@); + $self->_augeas_error($@) if ($@); } =item update_display_driver(driver) @@ -303,7 +356,7 @@ sub update_display_driver }; # Propagate augeas errors - die($@)...
2010 Mar 31
1
[PATCH] Default to IDE when VirtIO isn't available
...if ($virtio) { + $guestos->update_kernel_module($module, 'virtio_blk'); + $scsi_hostadapter = 1; + } - $scsi_hostadapter = 1; + # IDE doesn't need scsi_hostadapter + else { + $guestos->disable_kernel_module($module); + } } } # Add an explicit scsi_hostadapter if it wasn't there before - $guestos->enable_kernel_module('scsi_hostadapter', - $virtio ? "virtio_blk" : "sym53c8xx") - unless($scsi_host...
2010 Jul 28
3
Create new Sys::VirtV2V::Util
These 2 patches are mostly code motion. They were prompted by an apparent augeas error in BZ 613967 which didn't display useful error message. The error seems to happen in Converter::Linux. GuestOS::RedHat had a handy function which displayed verbose augeas error messages. This function moves into the new module where it can be used by both modules. The second patch is an consequential tidy