search for: 97,26

Displaying 8 results from an estimated 8 matches for "97,26".

Did you mean: 47,26
2020 Sep 09
0
[PATCH] vhost_vdpa: remove unnecessary spin_lock in vhost_vring_call
...s/vhost/vhost.c | 3 --- > drivers/vhost/vhost.h | 1 - > 3 files changed, 1 insertion(+), 11 deletions(-) > > diff --git a/drivers/vhost/vdpa.c b/drivers/vhost/vdpa.c > index 3fab94f88894..bc679d0b7b87 100644 > --- a/drivers/vhost/vdpa.c > +++ b/drivers/vhost/vdpa.c > @@ -97,26 +97,20 @@ static void vhost_vdpa_setup_vq_irq(struct vhost_vdpa *v, u16 qid) > return; > > irq = ops->get_vq_irq(vdpa, qid); > - spin_lock(&vq->call_ctx.ctx_lock); > irq_bypass_unregister_producer(&vq->call_ctx.producer); > - if (!vq->call_ctx.c...
2015 Aug 11
0
[PATCH v2 02/17] v2v: factor out opening input VM
...ce source); (match source.s_hypervisor with @@ -87,6 +72,9 @@ let rec main () = assert (disk.s_qemu_uri <> ""); ) source.s_disks; + source + +let amend_source source output_name network_map = (* Map source name. *) let source = match output_name with @@ -97,26 +85,43 @@ let rec main () = | Some name -> { source with s_name = name } in (* Map networks and bridges. *) - let source = - let { s_nics = nics } = source in - let nics = List.map ( - fun ({ s_vnet_type = t; s_vnet = vnet } as nic) -> + let nics = List.map ( + fu...
2007 Feb 01
0
Branch 'interpreter' - 9 commits - libswfdec/js libswfdec/swfdec_script.c libswfdec/swfdec_script.h player/swfdec_debug_stack.c test/trace
...test/trace/object-math-6.swf |binary test/trace/object-math-6.swf.trace | 17 +++++++ test/trace/object-math-7.swf |binary test/trace/object-math-7.swf.trace | 17 +++++++ 13 files changed, 178 insertions(+), 21 deletions(-) New commits: diff-tree 18aff9069e571bda0bf49290c7ad415597d1d16e (from 81d2a042d8772f2837e088c2fba410ea9b0df082) Author: Benjamin Otte <otte@gnome.org> Date: Thu Feb 1 14:38:22 2007 +0100 add another test that resulted from trying various stuff diff --git a/test/trace/Makefile.am b/test/trace/Makefile.am index a5d85ea..d931702 100644 --- a/te...
2018 Apr 20
1
[PATCH] v2v: rework handling of CPU topology
...t.push_back properties ("hw_cpu_threads", string_of_int threads); ); (match guestcaps.gcaps_block_bus with | Virtio_SCSI -> diff --git a/v2v/output_qemu.ml b/v2v/output_qemu.ml index ea94f92fd..952660de2 100644 --- a/v2v/output_qemu.ml +++ b/v2v/output_qemu.ml @@ -97,26 +97,18 @@ object arg "-m" (Int64.to_string (source.s_memory /^ 1024L /^ 1024L)); if source.s_vcpu > 1 then ( - if source.s_cpu_sockets <> None || source.s_cpu_cores <> None || - source.s_cpu_threads <> None then ( - let a = ref [] in...
2007 Apr 18
8
[PATCH 0/7] x86 paravirtualization infrastructure
The following patches introduce the core infrastructure needed to paravirtualize the 32-bit x86 Linux kernel. This is done by moving virtualization sensitive insn's or code paths to a function table, paravirt_ops. This structure can be populated with hypervisor specific calls or native stubs and currently support running on bare metal, VMI, Xen, or Lhype. These patches apply to
2007 Apr 18
8
[PATCH 0/7] x86 paravirtualization infrastructure
The following patches introduce the core infrastructure needed to paravirtualize the 32-bit x86 Linux kernel. This is done by moving virtualization sensitive insn's or code paths to a function table, paravirt_ops. This structure can be populated with hypervisor specific calls or native stubs and currently support running on bare metal, VMI, Xen, or Lhype. These patches apply to
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
2007 Feb 06
0
109 commits - configure.ac libswfdec/js libswfdec/Makefile.am libswfdec/swfdec_bits.c libswfdec/swfdec_bits.h libswfdec/swfdec_buffer.c libswfdec/swfdec_button_movie.c libswfdec/swfdec_codec_screen.c libswfdec/swfdec_color.c libswfdec/swfdec_color.h
...ace/object-math-6.swf |binary test/trace/object-math-6.swf.trace | 17 test/trace/object-math-7.swf |binary test/trace/object-math-7.swf.trace | 17 77 files changed, 4969 insertions(+), 1926 deletions(-) New commits: diff-tree ee3339e4cb9af7e52a6ecb381206f1ea5adb07c0 (from 24e1974f101eb00c1d7017dc3b90ba7009c7808f) Author: Benjamin Otte <otte@gnome.org> Date: Tue Feb 6 14:59:28 2007 +0100 s/unsigned int/SwfdecColor/ for colors diff --git a/libswfdec/swfdec_color.c b/libswfdec/swfdec_color.c index ee3a63f..c4fa52e 100644 --- a/libswfdec/swfdec_color.c +++ b/libs...