[V5 07/11] powerpc, perf: Change the name of HW PMU branch filter tracking variable

2014-02-05 Thread Anshuman Khandual
This patch simply changes the name of the variable from 'bhrb_filter' to 'bhrb_hw_filter' in order to add one more variable which will track SW filters in generic powerpc book3s code which will be implemented in the subsequent patch. This patch does not change any functionality. Signed-off-by:

[V5 06/11] perf, documentation: Description for conditional branch filter

2014-02-05 Thread Anshuman Khandual
Adding documentation support for conditional branch filter. Signed-off-by: Anshuman Khandual khand...@linux.vnet.ibm.com Reviewed-by: Stephane Eranian eran...@google.com --- tools/perf/Documentation/perf-record.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git

[V5 04/11] perf, tool: Conditional branch filter 'cond' added to perf record

2014-02-05 Thread Anshuman Khandual
Adding perf record support for new branch stack filter criteria PERF_SAMPLE_BRANCH_COND. Signed-off-by: Anshuman Khandual khand...@linux.vnet.ibm.com Reviewed-by: Stephane Eranian eran...@google.com --- tools/perf/builtin-record.c | 1 + 1 file changed, 1 insertion(+) diff --git

[V5 03/11] powerpc, perf: Re-arrange PMU based branch filter processing in POWER8

2014-02-05 Thread Anshuman Khandual
This patch does some code re-arrangements to make it clear that it ignores any separate privilege level branch filter request and does not support any combinations of HW PMU branch filters. Signed-off-by: Anshuman Khandual khand...@linux.vnet.ibm.com --- arch/powerpc/perf/power8-pmu.c | 21

Re: [slub] WARNING: CPU: 1 PID: 1 at mm/slub.c:992 deactivate_slab()

2014-02-05 Thread David Rientjes
On Wed, 5 Feb 2014, Fengguang Wu wrote: Greetings, I got the below dmesg and the first bad commit is in upstream commit c65c1877bd6826ce0d9713d76e30a7bed8e49f38 Author: Peter Zijlstra pet...@infradead.org AuthorDate: Fri Jan 10 13:23:49 2014 +0100 Commit: Pekka Enberg

[V5 00/11] perf: New conditional branch filter

2014-02-05 Thread Anshuman Khandual
This patchset is the re-spin of the original branch stack sampling patchset which introduced new PERF_SAMPLE_BRANCH_COND branch filter. This patchset also enables SW based branch filtering support for book3s powerpc platforms which have PMU HW backed branch stack sampling

Re: [PATCH v2] slub: fix false-positive lockdep warning in free_partial()

2014-02-05 Thread Vladimir Davydov
On 02/05/2014 12:01 PM, David Rientjes wrote: On Wed, 5 Feb 2014, Vladimir Davydov wrote: Commit c65c1877bd68 (slub: use lockdep_assert_held) requires remove_partial() to be called with n-list_lock held, but free_partial() called from kmem_cache_close() on cache destruction does not follow

[PATCH v3] slub: fix false-positive lockdep warning in free_partial()

2014-02-05 Thread Vladimir Davydov
Commit c65c1877bd68 (slub: use lockdep_assert_held) requires remove_partial() to be called with n-list_lock held, but free_partial() called from kmem_cache_close() on cache destruction does not follow this rule, leading to a warning: WARNING: CPU: 0 PID: 2787 at mm/slub.c:1536

Re: [PATCH 2/4] power_supply: Introduce generic psy charging driver

2014-02-05 Thread Jenny Tc
On Tue, Feb 04, 2014 at 12:36:30PM +0100, Pavel Machek wrote: +struct psy_charger_context { + bool is_usb_cable_evt_reg; + int psyc_cnt; + int batt_status; + /*cache battery and charger properties */ Comment coding style. Please run you patches through checkpatch. checkpatch

[PATCH v12 2/9] Add new func _install_special_mapping() to mmap.c

2014-02-05 Thread stefani
From: Stefani Seibold stef...@seibold.net The _install_special_mapping() is the new base function for install_special_mapping(). This function will return a pointer of the created VMA or a error code in an ERR_PTR() This new function will be needed by the for the vdso 32 bit support to map the

[PATCH v12 7/9] introduce VVAR marco for vdso32

2014-02-05 Thread stefani
From: Stefani Seibold stef...@seibold.net This patch revamp the vvar.h for introduce the VVAR macro for vdso32. Signed-off-by: Stefani Seibold stef...@seibold.net --- arch/x86/include/asm/vvar.h | 32 +--- 1 file changed, 21 insertions(+), 11 deletions(-) diff --git

[PATCH v12 9/9] Add 32 bit VDSO time support for 64 bit kernel

2014-02-05 Thread stefani
From: Stefani Seibold stef...@seibold.net This patch add the VDSO time support for the IA32 Emulation Layer. Due the nature of the kernel headers and the LP64 compiler where the size of a long and a pointer differs against a 32 bit compiler, there is some type hacking necessary. The

[PATCH v12 5/9] replace VVAR(vsyscall_gtod_data) by gtod macro

2014-02-05 Thread stefani
From: Stefani Seibold stef...@seibold.net There a currently more than 30 users of the gtod macro, so replace the last VVAR(vsyscall_gtod_data) by gtod macro. Signed-off-by: Stefani Seibold stef...@seibold.net --- arch/x86/vdso/vclock_gettime.c | 6 +++--- 1 file changed, 3 insertions(+), 3

[PATCH v12 6/9] cleanup __vdso_gettimeofday

2014-02-05 Thread stefani
From: Stefani Seibold stef...@seibold.net This patch do a little cleanup for the __vdso_gettimeofday() function. It kick out an unneeded ret local variable and makes the code faster if only the timezone is needed. Signed-off-by: Stefani Seibold stef...@seibold.net ---

[PATCH v12 1/9] Make vsyscall_gtod_data handling x86 generic

2014-02-05 Thread stefani
From: Stefani Seibold stef...@seibold.net This patch move the vsyscall_gtod_data handling out of vsyscall_64.c into an additonal file vsyscall_gtod.c to make the functionality available for x86 32 bit kernel. It also adds a new vsyscall_32.c which setup the VVAR page. Signed-off-by: Stefani

[PATCH v12 3/9] revamp vclock_gettime.c

2014-02-05 Thread stefani
From: Stefani Seibold stef...@seibold.net This intermediate patch revamps the vclock_gettime.c by moving some functions around. It is only for spliting purpose, to make whole the 32 bit vdso timer patch easier to review. Signed-off-by: Stefani Seibold stef...@seibold.net ---

[PATCH v12 4/9] vclock_gettime.c __vdso_clock_gettime cleanup

2014-02-05 Thread stefani
From: Stefani Seibold stef...@seibold.net This patch is a small code cleanup for the __vdso_clock_gettime() function. It removes the unneeded return values from do_monotonic_coarse() and do_realtime_coarse() and add a fallback label for doing the kernel gettimeofday() system call.

Re: [PATCH 1/3] ath10k: Get rid of superfluous call to pci_disable_msi()

2014-02-05 Thread Kalle Valo
Alexander Gordeev agord...@redhat.com writes: On Tue, Feb 04, 2014 at 08:32:12PM +0200, Kalle Valo wrote: Alexander Gordeev agord...@redhat.com writes: I don't understand how this is superfluous. When I read the documentation for pci_enable_msi_block() it states that if it can't allocate

[PATCH v12 0/9] Add 32 bit VDSO time function support

2014-02-05 Thread stefani
From: Stefani Seibold stef...@seibold.net This patch add the functions vdso_gettimeofday(), vdso_clock_gettime() and vdso_time() to the 32 bit VDSO. The reason to do this was to get a fast reliable time stamp. Many developers uses TSC to get a fast time stamp, without knowing the pitfalls. VDSO

[PATCH v12 8/9] Add 32 bit VDSO time support for 32 bit kernel

2014-02-05 Thread stefani
From: Stefani Seibold stef...@seibold.net This patch add the time support for 32 bit a VDSO to a 32 bit kernel. For 32 bit programs running on a 32 bit kernel, the same mechanism is used as for 64 bit programs running on a 64 bit kernel. Signed-off-by: Stefani Seibold stef...@seibold.net ---

Re: [PATCH v3] slub: fix false-positive lockdep warning in free_partial()

2014-02-05 Thread David Rientjes
On Wed, 5 Feb 2014, Vladimir Davydov wrote: Commit c65c1877bd68 (slub: use lockdep_assert_held) requires remove_partial() to be called with n-list_lock held, but free_partial() called from kmem_cache_close() on cache destruction does not follow this rule, leading to a warning: WARNING:

Re: [3.14-rc1] cirrus driver problem (qemu)

2014-02-05 Thread Sabrina Dubroca
2014-02-05, 14:50:18 +1000, Dave Airlie wrote: On Wed, Feb 5, 2014 at 8:53 AM, Sabrina Dubroca s...@queasysnail.net wrote: 2014-02-04, 13:20:54 +1000, Dave Airlie wrote: On Tue, Feb 4, 2014 at 1:34 AM, Sabrina Dubroca s...@queasysnail.net wrote: When I boot 3.14-rc1 in qemu, I get the

Re: [PATCH 01/04] PCI: rcar: Register each instance independently

2014-02-05 Thread Ben Dooks
On 05/02/14 06:52, Magnus Damm wrote: From: Magnus Damm d...@opensource.se Convert the code to allow per-device probe() like other device drivers. This also delays driver registration due to change from subsys_initcall() to regular module_platform_driver(). Signed-off-by: Magnus Damm

Re: [PATCH 00/04] PCI: rcar: Driver model and physical address space update

2014-02-05 Thread Ben Dooks
On 05/02/14 06:52, Magnus Damm wrote: PCI: rcar: Driver model and physical address space update [PATCH 01/04] PCI: rcar: Register each instance independently [PATCH 02/04] PCI: rcar: Break out window size handling [PATCH 03/04] PCI: rcar: Add DMABOUNCE support [PATCH 04/04] PCI: rcar: Enable

[PATCH v2] ARM: at91: add Atmel's SAMA5D3 Xplained board

2014-02-05 Thread Nicolas Ferre
Add DT file for new SAMA5D3 Xpained board. This board is based on Atmel's SAMA5D36 Cortex-A5 SoC. Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com --- arch/arm/boot/dts/Makefile | 1 + arch/arm/boot/dts/at91-sama5d3_xplained.dts | 233 2 files

Re: [PATCH 01/04] PCI: rcar: Register each instance independently

2014-02-05 Thread Magnus Damm
On Wed, Feb 5, 2014 at 5:02 PM, Geert Uytterhoeven ge...@linux-m68k.org wrote: On Wed, Feb 5, 2014 at 7:52 AM, Magnus Damm magnus.d...@gmail.com wrote: +static int rcar_pci_probe(struct platform_device *pdev) { struct resource *cfg_res, *mem_res; struct rcar_pci_priv *priv;

[PATCH v2 3/4] clk: at91: fix programmable clk irq handling

2014-02-05 Thread Jean-Jacques Hiblot
The PCKRDY bit is not set until the system clock is enabled. This patch moves the management of the ready status in the system clock driver. Signed-off-by: Boris BREZILLON b.brezil...@overkiz.com Signed-off-by: Jean-Jacques Hiblot jjhib...@traphandler.com --- drivers/clk/at91/clk-programmable.c

[PATCH v2 0/4] clk: at91: better support for the PCKs

2014-02-05 Thread Jean-Jacques Hiblot
This serie implements a better support for the Programmable Clocks. The first two patch are related to changing the rate of the PCKs. The 3rd patch is a fix to handle properly the PCKRDY interrupt. The last patch is a small optimzation/simplification of the determine_rate algorithm for the PCK.

[PATCH v2 4/4] clk: at91: optimization of the determine_rate callback

2014-02-05 Thread Jean-Jacques Hiblot
Signed-off-by: Boris BREZILLON b.brezil...@overkiz.com Signed-off-by: Jean-Jacques Hiblot jjhib...@traphandler.com --- drivers/clk/at91/clk-programmable.c | 38 - 1 file changed, 8 insertions(+), 30 deletions(-) diff --git a/drivers/clk/at91/clk-programmable.c

[PATCH v2 2/4] clk: at91: propagate rate change on system clks

2014-02-05 Thread Jean-Jacques Hiblot
From: Boris BREZILLON b.brezil...@overkiz.com System clks are just gates, and thus do not provide any rate operations. Authorize clk rate change to be propagated to system clk parents. Signed-off-by: Boris BREZILLON b.brezil...@overkiz.com --- drivers/clk/at91/clk-system.c | 3 ++- 1 file

[PATCH v2 1/4] clk: at91: replace prog clk round_rate with determine_rate

2014-02-05 Thread Jean-Jacques Hiblot
From: Boris BREZILLON b.brezil...@overkiz.com Implement the determine_rate callback to choose the best parent clk that fulfills the requested rate. Signed-off-by: Boris BREZILLON b.brezil...@overkiz.com --- drivers/clk/at91/clk-programmable.c | 56 ++--- 1 file

Re: [patch v2] mm, page_alloc: make first_page visible before PageTail

2014-02-05 Thread Michal Hocko
On Tue 04-02-14 16:22:53, David Rientjes wrote: Commit bf6bddf1924e (mm: introduce compaction and migration for ballooned pages) introduces page_count(page) into memory compaction which dereferences page-first_page if PageTail(page). Introduce a store memory barrier to ensure page-first_page

Re: [PATCH 01/04] PCI: rcar: Register each instance independently

2014-02-05 Thread Magnus Damm
On Wed, Feb 5, 2014 at 5:29 PM, Ben Dooks ben.do...@codethink.co.uk wrote: On 05/02/14 06:52, Magnus Damm wrote: From: Magnus Damm d...@opensource.se Convert the code to allow per-device probe() like other device drivers. This also delays driver registration due to change from

Re: [PATCH] clk: respect the clock dependencies in of_clk_init

2014-02-05 Thread Boris BREZILLON
Hi Greg, On 04/02/2014 23:59, Gregory CLEMENT wrote: Until now the clock providers were initialized in the order found in the device tree. This led to have the dependencies between the clocks not respected: children clocks could be initialized before their parent clocks. Instead of forcing

Re: [PATCH 1/3] ath10k: Get rid of superfluous call to pci_disable_msi()

2014-02-05 Thread Alexander Gordeev
On Wed, Feb 05, 2014 at 10:21:28AM +0200, Kalle Valo wrote: Is it ok for me to take these patches to my ath.git tree or would you prefer to route them some other way? Yeah, Bjorn has indicated he would pull it to his tree. I get it you are fine with 2/3 and 3/3? -- Regards, Alexander Gordeev

Re: [PATCH 1/3] ath10k: Get rid of superfluous call to pci_disable_msi()

2014-02-05 Thread Kalle Valo
Alexander Gordeev agord...@redhat.com writes: On Wed, Feb 05, 2014 at 10:21:28AM +0200, Kalle Valo wrote: Is it ok for me to take these patches to my ath.git tree or would you prefer to route them some other way? Yeah, Bjorn has indicated he would pull it to his tree. Ok, I'll drop these

Re: [PATCH v2 4/4] clk: at91: optimization of the determine_rate callback

2014-02-05 Thread Boris BREZILLON
Hi JJ, I guess you're commit message is wrong: you're optimizing set_rate not determine_rate. Best Regards, Boris On 05/02/2014 09:37, Jean-Jacques Hiblot wrote: Signed-off-by: Boris BREZILLON b.brezil...@overkiz.com Signed-off-by: Jean-Jacques Hiblot jjhib...@traphandler.com ---

Re: [PATCH] backlight: add PWM dependencies

2014-02-05 Thread Linus Walleij
On Wed, Feb 5, 2014 at 6:01 AM, Jingoo Han jg1@samsung.com wrote: On Tuesday, February 04, 2014 9:57 PM, Linus Walleij wrote: In some compilations the LM3630A and LP855X backlight drivers fail like this: drivers/built-in.o: In function `lm3630a_pwm_ctrl':

Re: [PATCH 00/04] PCI: rcar: Driver model and physical address space update

2014-02-05 Thread Magnus Damm
Hi Ben, On Wed, Feb 5, 2014 at 5:33 PM, Ben Dooks ben.do...@codethink.co.uk wrote: On 05/02/14 06:52, Magnus Damm wrote: PCI: rcar: Driver model and physical address space update [PATCH 01/04] PCI: rcar: Register each instance independently [PATCH 02/04] PCI: rcar: Break out window size

Re: [PATCH] perf tools: Handle PERF_RECORD_HEADER_EVENT_TYPE properly

2014-02-05 Thread Jiri Olsa
On Wed, Feb 05, 2014 at 06:55:52AM +0100, Ingo Molnar wrote: * Jiri Olsa jo...@redhat.com wrote: We removed event types from data file in following commits: 6065210 perf tools: Remove event types framework completely 44b3c57 perf tools: Remove event types from perf data file We

[PATCH] ARM: OMAP3+: DPLL: stop reparenting to same parent if already done

2014-02-05 Thread Nishanth Menon
omap3_noncore_dpll_set_rate forces a reparent to the same clk_ref for every call that takes place. This is an can be done only if a change is detected. Signed-off-by: Nishanth Menon n...@ti.com --- arch/arm/mach-omap2/dpll3xxx.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

Re: [PATCH 1/6] i2c: bcm-kona: register with subsys_initcall

2014-02-05 Thread Wolfram Sang
On Tue, Feb 04, 2014 at 07:19:07AM -0500, Matt Porter wrote: Voltage regulators are needed very early due to deferred probe being incompatible with built-in USB gadget drivers. What does it need to fix those instead? signature.asc Description: Digital signature

Re: [PATCH v3 4/5] ASoC: tda998x: adjust the audio hw parameters from EDID

2014-02-05 Thread Jean-Francois Moine
On Tue, 4 Feb 2014 18:06:25 + Mark Brown broo...@kernel.org wrote: On Mon, Jan 27, 2014 at 09:48:54AM +0100, Jean-Francois Moine wrote: + /* change the snd_soc_pcm_stream values of the driver */ + stream-rates = rate_mask; + stream-channels_max =

Re: [PATCH 04/22] perf tools: Add --list report option

2014-02-05 Thread Jiri Olsa
On Wed, Feb 05, 2014 at 10:50:36AM +0900, Namhyung Kim wrote: On Sun, 2 Feb 2014 22:38:52 +0100, Jiri Olsa wrote: Adding --list report option to display entries sequentialy: $ perf report --list --stdio ... 0.00% 13151.543527 +00.00 ls [kernel.kallsyms]

Re: [RFC 00/22] perf tools: Display tracepoint enahncements

2014-02-05 Thread Jiri Olsa
On Wed, Feb 05, 2014 at 10:40:42AM +0900, Namhyung Kim wrote: On Sun, 2 Feb 2014 22:45:50 +0100, Jiri Olsa wrote: On Sun, Feb 02, 2014 at 10:38:48PM +0100, Jiri Olsa wrote: hi, sending out tracepoint (mostly) events display enahncements. forgot to mention.. the branch is in here:

Re: [RFC PATCH] net: wireless: move regulatory timeout work to power efficient workqueue

2014-02-05 Thread Stanislaw Gruszka
Hi On Fri, Jan 31, 2014 at 04:35:31AM -0500, Tejun Heo wrote: On Fri, Jan 31, 2014 at 10:21:24AM +0100, Johannes Berg wrote: I'm not sure if this is part of a larger patchset actually adding that system_power_efficient_wq, but maybe it'd be better to expose a function as an API rather than

Re: [alsa-devel] [PATCH v3 4/5] ASoC: tda998x: adjust the audio hw parameters from EDID

2014-02-05 Thread Lars-Peter Clausen
On 02/05/2014 10:11 AM, Jean-Francois Moine wrote: On Tue, 4 Feb 2014 18:06:25 + Mark Brown broo...@kernel.org wrote: On Mon, Jan 27, 2014 at 09:48:54AM +0100, Jean-Francois Moine wrote: + /* change the snd_soc_pcm_stream values of the driver */ + stream-rates

[tip:irq/urgent] genirq: Generic irq chip requires IRQ_DOMAIN

2014-02-05 Thread tip-bot for Nitin A Kamble
Commit-ID: 923fa4ea382f592dee2ba3b205befb90cbddf3af Gitweb: http://git.kernel.org/tip/923fa4ea382f592dee2ba3b205befb90cbddf3af Author: Nitin A Kamble nitin.a.kam...@intel.com AuthorDate: Thu, 30 Jan 2014 16:50:10 -0800 Committer: Thomas Gleixner t...@linutronix.de CommitDate: Wed, 5 Feb

RE: [RFCv2 00/10] xhci: re-work command queue management

2014-02-05 Thread David Laight
From: Dan Williams Adding another list that will have its own set of bugs seems retrograde top me. What bugs? Please be specific. The problem to be addressed is not the allocation of commands, but that timeouts of one command eat the timeout periods of subsequent commands. I'm

Re: [RFC PATCH] net: wireless: move regulatory timeout work to power efficient workqueue

2014-02-05 Thread Tejun Heo
Hello, On Wed, Feb 05, 2014 at 10:17:42AM +0100, Stanislaw Gruszka wrote: What are selection criteria when choosing between system_wq or system_power_efficient_wq on drivers ? IOW if I would be writing a new driver which workqueue should I use and when ? Yeah, it's a bit ad-hoc at the moment.

Re: [PATCH 00/04] PCI: rcar: Driver model and physical address space update

2014-02-05 Thread Ben Dooks
On 05/02/14 09:00, Magnus Damm wrote: Hi Ben, [snip] I think we should try to pick out the stuff that is ready to be merged first. I think these patches may require a bit of time before people start looking at them. I don't mind resending in the future. To be honest, I have not been paying

Re: [PATCH 09/10] watchdog: xilinx: Add missing binding

2014-02-05 Thread Michal Simek
On 02/04/2014 08:27 PM, Arnd Bergmann wrote: On Monday 03 February 2014, Michal Simek wrote: On 02/03/2014 04:32 PM, Arnd Bergmann wrote: On Monday 03 February 2014 16:13:47 Michal Simek wrote: Intention wasn't to fix binding but document current one which is in mainline for a long time.

Re: [PATCH] security: select correct default LSM_MMAP_MIN_ADDR on arm on arm64

2014-02-05 Thread Eric Paris
Acked-by: Eric Paris epa...@redhat.com On Tue, Feb 4, 2014 at 4:38 AM, Will Deacon will.dea...@arm.com wrote: On Tue, Feb 04, 2014 at 02:15:32AM +, Colin Cross wrote: Binaries compiled for arm may run on arm64 if CONFIG_COMPAT is selected. Set LSM_MMAP_MIN_ADDR to 32768 if ARM64 COMPAT

Re: [ANNOUNCE] 3.12.9-rt13

2014-02-05 Thread Nicholas Mc Guire
On Mon, 03 Feb 2014, Sebastian Andrzej Siewior wrote: Dear RT folks! I'm pleased to announce the v3.12.9-rt13 patch set. Changes since v3.12.9-rt12 ... - drop a migrate_disable() call in local_lock(). Clean up / optimization by Nicholas Mc Guire. Sorry - this one causes a build

Re: [PATCH v2 0/6] ARM: STi reset controller support

2014-02-05 Thread Philipp Zabel
Hi Srinivas, Am Montag, den 03.02.2014, 14:27 + schrieb srinivas.kandaga...@st.com: From: Srinivas Kandagatla srinivas.kandaga...@st.com Hi All, This patch series adds reset controller support for STi SOC series STiH415 and STiH416. It adds support for both power down reset and soft

Re: [PATCH 09/10] watchdog: xilinx: Add missing binding

2014-02-05 Thread Arnd Bergmann
On Wednesday 05 February 2014, Michal Simek wrote: I am not quite sure what you mean by reports to user space. If you mean to get timeout through ioctl for example - then yes it is working through standard watchdog ioctl interface and timeout is calculated from hardware setup. Yes, that is

Re: [PATCH v2] gpio-intel-mid: fix the incorrect return of idle callback

2014-02-05 Thread Linus Walleij
On Fri, Jan 31, 2014 at 10:08 PM, David Cohen david.a.co...@linux.intel.com wrote: From: xinhui.pan xinhuix@intel.com intel_gpio_runtime_idle should return correct error code if it do fail. make it more correct even though -EBUSY is the most possible return value. Signed-off-by: bo.he

Re: [PATCH] MAINTAINERS: Update drm/i915 git repo

2014-02-05 Thread Fengguang Wu
On Wed, Feb 05, 2014 at 08:54:15AM +0100, Daniel Vetter wrote: On Tue, Feb 4, 2014 at 8:37 PM, Daniel Vetter daniel.vet...@ffwll.ch wrote: On Tue, Feb 4, 2014 at 8:00 PM, Daniel Vetter daniel.vet...@ffwll.ch wrote: Moved to a common location so that Jani also can push to it, to avoid

Re: [PATCH 00/04] PCI: rcar: Driver model and physical address space update

2014-02-05 Thread Magnus Damm
On Wed, Feb 5, 2014 at 6:25 PM, Ben Dooks ben.do...@codethink.co.uk wrote: On 05/02/14 09:00, Magnus Damm wrote: Hi Ben, [snip] I think we should try to pick out the stuff that is ready to be merged first. I think these patches may require a bit of time before people start looking at

Re: [PATCH 09/10] watchdog: xilinx: Add missing binding

2014-02-05 Thread Michal Simek
On 02/05/2014 10:36 AM, Arnd Bergmann wrote: On Wednesday 05 February 2014, Michal Simek wrote: I am not quite sure what you mean by reports to user space. If you mean to get timeout through ioctl for example - then yes it is working through standard watchdog ioctl interface and timeout is

Re: [PATCH V3] net/dt: Add support for overriding phy configuration from device tree

2014-02-05 Thread Grant Likely
On Tue, 4 Feb 2014 12:39:41 -0800, Florian Fainelli f.faine...@gmail.com wrote: 2014-01-17 Matthew Garrett matthew.garr...@nebula.com: Some hardware may be broken in interesting and board-specific ways, such that various bits of functionality don't work. This patch provides a mechanism for

Re: [f2fs-dev] [PATCH 2/4] f2fs: handle dirty segments inside refresh_sit_entry

2014-02-05 Thread Changman Lee
Hi, I found some redundant code in your patch. I think that locate_dirty_segment(sbi, old_cursegno) equals to locate_dirty_segment(sbi, GET_SEGNO(sbi, new)) in refresh_sit_entry. Because *new_blkaddr is a block belonging to old_cursegno. How do you think? On í™”, 2014-01-28 at 14:54 +0900,

RE: [PATCH V3] net/dt: Add support for overriding phy configuration from device tree

2014-02-05 Thread David Laight
From: Florian Fainelli It would be good to explain exactly how your hardware is broken exactly. I really do not think that such a fine-grained setting where you could disable, e.g: 100BaseT_Full, but allow 100BaseT_Half to remain usable makes that much sense. In general, Gigabit might be

Re: perf trace: Initial beautifier for ioctl's 'cmd' arg

2014-02-05 Thread Ben Hutchings
Commit 78645cf3ed32860a3e83b8e35aa469f5b844a4ba introduced a build failure on powerpc and sparc as it redefines TCGETS. TCGETS doesn't actually appear to be used, but in any case these and many other architectures give it a different value than 0x5401. In fact they have mostly different

Re: perf trace: Initial beautifier for ioctl's 'cmd' arg

2014-02-05 Thread Ben Hutchings
Commit 78645cf3ed32860a3e83b8e35aa469f5b844a4ba introduced a build failure on powerpc and sparc as it redefines TCGETS. TCGETS doesn't actually appear to be used, but in any case these and many other architectures give it a different value than 0x5401. In fact they have mostly different

[PATCH] clk: add strict of_clk_init dependency check

2014-02-05 Thread Boris BREZILLON
The parent dependency check is only available on the first parent of a given clk. Add support for strict dependency check: all parents of a given clk must be initialized. Signed-off-by: Boris BREZILLON b.brezil...@overkiz.com --- Hello Gregory, This patch adds support for strict check on clk

Re: [PATCHv3 6/8] zram: report failed read and write stats

2014-02-05 Thread Sergey Senozhatsky
On (02/04/14 14:18), Andrew Morton wrote: Date: Tue, 4 Feb 2014 14:18:49 -0800 From: Andrew Morton a...@linux-foundation.org To: Sergey Senozhatsky sergey.senozhat...@gmail.com Cc: Minchan Kim minc...@kernel.org, Jerome Marchand jmarc...@redhat.com, Nitin Gupta ngu...@vflare.org,

Re: [PATCH] gpio: bcm281xx: Update MODULE_AUTHOR

2014-02-05 Thread Linus Walleij
On Mon, Feb 3, 2014 at 10:43 PM, Markus Mayer markus.ma...@linaro.org wrote: Add Broadcom's upstreaming mailing list address to MODULE_AUTHOR. Signed-off-by: Markus Mayer markus.ma...@linaro.org Hm OK not that this is used very much, and nothing to argue about so patch applied. However we do

Re: [PATCH v2 0/24] ACPI / hotplug / PCI: ACPIPHP updates and consolidation with ACPI core

2014-02-05 Thread Mika Westerberg
On Tue, Feb 04, 2014 at 12:12:26AM +0100, Rafael J. Wysocki wrote: As I said previously, I have found two concurrency-related bugs more in ACPIPHP and I needed to put fixes for those bugs at the top of the series (after previous [1-2/13] and the patch at

Re: [PATCH v2 5/5] of: document bindings for reserved-memory nodes

2014-02-05 Thread Grant Likely
On Tue, 04 Feb 2014 13:09:33 +0100, Marek Szyprowski m.szyprow...@samsung.com wrote: From: Grant Likely grant.lik...@linaro.org Reserved memory nodes allow for the reservation of static (fixed address) regions, or dynamically allocated regions for a specific purpose. [joshc: Based on

[PATCH] tty: Set correct tty name in 'active' sysfs attribute

2014-02-05 Thread Hannes Reinecke
The 'active' sysfs attribute should refer to the currently active tty devices the console is running on, not the currently active console. The console structure doesn't refer to any device in sysfs, only the tty the console is running on has. So we need to print out the tty names in 'active', not

Re: [PATCH 00/04] PCI: rcar: Driver model and physical address space update

2014-02-05 Thread Ben Dooks
On 05/02/14 09:40, Magnus Damm wrote: On Wed, Feb 5, 2014 at 6:25 PM, Ben Dooks ben.do...@codethink.co.uk wrote: On 05/02/14 09:00, Magnus Damm wrote: Hi Ben, [snip] I think we should try to pick out the stuff that is ready to be merged first. I think these patches may require a bit of

Re: [PATCH v2 4/5] ARM: init: add support for reserved memory defined by device tree

2014-02-05 Thread Grant Likely
On Tue, 04 Feb 2014 13:09:32 +0100, Marek Szyprowski m.szyprow...@samsung.com wrote: Enable reserved memory initialization from device tree. Cc: Benjamin Herrenschmidt b...@kernel.crashing.org Cc: Laura Abbott lau...@codeaurora.org Signed-off-by: Marek Szyprowski m.szyprow...@samsung.com

Re: [PATCH v4 1/2] iio:as3935: Add DT binding docs for AS3935 driver

2014-02-05 Thread Matt Ranostay
On Tue, Feb 4, 2014 at 11:24 PM, Jonathan Cameron ji...@kernel.org wrote: On February 5, 2014 4:43:35 AM GMT+00:00, Matt Porter mpor...@linaro.org wrote: On Tue, Feb 04, 2014 at 07:14:55PM -0800, Matt Ranostay Matt Ranostay wrote: Document compatible string, required and optional DT

RE: [PATCH v3 3/6] misc: fuse: Add efuse driver for Tegra

2014-02-05 Thread Jim Lin
Please ignore my comment. I will try to use exported tegra_fuse_readl(). -Original Message- From: Peter De Schrijver [mailto:pdeschrij...@nvidia.com] Sent: Monday, February 03, 2014 10:15 PM To: Jim Lin Cc: linux-arm-ker...@lists.infradead.org; linux-te...@vger.kernel.org;

[PATCH] perf,x86,p6: Add userspace RDPMC quirk for P6

2014-02-05 Thread Peter Zijlstra
Subject: perf,x86,p6: Add userspace RDPMC quirk for P6 From: Peter Zijlstra pet...@infradead.org Date: Wed Feb 5 11:17:46 CET 2014 P6 class machines can die hard when PCE gets enabled due to CPU errata. The safe way it so disable it by default and keep it disabled. See errata 26:

[PATCH] perf,x86: Fix Userspace RDPMC switch

2014-02-05 Thread Peter Zijlstra
Subject: perf,x86: Fix Userspace RDPMC switch From: Peter Zijlstra pet...@infradead.org Date: Wed Feb 5 11:19:56 CET 2014 The current code forgets to change the CR4 state on the current CPU. User on_each_cpu() instead of smp_call_function(). Cc: fweis...@gmail.com Reported-by: Mark Davies

Re: [PATCH 3/4] ARM: dts: Add support of STid127 Soc.

2014-02-05 Thread Patrice Chotard
Hi Srinivas Thanks for reviewing, a V2 serie will be pushed with all required fixes. Patrice On 01/31/2014 01:50 PM, srinivas kandagatla wrote: Hi Patrice, On 30/01/14 14:55, Patrice CHOTARD wrote: From: Alexandre TORGUE alexandre.tor...@st.com The STid127 integrates all harware components

Re: [PATCH v3 8/8] ARM: dts: sun7i: Add ethernet alias for GMAC

2014-02-05 Thread Maxime Ripard
On Wed, Feb 05, 2014 at 12:43:18PM +0800, Chen-Yu Tsai wrote: On Tue, Feb 4, 2014 at 3:38 AM, Maxime Ripard maxime.rip...@free-electrons.com wrote: On Mon, Feb 03, 2014 at 11:32:26AM +0800, Chen-Yu Tsai wrote: U-Boot will insert MAC address into the device tree image. It looks up

Re: [PATCH v2 0/6] ARM: sunxi: Add driver for SD/MMC hosts found on allwinner sunxi SOCs

2014-02-05 Thread Maxime Ripard
Hi David, On Tue, Feb 04, 2014 at 08:24:13PM +0100, David Lanzendörfer wrote: Hello The following patchset adds support for the SD/MMC host found in the Allwinner SoCs. It contains all the necessary modifications for clock environment and also the device tree script modification which add

Re: [PATCH 11/18] extcon: max14577: Add max14577 prefix to muic_irqs

2014-02-05 Thread Krzysztof Kozlowski
On Wed, 2014-02-05 at 09:47 +0900, Chanwoo Choi wrote: Hi Krzysztof, Following patch has conflict on extcon-next branch(Linus 3.14-rc1) when apply patchset by using git am. [PATCH 11/18] extcon: max14577: Add max14577 prefix to muic_irqs [PATCH 12/18] extcon: max14577: Choose muic_irqs

Re: [PATCH 05/18] mfd: max14577: Use of_match_ptr() in i2c_driver

2014-02-05 Thread Krzysztof Kozlowski
On Mon, 2014-02-03 at 09:30 +, Lee Jones wrote: Use of_match_ptr() in assignment of i2c_driver.of_match_table. Signed-off-by: Krzysztof Kozlowski k.kozlow...@samsung.com Cc: Kyungmin Park kyungmin.p...@samsung.com Cc: Marek Szyprowski m.szyprow...@samsung.com ---

Re: [PATCH v2 0/24] ACPI / hotplug / PCI: ACPIPHP updates and consolidation with ACPI core

2014-02-05 Thread Rafael J. Wysocki
On Wednesday, February 05, 2014 12:14:05 PM Mika Westerberg wrote: On Tue, Feb 04, 2014 at 12:12:26AM +0100, Rafael J. Wysocki wrote: As I said previously, I have found two concurrency-related bugs more in ACPIPHP and I needed to put fixes for those bugs at the top of the series (after

Re: [PATCH 07/18] mfd: max14577: Rename and add MAX14577 symbols to prepare for max77836

2014-02-05 Thread Krzysztof Kozlowski
Thanks for ACK. Dear Chanwoo, Mark and Dmitry, can you ACK this patch and also 8/18 and 9/18: http://thread.gmane.org/gmane.linux.kernel/1636654/focus=1636674 http://thread.gmane.org/gmane.linux.kernel/1636654/focus=1636674 ? Best regards, Krzysztof On Mon, 2014-02-03 at 09:38 +, Lee Jones

Re: [PATCH 09/18] mfd: max14577: Add muic suffix to regmap and irq_chip

2014-02-05 Thread Krzysztof Kozlowski
+Cc: Chanwoo, Mark and Dmitry for ACK-s on their subsystems. Krzysztof Kozlowski On Mon, 2014-02-03 at 09:45 +, Lee Jones wrote: This patch continues the preparation for adding support for max77836 device to existing max14577 driver. Add muic suffix to regmap and irq_data fields in

Re: [PATCH 08/18] mfd: max14577: Rename state container to maxim_core

2014-02-05 Thread Krzysztof Kozlowski
+Cc: Chanwoo, Mark and Dmitry for ACK-s on their subsystems. Krzysztof Kozlowski On Mon, 2014-02-03 at 09:42 +, Lee Jones wrote: This patch continues the preparation for adding support for max77836 device to existing max14577 driver. The patch renames the struct max14577 state

Re: [PATCH] ACPI hotplug: Fix panic on eject to ejected device

2014-02-05 Thread Rafael J. Wysocki
On Tuesday, February 04, 2014 05:48:28 PM Toshi Kani wrote: When an eject request is sent to an ejected ACPI device, the following panic occurs: ACPI: \_SB_.SCK3.CPU3: ACPI_NOTIFY_EJECT_REQUEST event BUG: unable to handle kernel NULL pointer dereference at 0070 IP:

Re: rtl8821ae.

2014-02-05 Thread Andrea Merello
Somehow I missed this patch. Do you know if John Linville picked it up? AFAIK no.. I'm not sure if the ANAPARAM3 register could handle a 16-bit write on an RTL8187B. To be cautious, I wrote and have tested the attached patch using a union. The patch includes a fix for an undefined symbol

Re: [PATCH v7 2/3] trivial: PM / Hibernate: clean up checkpatch in hibernate.c

2014-02-05 Thread Rafael J. Wysocki
On Tuesday, February 04, 2014 04:24:13 PM Sebastian Capella wrote: Quoting Rafael J. Wysocki (2014-02-04 16:28:13) On Tuesday, February 04, 2014 04:06:42 PM Sebastian Capella wrote: Quoting Rafael J. Wysocki (2014-02-04 16:03:29) On Tuesday, February 04, 2014 03:22:22 PM Sebastian

Re: Legacy pm ops to dev_pm_ops patches

2014-02-05 Thread Rafael J. Wysocki
On Tuesday, February 04, 2014 08:39:18 PM Shuah Khan wrote: Hi Rafael, Hi, I checked on the status of the legacy pm ops to dev_pm_ops conversion patches. Several went in. I have about 13 patches I would like to send. These patches are similar in nature. One of the issues I am having is

Re: [PATCH v4 1/2] iio:as3935: Add DT binding docs for AS3935 driver

2014-02-05 Thread Jonathan Cameron
On February 5, 2014 10:22:24 AM GMT+00:00, Matt Ranostay mranos...@gmail.com wrote: On Tue, Feb 4, 2014 at 11:24 PM, Jonathan Cameron ji...@kernel.org wrote: On February 5, 2014 4:43:35 AM GMT+00:00, Matt Porter mpor...@linaro.org wrote: On Tue, Feb 04, 2014 at 07:14:55PM -0800, Matt

Re: [PATCH v2 1/5] drivers: of: add initialization code for reserved memory

2014-02-05 Thread Grant Likely
On Tue, 04 Feb 2014 13:09:29 +0100, Marek Szyprowski m.szyprow...@samsung.com wrote: This patch adds device tree support for contiguous and reserved memory regions defined in device tree. Large memory blocks can be reliably reserved only during early boot. This must happen before the whole

Re: [PATCH v2 3/5] drivers: of: implement reserved-memory handling for cma

2014-02-05 Thread Grant Likely
On Tue, 04 Feb 2014 13:09:31 +0100, Marek Szyprowski m.szyprow...@samsung.com wrote: From: Josh Cartwright jo...@codeaurora.org Add support for handling 'shared-dma-pool' reserved-memory nodes using Contiguous Memory Allocator driver. Cc: Benjamin Herrenschmidt b...@kernel.crashing.org

Re: [PATCH 1/2] ALSA: hda - hdmi: introduce patch_nvhdmi()

2014-02-05 Thread Luis Henriques
On Mon, Feb 03, 2014 at 04:54:03PM -0700, Stephen Warren wrote: From: Anssi Hannula anssi.hann...@iki.fi (This is a backport of *part* of upstream 611885bc963a ALSA: hda - hdmi: Disallow unsupported 2ch remapping on NVIDIA codecs to stable 3.10 through 3.12. Later stable already contain all

Re: [PATCH] include/linux/kprobes.h: move all functions to their matched area

2014-02-05 Thread Chen Gang
On 02/05/2014 03:51 PM, Masami Hiramatsu wrote: (2014/02/05 14:27), Chen Gang wrote: For dummy functions, it is not a good idea to still use the input parameters (not a good idea to assume they are still effect). - let kprobe* static inline functions in CONFIG_KPROBES, dummy outside. -

Re: [RFC PATCH v2 03/14] of: mtd: add documentation for nand-ecc-level property

2014-02-05 Thread Grant Likely
On Wed, 29 Jan 2014 14:53:32 -0300, Ezequiel Garcia ezequiel.gar...@free-electrons.com wrote: On Wed, Jan 29, 2014 at 03:34:13PM +0100, Boris BREZILLON wrote: nand-ecc-level property statically defines NAND chip's ECC requirements. Signed-off-by: Boris BREZILLON b.brezillon@gmail.com

Re: [alsa-devel] [PATCH v3 4/5] ASoC: tda998x: adjust the audio hw parameters from EDID

2014-02-05 Thread Mark Brown
On Wed, Feb 05, 2014 at 10:19:22AM +0100, Lars-Peter Clausen wrote: On 02/05/2014 10:11 AM, Jean-Francois Moine wrote: So, in the CODEC, I don't see how I could update the parameters dictated by the EDID otherwise in changing the DAI driver parameters. The startup function is the right

Re: [slub] WARNING: CPU: 1 PID: 1 at mm/slub.c:992 deactivate_slab()

2014-02-05 Thread Fengguang Wu
[1.972466] [c1a6ac9c] kernel_init+0xc/0x170 I just checked 20140205 and it still does not have your patch and has the same problem: [1.093205] Unregister pv shared memory for cpu 0 [1.117174] [ cut here ] [1.118001] WARNING: CPU: 1 PID: 1 at mm/slub.c:1007

Re: [PATCH] security: select correct default LSM_MMAP_MIN_ADDR on arm on arm64

2014-02-05 Thread Catalin Marinas
On Tue, Feb 04, 2014 at 02:15:32AM +, Colin Cross wrote: Binaries compiled for arm may run on arm64 if CONFIG_COMPAT is selected. Set LSM_MMAP_MIN_ADDR to 32768 if ARM64 COMPAT to prevent selinux failures launching 32-bit static executables that are mapped at 0x8000. Signed-off-by:

Re: [PATCH 1/4] ARM: STi: add stid127 soc support

2014-02-05 Thread srinivas kandagatla
Hi Arnd, On 31/01/14 20:15, Arnd Bergmann wrote: On Friday 31 January 2014, srinivas kandagatla wrote: Sorry if I missed the initial review, but can you explain why this is needed to start with? On ST SoCs the default value for L2 AUX_CTRL register is 0x0, so we set the way-size explicit

<    5   6   7   8   9   10   11   12   13   14   >