Re: [PATCH 2/2] perf probe: Allow user to specify address within executable

2013-12-01 Thread Masami Hiramatsu
(2013/12/02 9:07), David Ahern wrote: Allow user to specify an address within an executable. This is useful, for example, in probing local functions. If the function name begins with 0x then try to convert the supplied name to an address. If succuessful then treat the function name as the

[PATCH 3/3] cpufreq: Remove unnecessary variable/parameter 'frozen'

2013-12-01 Thread Viresh Kumar
We have used 'frozen' variable/function parameter at many places to differentiate CPU hotplugging on suspend/resume vs sysfs removals. We now have another variable cpufreq_suspended which can be used in these cases and hence we can get rid of all those variables or function parameters.

[PATCH 1/3] cpufreq: add 'freq_table' in struct cpufreq_policy

2013-12-01 Thread Viresh Kumar
freq table is not per CPU but per policy and so it makes more sense to keep it within struct cpufreq_policy instead of a per-cpu variable. This patch does it. Over that there is no need to set policy-freq_table to NULL in -exit(), as policy structure is going to be freed soon. Signed-off-by:

[PATCH 0/3] CPUFreq: Cleanups for 3.14

2013-12-01 Thread Viresh Kumar
Apart from the other patches, here are few minor cleanups for cpufreq core and drivers. The first two removes per-cpu cpufreq_show_table variable and moves that information in struct cpufreq_policy. And the last one removes unnecessary frozen variable/parameters. Viresh Kumar (3): cpufreq: add

[PATCH 2/3] cpufreq: Remove cpufreq_generic_exit()

2013-12-01 Thread Viresh Kumar
cpufreq_generic_exit() is empty now and so can be deleted. Signed-off-by: Viresh Kumar viresh.ku...@linaro.org --- drivers/cpufreq/blackfin-cpufreq.c | 1 - drivers/cpufreq/cpufreq-cpu0.c | 1 - drivers/cpufreq/cris-artpec3-cpufreq.c | 1 - drivers/cpufreq/cris-etraxfs-cpufreq.c | 1

Re: [PATCH V4 0/4] DRIVERS: IRQCHIP: Add support for crossbar IP

2013-12-01 Thread Sricharan R
On Tuesday 19 November 2013 02:07 PM, Linus Walleij wrote: On Thu, Nov 14, 2013 at 1:18 PM, Sricharan R r.sricha...@ti.com wrote: The minimal crossbar driver to track and allocate free GIC lines and configure the crossbar is added here, along with the DT bindings. V4: Addressed a

[PATCH 2/3] perf tools: Record sampling time for each entry

2013-12-01 Thread Namhyung Kim
From: Namhyung Kim namhyung@lge.com Calculate elapsed time for each sample and record it. The elapsed time is a diff between current sample-time and previous sample-time which was saved for each evsel and cpu. Maybe we can use PERF_SAMPLE_READ for the precise result. Signed-off-by:

[RFC 0/3] perf tools: Show time info (v1)

2013-12-01 Thread Namhyung Kim
Hi, Sometimes users might want to see time information along with the performance result but the perf cannot provide it currently. In this patchset, I added such feature using sample-time. When the perf processes sample events, it calculate time info and update last timestamp. It keeps the

[PATCH 1/3] perf tools: Record total sampling time

2013-12-01 Thread Namhyung Kim
From: Namhyung Kim namhyung@lge.com It's sometimes useful to see total sampling or elapsed time with normal performance result. To do that, record first and last sample time for each evsel and to display it in the header (--stdio only for now). $ perf record -a sleep 1 $ perf report

[PATCH 3/3] perf report: Add --show-time-info option

2013-12-01 Thread Namhyung Kim
From: Namhyung Kim namhyung@lge.com The --show-time-info option is for displaying elapsed sampling time information for each entry. $ perf record -- perf bench sched messaging $ perf report --stdio --show-time-info ... # Samples: 10K of event 'cycles' # Event count (approx.):

[PATCH 3/3] usb: phy-generic: Add ULPI VBUS support

2013-12-01 Thread Chris Ruehl
usb: phy-generic: Add ULPI VBUS support Some platforms need to set the VBUS parameters of the ULPI like ISP1504 which interact with overcurrent protection and power switch MIC2575. Therefore it requires to set * DRVVBUS * DRVVBUS_EXT * EXTVBUSIND * CHRGVBUS of the ULPI. This patch add support for

[PATCH 2/3] usb: phy-ulpi: Add EXTVBUSIND,CHRGVBUS flag support

2013-12-01 Thread Chris Ruehl
usb: phy-ulpi: Add EXTVBUSIND,CHRGVBUS flag support ULPI like ISP1504 support external vbus power indication used in combination with vbus switches mic2075. Signed-off-by: Chris Ruehl chris.ru...@gtsys.com.hk --- drivers/usb/phy/phy-ulpi.c | 11 ++- 1 file changed, 10 insertions(+), 1

[PATCH 1/3] usb: phy-generic: Add GPIO based ChipSelect

2013-12-01 Thread Chris Ruehl
usb: phy-generic: Add GPIO based ChipSelect The ULPI ISP1504 uses the CHIP_SELECT_N (low active) pin to active the chip. This patch add support for GPIO based ChipSelect almost the same way implemented for the Reset feature. Sample DT configuration: pinctrl_usbphy2: usbphy-2 { fsl,pins =

[PATCH] usb: phy-generic, phy-ulpi patch set

2013-12-01 Thread Chris Ruehl
This patch set add support * GPIO ChipSelect * ULPI support to set VBUS flags for EXTVBUSIND,CHRGVBUS * ULPI support to set VBUS flags from DT [PATCH 1/3] usb: phy-generic: Add GPIO based ChipSelect The ULPI ISP1504 uses the CHIP_SELECT_N (low active) pin to active the chip. This

RE: [PATCHv6 4/4] Documentation: Add device tree bindings for Freescale FTM PWM.

2013-12-01 Thread Li Xiubo
+ftm0 (module clock), +ftm0_counter (counter clock), +- clocks : Must contain a clock specifier for each entry in +clock-names, + See clock/clock-bindings.txt for details of the property values. Note that the order is significant here, at least from the way the driver

re: ping: re:[PATCH 1/1] kernel code that do not handle NULL return of kmem_cache_zalloc

2013-12-01 Thread zhouzhouyi
From: Zhouyi Zhou zhouzho...@gmail.com the text of previous ping message maybe garbled sorry for the trouble I do a grep for kmem_cache_zalloc and kmem_cache_alloc in kernel tree, and find some code do not handle NULL return of kmem_cache_zalloc correctly Signed-off-by: Zhouyi Zhou

Re: [PATCH 03/17] tracing/kprobes: Factor out struct trace_probe

2013-12-01 Thread Namhyung Kim
Hi Srikar, On Fri, 29 Nov 2013 14:55:21 +0530, Srikar Dronamraju wrote: * Namhyung Kim namhy...@kernel.org [2013-11-27 15:19:49]: /** * Kprobe event core functions */ -struct trace_probe { +struct trace_kprobe { struct list_headlist; struct kretproberp;

Re: [i915] WARNING: [...] drivers/gpu/drm/i915/intel_display.c:9948 intel_get_pipe_from_connector

2013-12-01 Thread Daniel Vetter
On Sun, Dec 1, 2013 at 5:57 PM, Paul Bolle pebo...@tiscali.nl wrote: On Sun, 2013-12-01 at 10:58 +0100, Daniel Vetter wrote: Should be fixed with commit 7c063c725987406d743cc7de7625ff224fab75de Author: Jesse Barnes jbar...@virtuousgeek.org Date: Tue Nov 26 09:13:41 2013 -0800

Re: [alsa-devel] [PATCH 07/10] ASoC: ux500: Store DMA data in the DAI differently in the pdata and DT case

2013-12-01 Thread Olof Johansson
Hi, On Tue, Nov 19, 2013 at 3:07 AM, Lee Jones lee.jo...@linaro.org wrote: In this patch we do two things. Firstly, instead of open coding the store of DMA data in to the DAI for later use, we use the API provided. Secondly we create and store similar DMA data for the DT case, only this time

Re: [PATCH 2/2] perf sched: Add documentation for timehist options

2013-12-01 Thread Namhyung Kim
Hi David, On Sun, 1 Dec 2013 17:23:15 -0700, David Ahern wrote: Add entry to perf-sched documentation for timehist command and its options. [SNIP] +--max-stack:: +Set the stack depth limit when showing the callchains. Default: 127 Isn't it 5 instead of 127? Thanks, Namhyung -- To

Re: [PATCH v2 1/2] clk: add clk accuracy retrieval support

2013-12-01 Thread Uwe Kleine-König
Hello, On Wed, Nov 27, 2013 at 01:44:44PM +0100, Boris BREZILLON wrote: The clock accuracy is expressed in ppb (parts per billion) and represents the possible clock drift. Say you have a clock (e.g. an oscillator) which provides a fixed clock of 20MHz with an accuracy of +- 20Hz. This

Re: [PATCH 1/2] perf sched: Introduce timehist command - v2

2013-12-01 Thread Namhyung Kim
On Sun, 1 Dec 2013 17:23:14 -0700, David Ahern wrote: 'perf sched timehist' provides an analysis of scheduling events. Example usage: perf sched record -- sleep 1 perf sched timehist By default it shows the individual schedule events, including the time between sched-in events for

<    1   2   3   4   5