search for: unbind_evtchn_from_irq

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

2005 Aug 26
0
Trying to free free IRQ
...U/include/asm/evtchn.h:55: error: conflicting types for `bind_evtchn_to_irq'' xen/xen-unstable.hg/linux-2.4.30-xenU/include/asm/irq.h:44: error: previous declaration of `bind_evtchn_to_irq'' xen/xen-unstable.hg/linux-2.4.30-xenU/include/asm/evtchn.h:56: error: conflicting types for `unbind_evtchn_from_irq'' _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2005 May 02
0
[PATCH] update evtchn for SMP
...xen_intr.h --- a/freebsd-5.3-xen-sparse/i386-xen/include/xen_intr.h 2005-04-30 17:06:55 -07:00 +++ b/freebsd-5.3-xen-sparse/i386-xen/include/xen_intr.h 2005-04-30 17:06:55 -07:00 @@ -31,6 +31,9 @@ extern void unbind_virq_from_irq(int virq); extern int bind_evtchn_to_irq(int evtchn); extern void unbind_evtchn_from_irq(int evtchn); +extern int bind_ipi_on_cpu_to_irq(int cpu, int ipi); +extern void unbind_ipi_on_cpu_from_irq(int cpu, int ipi); +extern void ap_evtchn_init(int cpu); static __inline__ int irq_cannonicalize(int irq) { _______________________________________________ Xen-devel mailing list Xen-deve...
2005 Aug 30
4
Re: [Xen-changelog] New console transport and update xenconsoled.
...gt;+ if (!xen_start_info.console_evtchn) >+ return 0; >+ >+ err = bind_evtchn_to_irqhandler( >+ xen_start_info.console_evtchn, handle_input, >+ 0, "xencons", inring()); >+ if (err) { >+ xprintk(KERN_ERR "XEN console request irq failed %i\n", err); >+ unbind_evtchn_from_irq(xen_start_info.console_evtchn); >+ return err; >+ } >+ >+ return 0; >+} >+ >+void xencons_suspend_comms(void) >+{ >+ >+ if (!xen_start_info.console_evtchn) >+ return; >+ >+ unbind_evtchn_from_irqhandler(xen_start_info.console_evtchn, inring()); >+} >+...
2005 Sep 08
45
/proc/xen/xenbus supports watch?
Hi, Anybody (Christian?) could please tell me if we can get the support for registering watch with /proc/xen/xenbus? (..OK, I know that we will change it this /proc stuff to a device soon) So far we can only do read/write/rm. I really miss the xen watch feature. Many thanks, Hieu _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com