Displaying 8 results from an estimated 8 matches for "diskdevices".
2013 Sep 19
4
Array being flattened
Hello All,
I''ve run into an issue where an array that''s being passed into a
defined type is being "flattened" when it''s inclosed in double quotes
and I''m not sure how to get around this. This is happening a the
pdxcat/amanda module and I''ve raised an github issues for this but
wanted to query the community as a whole. The issue and my branch
2010 Aug 25
2
[PATCH] Virtio support
...diff --git a/src/task-omatic/task_vm.rb b/src/task-omatic/task_vm.rb
index dd71747..cc2071f 100644
--- a/src/task-omatic/task_vm.rb
+++ b/src/task-omatic/task_vm.rb
@@ -35,7 +35,7 @@ end
def create_vm_xml(name, uuid, memAllocated, memUsed, vcpus, bootDevice,
- net_interfaces, diskDevices)
+ virtio, net_interfaces, diskDevices)
doc = Document.new
doc.add_element("domain", {"type" => "kvm"})
@@ -78,6 +78,10 @@ def create_vm_xml(name, uuid, memAllocated, memUsed, vcpus, bootDevice,
diskdev.add_element("readonly"...
2019 Feb 27
1
performance issue with UID SEARCH
Hi,
I'm running dovecot 2.2.x and I'm having an issue where I see many
dovecot processes use all the available IO on a server. According to
iotop the worst offenders seem to be in this state (NOTE: I swapped in
phony username & IP info):
dovecot/imap [someusername 123.456.789.012 UID SEARCH]
The server in question is running with Maildirs on top of an XFS
filesystem. Is there
2010 Sep 01
1
[PATCH] Fix virtual disk name (virtio)
...s["devices"].add_element("emulator").add_text("/usr/bin/qemu-kvm")
devs = ['hda', 'hdb', 'hdc', 'hdd']
+ virtual_devs = ['vda', 'vdb', 'vdc', 'vdd']
which_device = 0
+ which_virtual_device = 0
diskDevices.each do |disk|
is_cdrom = (disk =~ /\.iso/) ? true : false
@@ -78,17 +80,18 @@ def create_vm_xml(name, uuid, memAllocated, memUsed, vcpus, bootDevice,
diskdev.add_element("readonly")
diskdev.add_element("source", {"file" => disk})
diskdev...
2019 Feb 27
0
performance issue with UID SEARCH
Without FTS, dovecot needs to open *each* and *every* email when doing
text searches, which is understandably rather slow process.
Aki
On 27.2.2019 10.43, Marc Roos wrote:
>
>
> I am not sure if this any help. From what I understand of maildir it has
> lots of separate files, thus uid/gid lookups. Try running something like
> nscd, that will cache these lookups?
>
>
>
2009 Jul 24
1
permit many-to-many vms / networks relationship redux
redux patchset permitting a vm to be associated with
multiple networks and vice-versa. updated patchset so
as to be applicable against current oVirt server HEAD
these patches may be applied in any order, they all
need to be pushed together
2009 Jul 09
2
permit many-to-many vms / networks relationship
This patchset contains changes to the ovirt server
frontend, backend, and tests components, permitting vms
to be associated with multiple networks and vice versa.
Also included are two patches which are required for the frontend
bits; a patch adding collapsable sections to the vm form, which
in itself depends on the second patch that provides default values
for the cpu and memory vm table fields
2009 Jun 30
0
[PATCH server] permit many-to-many vms / networks relationship
...diff --git a/src/task-omatic/task_vm.rb b/src/task-omatic/task_vm.rb
index a448d30..dd71747 100644
--- a/src/task-omatic/task_vm.rb
+++ b/src/task-omatic/task_vm.rb
@@ -35,7 +35,7 @@ end
def create_vm_xml(name, uuid, memAllocated, memUsed, vcpus, bootDevice,
- macAddr, bridge, diskDevices)
+ net_interfaces, diskDevices)
doc = Document.new
doc.add_element("domain", {"type" => "kvm"})
@@ -87,11 +87,13 @@ def create_vm_xml(name, uuid, memAllocated, memUsed, vcpus, bootDevice,
which_device += 1
end
- unless macAddr.nil...