Displaying 20 results from an estimated 32 matches for "cpu_stat".
Did you mean:
cpustat
2013 Aug 22
1
Re: Information needed regarding the libvirt version libvirt-1.0.6-1
...lot for providing us your pointers. From the domain.xml(attached
in my previous mail) which we have used for defining virtual guest i can
see below lines
<emulator>/usr/local/bin/qemu-system-x86_64</emulator>
We were using same domain.xml in eralier libvirt version and the execution
of cpu_stats command was successful. Now if we have to get
"cpu_stats" command working using QEMU emulator on libvirt can you suggest
what can we do.
I have found below links on google while checking for the vcpu pid's error
https://www.redhat.com/archives/libvir-list/2013-June/msg00214.htm<h...
2011 Mar 17
1
Using barplot() with zoo -- names.arg not permitted?
...quot;^", oid, sep = "")
class(df$time) <- "POSIXct"
df_d <- diff(zoo(df[, grep(pat, names(df))], order.by = df$time))
I then save the start & end timestamps for future reference, and
generate another zoo, this one containing only the percentages from
df_d:
cpu_states <- c("sys", "intr", "user", "nice", "idle")
d_range <- range(index(df_d))
df_pct <- sweep(df_d, 1, apply(df_d, 1, sum), "/")[, paste(oid, cpu_states[1:4], sep = "")] * 100
Well, that is, I save the percentages in...
2006 Feb 08
2
[PATCH] make x86_64 vcpu hotplug work like i386
...<xen/interface/vcpu.h>
#include <asm/desc.h>
#include <asm/proto.h>
#include <asm/hardirq.h>
@@ -143,22 +144,7 @@
/* We halt the CPU with physical CPU hotplug */
static inline void play_dead(void)
{
- idle_task_exit();
- wbinvd();
- mb();
- /* Ack it */
- __get_cpu_var(cpu_state) = CPU_DEAD;
-
- /* We shouldn''t have to disable interrupts while dead, but
- * some interrupts just don''t seem to go away, and this makes
- * it "work" for testing purposes. */
- /* Death loop */
- while (__get_cpu_var(cpu_state) != CPU_UP_PREPARE)
- HYPERVISOR_sche...
2013 Aug 22
2
Re: Information needed regarding the libvirt version libvirt-1.0.6-1
...e. We are facing this issue while executing the "cpu-stats
<domain name>" command.
I have collected the debug logs as you suggested and attaching the same.
<<libvirt_testing_starting_VG.log >> --> Log collected while starting the
virtual guest
<<libvirt_testing_cpu_stats.log >> ---> Log collected while executing
cpu-stats comamnd
<<CLA_new-0.xml >> ---> Domian.xml used for configuration of virtual
guest
Can you please check and let us know your opinion.
Thanks
Abhinay
On Thu, Aug 22, 2013 at 1:43 PM, Daniel P. Berrange <berrange@re...
2006 Oct 31
0
FWARC 2005/367 sun4v watchdog service API
...b537d48602
Log message:
FWARC 2005/367 sun4v watchdog service API
FWARC 2006/093 sun4v watchdog API update
6354584 Add watchdog timer support in sun4v
Files:
create: usr/src/uts/sparc/sys/wdt.h
create: usr/src/uts/sun4v/os/wdt.c
update: usr/src/uts/common/os/clock.c
update: usr/src/uts/sun4/os/cpu_states.c
update: usr/src/uts/sun4u/os/mach_cpu_states.c
update: usr/src/uts/sun4v/Makefile.files
update: usr/src/uts/sun4v/io/hardclk.c
update: usr/src/uts/sun4v/ml/hcall.s
update: usr/src/uts/sun4v/os/mach_cpu_states.c
update: usr/src/uts/sun4v/sys/hypervisor_api.h
2012 Jun 01
0
[PATCH 06/27] xen, smpboot: Use generic SMP booting infrastructure
...uch_softlockup_watchdog();
- preempt_disable();
xen_enable_sysenter();
xen_enable_syscall();
@@ -75,25 +74,11 @@ static void __cpuinit cpu_bringup(void)
set_cpu_sibling_map(cpu);
xen_setup_cpu_clockevents();
-
- notify_cpu_starting(cpu);
-
- set_cpu_online(cpu, true);
-
- this_cpu_write(cpu_state, CPU_ONLINE);
-
- wmb();
-
- /* We can take interrupts now: we're officially "up". */
- local_irq_enable();
-
- wmb(); /* make sure everything is out */
}
static void __cpuinit cpu_bringup_and_idle(void)
{
- cpu_bringup();
- cpu_idle();
+ smpboot_start_secondary(NULL);
}
s...
2012 Jun 01
0
[PATCH 06/27] xen, smpboot: Use generic SMP booting infrastructure
...uch_softlockup_watchdog();
- preempt_disable();
xen_enable_sysenter();
xen_enable_syscall();
@@ -75,25 +74,11 @@ static void __cpuinit cpu_bringup(void)
set_cpu_sibling_map(cpu);
xen_setup_cpu_clockevents();
-
- notify_cpu_starting(cpu);
-
- set_cpu_online(cpu, true);
-
- this_cpu_write(cpu_state, CPU_ONLINE);
-
- wmb();
-
- /* We can take interrupts now: we're officially "up". */
- local_irq_enable();
-
- wmb(); /* make sure everything is out */
}
static void __cpuinit cpu_bringup_and_idle(void)
{
- cpu_bringup();
- cpu_idle();
+ smpboot_start_secondary(NULL);
}
s...
2011 Feb 22
0
Advice/suggestions on using a stacked barplot with "zoo"?
...a
zoo. That's a level of awkwardness that seems suspect to me.
(Before I encountered prop.table(), I had cobbled up a function that
seemed to work, at least as much as I tested it (not much!); its use did
manage to avoid the coercion to matrux & back to zoo.)
Here are some samples:
> cpu_states
[1] "user" "nice" "sys" "intr" "idle"
> plot_states
[1] "sys" "intr" "user" "nice"
> CPU[1:10]
user nice sys intr idle
1298333405 28722903 25098 4900282 1809059 281114498...
2005 Jun 07
8
[PATCH] add dom0 vcpu hotplug control
This patch adds new control messages for vcpu hotplug events. Via the
xm vcpu_hotplug sub-program, VCPUS in domains can be enabled/disabled
when CONFIG_HOTPLUG_CPU is enabled in the target domain''s kernel.
Currently there is nothing that tracks whether a VCPU is up or down.
My previous [1]patch added a new per-VCPU flag (VCPUF_down) which could
be used to keep track of which VCPUS are
2008 Apr 30
16
[PATCH 00/15] ia64/pv_ops take 5
Hi. This patchset implements ia64/pv_ops support which is the
framework for virtualization support.
Now all the comments so far have been addressed, but only a few exceptions.
On x86 various ways to support virtualization were proposed, and
eventually pv_ops won. So on ia64 the pv_ops strategy is appropriate too.
Later I'll post the patchset which implements xen domU based on
ia64/pv_ops.
2008 Apr 30
16
[PATCH 00/15] ia64/pv_ops take 5
Hi. This patchset implements ia64/pv_ops support which is the
framework for virtualization support.
Now all the comments so far have been addressed, but only a few exceptions.
On x86 various ways to support virtualization were proposed, and
eventually pv_ops won. So on ia64 the pv_ops strategy is appropriate too.
Later I'll post the patchset which implements xen domU based on
ia64/pv_ops.
2008 Apr 09
15
[PATCH 00/15] RFC: ia64/pv_ops take 4
Hi. This patchset implements ia64/pv_ops support which is the
framework for virtualization support.
Please review and comments.
On x86 various ways to support virtualization were proposed, and
eventually pv_ops won. So on ia64 the pv_ops strategy is appropriate too.
Later I'll post the patchset which implements xen domU based on
ia64/pv_ops. Currently only ia64/xen pv_ops implementation
2008 Apr 09
15
[PATCH 00/15] RFC: ia64/pv_ops take 4
Hi. This patchset implements ia64/pv_ops support which is the
framework for virtualization support.
Please review and comments.
On x86 various ways to support virtualization were proposed, and
eventually pv_ops won. So on ia64 the pv_ops strategy is appropriate too.
Later I'll post the patchset which implements xen domU based on
ia64/pv_ops. Currently only ia64/xen pv_ops implementation
2008 May 19
18
[PATCH 00/17] ia64/pv_ops take 6
Hi. This patchset implements ia64/pv_ops support which is the
framework for virtualization support.
Changes from take 5 are rebased to Linux 2.6.26-rc3,
bug fix ivt.S paravirtualization and multi entry point support.
I believe these patches can be applied to the linux ia64 repository.
On x86 various ways to support virtualization were proposed, and
eventually pv_ops won. So on ia64 the pv_ops
2008 May 19
18
[PATCH 00/17] ia64/pv_ops take 6
Hi. This patchset implements ia64/pv_ops support which is the
framework for virtualization support.
Changes from take 5 are rebased to Linux 2.6.26-rc3,
bug fix ivt.S paravirtualization and multi entry point support.
I believe these patches can be applied to the linux ia64 repository.
On x86 various ways to support virtualization were proposed, and
eventually pv_ops won. So on ia64 the pv_ops
2007 Apr 23
27
[PATCH 00/25] xen: Xen implementation for paravirt_ops
Hi Andi,
This series of patches implements the Xen paravirt-ops interface.
It applies to 2.6.21-rc7 + your patches + the last batch of pv_ops
patches I posted.
This patch generally restricts itself to Xen-specific parts of the tree,
though it does make a few small changes elsewhere.
These patches include:
- some helper routines for allocating address space and walking pagetables
- Xen
2007 Apr 23
27
[PATCH 00/25] xen: Xen implementation for paravirt_ops
Hi Andi,
This series of patches implements the Xen paravirt-ops interface.
It applies to 2.6.21-rc7 + your patches + the last batch of pv_ops
patches I posted.
This patch generally restricts itself to Xen-specific parts of the tree,
though it does make a few small changes elsewhere.
These patches include:
- some helper routines for allocating address space and walking pagetables
- Xen
2007 May 11
30
[patch 00/28]xen: Xen implementation for paravirt_ops
Hi Andi,
This series of patches implements the Xen paravirt-ops interface. It
applies to 2.6.21-git13 + patches-2.6.21-git7-070507-1.tar.gz (I think
"unwinder" is the only patch which doesn't apply to git13, and the
sched-clock patches are the only ones which this series actually
needs).
Changes since the last posting:
- More netfront review and cleanup
- Added ability to
2007 May 11
30
[patch 00/28]xen: Xen implementation for paravirt_ops
Hi Andi,
This series of patches implements the Xen paravirt-ops interface. It
applies to 2.6.21-git13 + patches-2.6.21-git7-070507-1.tar.gz (I think
"unwinder" is the only patch which doesn't apply to git13, and the
sched-clock patches are the only ones which this series actually
needs).
Changes since the last posting:
- More netfront review and cleanup
- Added ability to
2007 May 11
30
[patch 00/28]xen: Xen implementation for paravirt_ops
Hi Andi,
This series of patches implements the Xen paravirt-ops interface. It
applies to 2.6.21-git13 + patches-2.6.21-git7-070507-1.tar.gz (I think
"unwinder" is the only patch which doesn't apply to git13, and the
sched-clock patches are the only ones which this series actually
needs).
Changes since the last posting:
- More netfront review and cleanup
- Added ability to