search for: vpic

Displaying 11 results from an estimated 11 matches for "vpic".

Did you mean: apic
2010 Jan 10
0
Bug#564573: xen-unstable FTBFS on i386
Package: xen-unstable Version: 3.3-unstable+hg17961-1 Severity: serious Hello Debian Xen Team, xen-unstable FTBFS on i386: vpic.c: Assembler messages: vpic.c:58: Error: bad register name `%sil' vpic.c:58: Error: bad register name `%sil' make[7]: *** [vpic.o] Error 1 The full buildlog is available at <http://people.debian.org/~ballombe/misc/xen-unstable.build> Cheers, -- Bill. <ballombe at debian.org>...
2006 May 17
1
Display Images from URL in Database
I am only 3 days into rails, so please excuse the stupid question. I am trying to access my database named Movies. I am using a table named movie. I would like to pull the table entry with field vname=rawr, and then take this entry''s field vpic, and use that vpic (assume its a url to an image) to display an image. To begin with, I am having problems with displaying an image with html + ruby. In my index.rhtml I have two lines: <% @pic = ''http://www.showfly.net/img/1.jpg'' %> <img src=''<% @pic %&...
2012 Sep 07
2
[PATCH] x86/hvm: don't give vector callback higher priority than NMI/MCE
...pending) ) return hvm_intack_mce; + if ( (plat->irq.callback_via_type == HVMIRQ_callback_vector) + && vcpu_info(v, evtchn_upcall_pending) ) + return hvm_intack_vector(plat->irq.callback_via.vector); + if ( vlapic_accept_pic_intr(v) && plat->vpic[0].int_output ) return hvm_intack_pic(0); _______________________________________________ Xen-devel mailing list Xen-devel@lists.xen.org http://lists.xen.org/xen-devel
2007 Dec 11
0
[HVM] Fix interrupt routing
If HVM guest Fedora 7 uses PIT and lapic timer, it can''t boot or install. The cause is: At some point, Fedora 7 disables PIT interrupt by "vioapic.redirtbl[2].mask = 1, vpic.imr.bit0 = 0 (unmasked), vlapic.lvt[LINT0].mask = 1", and enables vlapic timer interrupt generating; In vmx_intr_assist() -> pt_update_irq(), we always choose IRQ0 rather than vlapic timer interrupt, because: 1) is_isa_irq_masked(v, 0) returns false due to vpic.imr.bit0 = 0; 2) the PIT'...
2006 May 18
1
RE: Rails-spinoffs Digest, Vol 12, Issue 29
...charset=US-ASCII; delsp=yes; format=flowed I am only 3 days into rails, so please excuse the stupid question. I am trying to access my database named Movies. I am using a table named movie. I would like to pull the table entry with field vname=rawr, and then take this entry''s field vpic, and use that vpic (assume its a url to an image) to display an image. To begin with, I am having problems with displaying an image with html + ruby. In my index.rhtml I have two lines: <% @pic = ''http://www.showfly.net/img/1.jpg'' %> <img src=''<% @pic %&...
2008 Jul 07
0
[PATCH] KVM: Add irq ack notifier list
...gfn_t target_gfn; }; +struct kvm_irq_ack_notifier { + struct hlist_node link; + unsigned gsi; + void (*irq_acked)(struct kvm_irq_ack_notifier *kian); +}; + struct kvm_arch{ int naliases; struct kvm_mem_alias aliases[KVM_ALIAS_SLOTS]; @@ -329,6 +335,7 @@ struct kvm_arch{ struct kvm_pic *vpic; struct kvm_ioapic *vioapic; struct kvm_pit *vpit; + struct hlist_head irq_ack_notifier_list; int round_robin_prev_vcpu; unsigned int tss_addr; --------------040605070007030807060607--
2008 Jun 27
8
PCI device assignment to guests
The main change from the patches I sent out earlier this week is support for guests that use the PIC. A callback for PIC irq ack handling is also introduced. Currently, there's no mechanism to register/unregister callers to the irq ack callbacks, but they can be added when there's more than one user for the functionality. Please review.
2008 Jun 27
8
PCI device assignment to guests
The main change from the patches I sent out earlier this week is support for guests that use the PIC. A callback for PIC irq ack handling is also introduced. Currently, there's no mechanism to register/unregister callers to the irq ack callbacks, but they can be added when there's more than one user for the functionality. Please review.
2012 Sep 14
0
[ PATCH v3 2/3] xen: enable Virtual-interrupt delivery
...timer interrut is handled by lapic, its vector in + * IRR is returned and used to set eoi_exit_bitmap for virtual + * interrupt delivery case. Otherwise return -1 to do nothing. + */ + if ( vlapic_accept_pic_intr(v) && + (&v->domain->arch.hvm_domain)->vpic[0].int_output ) + return -1; + else + return pt_irq_vector(earliest_pt, hvm_intsrc_lapic); } static struct periodic_time *is_pt_irq( diff -r 7c6844dd4a0d xen/include/asm-x86/hvm/hvm.h --- a/xen/include/asm-x86/hvm/hvm.h Tue Sep 11 15:34:36 2012 +0800 +++ b/xen/include/asm-x86/...
2007 May 30
30
[VTD][patch 0/5] HVM device assignment using vt-d
The following 5 patches are re-submissions of the vt-d patch. This set of patches has been tested against cs# 15080 and is now much more mature and tested against more environments than the original patch. Specifically, we have successfully tested the patch with following environements: - 32/64-bit Linux HVM guest - 32-bit Windows XP/Vista (64-bit should work but did not test) -
2013 Sep 23
57
[PATCH RFC v13 00/20] Introduce PVH domU support
This patch series is a reworking of a series developed by Mukesh Rathor at Oracle. The entirety of the design and development was done by him; I have only reworked, reorganized, and simplified things in a way that I think makes more sense. The vast majority of the credit for this effort therefore goes to him. This version is labelled v13 because it is based on his most recent series, v11.