search for: ctrl_if

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

Did you mean: ctrl_f
2005 Jul 20
0
[PATCH] Control Interface tx tasklet
Hi, Below is a patch to prevent a NULL function being called by the ctrl_if_tx_tasklet. This should not really be necessary (although its a sensible check to make), however, I have been using the control interface, with a ctrl_if_send_message_and_get_response call and have noticed that duplicate responses (or response notifications) are sometimes recieved by this tasklet....
2005 Sep 05
2
[PATCH][1/6] add a hypercall number for virtual device in unmodified guest
add a hypercall number for virtual device in unmodified guest There are 6 patches for para-driver support in vmx guest. This is the first one. Signed-off-by: Xiaofeng Ling <xiaofeng.ling@intel.com> Signed-off-by: Arun Sharma <arun.sharma@intel.com> diff -r 287d36b46fa3 xen/arch/x86/x86_32/entry.S --- a/xen/arch/x86/x86_32/entry.S Tue Aug 30 20:36:49 2005 +++
2005 Jun 07
8
[PATCH] add dom0 vcpu hotplug control
...et when the idlers are all forked */ int smp_threads_ready; +#ifdef CONFIG_HOTPLUG_CPU +struct vcpu_hotplug_handler_t { + void (*fn)(); + u32 vcpu; +}; +#endif + #if 0 /* * Trampoline 80x86 program as an array. @@ -1297,6 +1304,9 @@ } #ifdef CONFIG_HOTPLUG_CPU +#include <asm-xen/ctrl_if.h> +/* hotplug down/up funtion pointer and target vcpu */ +struct vcpu_hotplug_handler_t vcpu_hotplug_handler; /* must be called with the cpucontrol mutex held */ static int __devinit cpu_enable(unsigned int cpu) @@ -1357,6 +1367,77 @@ } printk(KERN_ERR "CPU %u didn''t die....
2005 Aug 30
4
Re: [Xen-changelog] New console transport and update xenconsoled.
...c Tue Aug 30 08:47:51 2005 >+++ b/linux-2.6-xen-sparse/drivers/xen/console/console.c Tue Aug 30 16:14:53 2005 >@@ -51,8 +51,8 @@ > #include <asm-xen/xen-public/event_channel.h> > #include <asm-xen/hypervisor.h> > #include <asm-xen/evtchn.h> >-#include <asm-xen/ctrl_if.h> >- >+ >+#include "xencons_ring.h" > /* > * Modes: > * ''xencons=off'' [XC_OFF]: Console is disabled. >@@ -118,13 +118,6 @@ > /* Common transmit-kick routine. */ > static void __xencons_tx_flush(void); > >-/* This task is used...