Re: [PATCH 1/2] make v3.4-rc3 run on snowball

2012-06-27 Thread Hongbo Zhang
[PATCH 1/2] make v3.4-rc3 run on snowball: this patch can be omitted. but, [PATCH 2/2] db8500 thermal dirver: any comments/suggestions are welcomed. On 20 June 2012 21:14, Hongbo Zhang wrote: > Please omit this patch, I am currently working on v3.4-rc3, I will rebase > to the latest version soo

Re: [PATCH] pm-qa: run sanity check before running test cases

2012-06-27 Thread Hongbo Zhang
In fact, this patten "shell_name script_file" works. for example on Android, "/bin/sh ***.sh" can run the scrips. "#!/bin/bash" at the beginning just points the default shell. On 28 June 2012 01:18, Paul Larson wrote: > > +#!/bin/bash >> > I suspect that stuff like this is going to be unfriendly

Re: [PATCH] pm-qa: run sanity check before running test cases

2012-06-27 Thread Amit Kucheria
On Wed, Jun 27, 2012 at 10:48 PM, Paul Larson wrote: > >> +#!/bin/bash > > I suspect that stuff like this is going to be unfriendly to the > androidification work that is going on for pmqa.  Hongbo, do all the scripts > need to be converted over to run under the minimal shell that android > suppor

Re: alloc failed, but?

2012-06-27 Thread Andy Green
On 06/28/12 11:27, the mail apparently from Tom Gall included: Hi All, I'm stressing a system with apachebench. As one scales up work on a system obviously there's always a point where the wheels fall off, the engine explodes or something else exciting happens. But as Han Solo would say ... "hol

alloc failed, but?

2012-06-27 Thread Tom Gall
Hi All, I'm stressing a system with apachebench. As one scales up work on a system obviously there's always a point where the wheels fall off, the engine explodes or something else exciting happens. But as Han Solo would say ... "hold together baby", I'd like to eek out as much as I can. (If y

Re: [PATCH] acpi: intel_idle : break dependency between modules

2012-06-27 Thread Thomas Renninger
Hi, I agree that such a dependency between 2 modules is not nice. But your patch will have bad side-effects (see comments embedded below). On Wednesday, June 27, 2012 11:07:48 AM Daniel Lezcano wrote: > When the system is booted with some cpus offline, the idle > driver is not initialized. When a

Re: [PATCH] perf sched replay: fix event lookup

2012-06-27 Thread Arnaldo Carvalho de Melo
Em Wed, Jun 27, 2012 at 01:18:17PM +0400, Dmitry Antipov escreveu: > On 06/26/2012 03:20 AM, Arnaldo Carvalho de Melo wrote: > > > >>Fair enough. The method should be a simple wrapper to libtraceevent APIs > >>like this patch. > > > >The pevent thing is per perf.data file, so I made it stop being s

[GIT PULL 0/7] perf/core improvements and fixes

2012-06-27 Thread Arnaldo Carvalho de Melo
Hi Ingo, Please consider pulling. Tested on RHEL6.2, Fedora 17 x86 and x86_64, - Arnaldo The following changes since commit 357398e96d8c883b010379a7669df43ed0e2e32b: perf/x86: Fix section mismatch in uncore_pci_init() (2012-06-25 10:32:21 +0200) are available in the git rep

[PATCH 3/7] perf tools: Stop using a global trace events description list

2012-06-27 Thread Arnaldo Carvalho de Melo
From: Arnaldo Carvalho de Melo The pevent thing is per perf.data file, so I made it stop being static and become a perf_session member, so tools processing perf.data files use perf_session and _there_ we read the trace events description into session->pevent and then change everywhere to stop usi

Re: [PATCH] pm-qa: run sanity check before running test cases

2012-06-27 Thread Paul Larson
> +#!/bin/bash > I suspect that stuff like this is going to be unfriendly to the androidification work that is going on for pmqa. Hongbo, do all the scripts need to be converted over to run under the minimal shell that android supports? Thanks, Paul Larson

Re: [PATCH v6] ARM: imx: Add basic imx6q thermal driver

2012-06-27 Thread Rob Lee
On Wed, Jun 27, 2012 at 8:48 AM, Sascha Hauer wrote: > On Tue, Jun 26, 2012 at 11:51:55PM -0500, Robert Lee wrote: >> +static inline int anatop_get_temp(int *temp, struct thermal_zone_device >> *tzdev) >> +{ >> + unsigned int n_meas; >> + unsigned int reg; >> + struct imx_anatop_tsdat

[PATCH] pm-qa: run sanity check before running test cases

2012-06-27 Thread Rajagopal Venkat
From: root run sanity test for each functionality if present. If functionality enabled, then run all respective test cases. This patch also adds sanity checks for cpuidle and sched_mc. Signed-off-by: Rajagopal Venkat --- Test.mk| 17 ++--- cpuidle/cpuidle_sani

Re: [linux-pm] [PATCH] acpi: intel_idle : break dependency between modules

2012-06-27 Thread Srivatsa S. Bhat
On 06/27/2012 02:37 PM, Daniel Lezcano wrote: > When the system is booted with some cpus offline, the idle > driver is not initialized. When a cpu is set online, the > acpi code call the intel idle init function. Unfortunately > this code introduce a dependency between intel_idle and acpi. > > Thi

Re: [PATCH v6] ARM: imx: Add basic imx6q thermal driver

2012-06-27 Thread Sascha Hauer
On Tue, Jun 26, 2012 at 11:51:55PM -0500, Robert Lee wrote: > +static inline int anatop_get_temp(int *temp, struct thermal_zone_device > *tzdev) > +{ > + unsigned int n_meas; > + unsigned int reg; > + struct imx_anatop_tsdata *sd; > + > + sd = &((struct imx_anatop_thdata *)tzdev->d

Re: [PATCH v6] ARM: imx: Add basic imx6q thermal driver

2012-06-27 Thread Rob Lee
On Tue, Jun 26, 2012 at 11:51 PM, Robert Lee wrote: > Add imx anatop peripheral thermal driver and use it for imx6q builds. > This driver hooks into the linux thermal framework which provides a > sysfs interface for temperature readings and other information and > a mechanism to shutdown the syste

Re: [PATCH] perf sched replay: fix event lookup

2012-06-27 Thread Dmitry Antipov
On 06/26/2012 03:20 AM, Arnaldo Carvalho de Melo wrote: Fair enough. The method should be a simple wrapper to libtraceevent APIs like this patch. The pevent thing is per perf.data file, so I made it stop being static and become a perf_session member, so tools processing perf.data files use pe

[PATCH] acpi: intel_idle : break dependency between modules

2012-06-27 Thread Daniel Lezcano
When the system is booted with some cpus offline, the idle driver is not initialized. When a cpu is set online, the acpi code call the intel idle init function. Unfortunately this code introduce a dependency between intel_idle and acpi. This patch is intended to remove this dependency by using the

Qemu networking

2012-06-27 Thread Simone Ferlin-Oliveira
I want to make network work with Qemu using the tap device. I tried this out using a debian-wheezy ( http://elinux.org/BeagleBoardDebian#Debian_Wheezy_snapshot) and Linaro (nano) (http://www.linaro.org/downloads/1203) for the beagleboard and following some instructions online to set up the tap devi