Displaying 19 results from an estimated 19 matches for "idletime".
Did you mean:
idle_time
2007 Oct 23
6
[PATCH][cpufreq] Xen support for the ondemand governor [1/2] (hypervisor code)
...af354 xen/arch/x86/platform_hypercall.c
--- a/xen/arch/x86/platform_hypercall.c Wed Oct 17 13:12:03 2007 +0100
+++ b/xen/arch/x86/platform_hypercall.c Thu Oct 18 16:07:53 2007 -0500
@@ -295,14 +295,17 @@ ret_t do_platform_op(XEN_GUEST_HANDLE(xe
{
uint32_t i, nr_cpus;
uint64_t idletime;
+ uint64_t totaltime;
struct vcpu *v;
XEN_GUEST_HANDLE(uint64_t) idletimes;
+ XEN_GUEST_HANDLE(uint64_t) totaltimes;
ret = -ENOSYS;
if ( cpufreq_controller != FREQCTL_dom0_kernel )
break;
guest_from_compat_handle(idletimes, op-&g...
2007 Oct 23
2
[PATCH][cpufreq] Xen support for the ondemand governor [2/2] (linux)
...idle_ticks = tmp_idle_ticks;
}
load = (100 * (total_ticks - idle_ticks)) / total_ticks;
+ return load;
+}
+#else
+
+#include <xen/interface/platform.h>
+static int dbs_calc_load(struct cpu_dbs_info_s *this_dbs_info)
+{
+ int load = 0;
+ struct xen_platform_op op;
+ uint64_t idletime[NR_CPUS];
+ uint64_t totaltime[NR_CPUS];
+ struct cpufreq_policy *policy;
+ unsigned int j;
+
+ op.cmd = XENPF_getidletime;
+ op.u.getidletime.max_cpus = num_online_cpus();
+ set_xen_guest_handle(op.u.getidletime.idletime, idletime);
+ set_xen_guest_handle(op.u.getidleti...
2007 Apr 14
2
Samba -> WinXP: slow transfers, partial solution
...NA missed data: NA
truncated data: 537664 bytes truncated data: 352822899 bytes
truncated packets: 10904 pkts truncated packets: 249727 pkts
data xmit time: 115.730 secs data xmit time: 115.730 secs
idletime max: 661.6 ms idletime max: 661.9 ms
throughput: 5965 Bps throughput: 3076507 Bps
================================
2) Samba -> WinXP without SO_SNDBUF set, two simultaneous transfers
(note there are no retransmits at all)
==============...
2009 May 04
0
to the person who asked about dividing by the base row
...4,5,6,7)] <- .df[(.df$n !=
1),c(3,4,5,6,7)]/.df[(.df$n == 1),c(3,4,5,6,7)]
? ? ? .df
})
# WORKING CODE
#===========================================================================
?
DF <- read.table(textConnection("sp wg n v.realtime v.cputime v.tcputime
v.idletime v.nswtch
9 0 1 1 28.61300 28.61 28.6039 0.00000e+00 407
1563 0 1 2 15.20270 30.38 28.5981 9.80523e-01 483
3128 0 1 4 12.50930 50.00 28.6053 1.07877e+01 489
4682 0 1 6 12.10260 72.55 28.6193 2.20203e+01 488
6241 0 1 8 12.11510 96.80 28.6448 3.41126e+01 494
121 0 10 1 28.61530 28.60...
2007 Oct 29
0
[PATCH][retry 2][cpufreq] Xen support for the ondemand governor in Linux dom0
...ct cpu_dbs
idle_ticks = tmp_idle_ticks;
}
load = (100 * (total_ticks - idle_ticks)) / total_ticks;
+ return load;
+}
+#else
+
+#include <xen/interface/platform.h>
+static int dbs_calc_load(struct cpu_dbs_info_s *this_dbs_info)
+{
+ int load = 0;
+ struct xen_platform_op op;
+ uint64_t idletime[NR_CPUS];
+ struct cpufreq_policy *policy;
+ unsigned int j;
+ cpumask_t cpumap;
+
+ op.cmd = XENPF_getidletime;
+ set_xen_guest_handle(op.u.getidletime.cpumap_bitmap, (uint8_t *) cpus_addr(cpumap));
+ op.u.getidletime.cpumap_nr_cpus = NR_CPUS;// num_online_cpus();
+ set_xen_gu...
2009 May 04
2
Calculating relative ratios in a data frame..
I have a data-set that is structured as follows:
sp wg n v.realtime v.cputime v.tcputime v.idletime v.nswtch
9 0 1 1 28.61300 28.61 28.6039 0.00000e+00 407
1563 0 1 2 15.20270 30.38 28.5981 9.80523e-01 483
3128 0 1 4 12.50930 50.00 28.6053 1.07877e+01 489
4682 0 1 6 12.10260 72.55 28.6193 2.20203...
2005 Mar 08
2
[Fwd: Re: etherboot 5.3.14 and pxelinux keyboard problem]
Tim Legge has passed the following message on to me:
hpa wrote:
> Quinn wrote:
> > Now it seems I have found a bug in PXELINUX with regards to etherboot.
> > Up until 2.07 pxelinux was responsive to the keyboard. From 2.08 and
> > up the keyboard is locked at the boot prompt when pxelinux is loaded
> > via etherboot 5.3.14.
>
> That would not be a PXELINUX bug,
2005 Oct 16
2
Lost packets and strange "behaviour" of my TC rules
... 0 bytes missed data:
NA
truncated data: 0 bytes truncated data: 0 bytes
truncated packets: 0 pkts truncated packets: 0 pkts
data xmit time: 20.909 secs data xmit time: 0.000 secs
idletime max: 3109.6 ms idletime max: NA
ms
throughput: 8726 Bps throughput: 0 Bps
================================
TCP connection 2:
host c: 192.168.105.237:36070
host d: 192.168.105.211:20001
complete conn: yes
fi...
2008 Sep 19
8
[PATCH] x86: add hypercall to query current underlying pCPU''s frequency
...op(XEN_GUEST_HANDLE(xen_platform_op_t) u_xenpf_op)
{
ret_t ret = 0;
+ struct vcpu *v;
struct xen_platform_op curop, *op = &curop;
if ( !IS_PRIV(current->domain) )
@@ -312,7 +313,6 @@ ret_t do_platform_op(XEN_GUEST_HANDLE(xe
{
uint32_t cpu;
uint64_t idletime, now = NOW();
- struct vcpu *v;
struct xenctl_cpumap ctlmap;
cpumask_t cpumap;
XEN_GUEST_HANDLE(uint8) cpumap_bitmap;
@@ -482,6 +482,20 @@ ret_t do_platform_op(XEN_GUEST_HANDLE(xe
break;
}
break;
+
+ case XENPF_get_cpu_freq:
+...
2012 May 16
1
Very High Load on Dovecot 2 and Errors in mail.err.
Hi,
I have a DELL PE R610 (32GB RAM 2x Six Core CPU and about 1,4 TB RAID 10)
running with 20.000 Mailaccounts behind 2 Dovecot IMAP/POP3 Proxies on a Debian Lenny.
The Server was running about 1 year without any problems. 15Min Load was between 0,5 and max 8.
No high IOWAIT. CPU Idletime about 98%.
But since yesterday morning the Systemload on the Server has been increased over 500. I Think this is
very high. The strange thing: there was no IOWAIT and the CPU Idle time was allways the same on about 98%.
The total amount of IMAP Sessions is about 300 - 600.
Current vmstat and ios...
2010 Nov 11
10
[PATCH 0/3] Xen Microcode update driver for 2.6.38
From: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Hi all,
This series adds a new microcode driver for Xen. The Xen hypervisor
can deal with all the low-level details of doing a microcode update
(Intel vs AMD, doing all the physical CPUs present on the system,
current and future, etc), so all the driver has to do is make a
hypercall to upload the microcode into Xen.
This only
2002 Aug 29
1
trouble saving files to network shares in win2k
I am having some trouble saving some files to a network share after they have been opened for a few minutes. My case in point is I have samba 2.2.4 setup on redhat 7.3 as a PDC and win2k clients. I have the users saving their outlook.pst to their home directory (H:) and not in their profile. The outlook files are all over 150 meg so trying to save some bandwidth.
The users can open outlook,
2009 Jan 12
0
[ANNOUNCE] xorg-server 1.5.99.901
...tOutputPrimary
randr: Mangle compat Xinerama reply based on primary output
randr: Mangle GetScreenResources sort order based on primary output
randr: use primary output for RRFirstOutput()
randr: clear primaryOutput when the output is deleted
xsync: Fix wakeup storm in idletime counter.
XAA: Disable offscreen pixmaps by default.
Alban Browaeys (1):
Fix dmx compile on 1.6 branch.
Colin Guthrie (1):
Fix compilation with -Werror=format-security
Cooper Yuan (1):
Fix typo in xf86PickCrtcs()
Francis Giraldeau (1):
Don't log audit messages w...
2004 Apr 07
2
Presence
I have to agree.
A large number of people are looking for this feature. I have written a web
script that can show Agent logged into the system.
I think integration/gateway between Asterisk and Jabber would be a amazingly
wonderful product.
There is always MSN.
Shad Mortazavi
---------------------------------------------------
Nexus Technical Manager
n|m Nexus Management Inc
Netural Bay
2007 Mar 19
1
Trying to run LiveResponse
...l=1007 base=7fe4a000 limit=00001fff 32-bit rw-
Backtrace:
=>1 0x6780a470 in toolkitpro981vc71 (+0xa470) (0x6780a470)
0x6780a470: divl 0x24(%esi),%eax
Modules:
Module Address Debug info Name (116 modules)
PE 0x00400000-00669000 Deferred liveresponse
PE 0x10000000-1000c000 Deferred idletime
PE 0x30000000-30026000 Deferred nspr4
PE 0x66300000-66365000 Deferred spellican
PE 0x67800000-67ae9000 Export toolkitpro981vc71
PE 0x780c0000-78121000 Deferred msvcp60
ELF 0x7bf00000-7bf03000 Deferred <wine-loader>
PE 0x7c140000-7c243000 Deferred mf...
2010 Nov 26
0
Wine release 1.3.8
...ning.
Ken Thomases (1):
loader: On Mac, reserve the process's original thread for the frameworks.
Louis Lenders (3):
wine.inf: Add another .NET v3.0 registry-key.
ntdll/tests: Add tests for NtQueryVolumeInformationFile with FileFsVolumeInformation class.
ntdll: Set the IdleTime member from the SystemPerformanceInformation info class in NtQuerySystemInformation.
Luca Bennati (2):
xcopy: Fix Italian translation.
cmd: Fix Italian translation.
Maarten Lankhorst (8):
winegstreamer: Fix reference leak.
winegstreamer: Destroy thread in GST_Connect....
2008 Nov 13
69
[PATCH 00 of 38] xen: add more Xen dom0 support
Hi Ingo,
Here''s the chunk of patches to add Xen Dom0 support (it''s probably
worth creating a new xen/dom0 topic branch for it).
A dom0 Xen domain is basically the same as a normal domU domain, but
it has extra privileges to directly access hardware. There are two
issues to deal with:
- translating to and from the domain''s pseudo-physical addresses and
real machine
2006 Apr 12
1
powerd not behaving with an Asus A8V-MX and Athlon 64 X2 3800+
....cam.da.retry_count: 4
kern.cam.da.default_timeout: 60
kern.cam.da.0.minimum_cmd_size: 10
kern.cam.da.1.minimum_cmd_size: 10
kern.disks: da1 da0 cd0 ad6 ad4
kern.geom.debugflags: 0
kern.geom.collectstats: 1
kern.geom.mirror.sync_requests: 2
kern.geom.mirror.disconnect_on_failure: 1
kern.geom.mirror.idletime: 5
kern.geom.mirror.timeout: 4
kern.geom.mirror.debug: 0
kern.elf32.fallback_brand: -1
kern.init_path: /sbin/init:/sbin/oinit:/sbin/init.bak:/rescue/init:/stand/sysinstall
kern.init_shutdown_timeout: 120
kern.acct_suspend: 2
kern.acct_resume: 4
kern.acct_chkfreq: 15
kern.acct_suspended: 0
kern.cp_t...
2009 Jun 01
1
installing sn package
...pasting a complete example, but the data-set is too large,
> so I hope someone can help me just by description of symptoms.
>
-snip-
I have solved the problem by introducing an artificial variable in the original
plot specification and plotting the data using the %+% operator, e.g.:
p.b4.idletime <- p.b4.generic.wg %+%
within(b4.all.medians.8, { y <- v.idletime }) +
ylab("Idle time (s)")
------------------------------
Message: 29
Date: Wed, 27 May 2009 12:33:46 +0000
From: Monica Pisica <pisicandru@hotmail.com>
Subject: Re: [R] split strings
To: <ggrothend...