RE: MIPS: Add MSI support for XLP9XX

2014-06-18 Thread David Laight
From: Dave Jones > On Tue, Jun 10, 2014 at 01:31:04AM +, Linux Kernel wrote: > > Gitweb: > http://git.kernel.org/linus/;a=commit;h=d66f3f0e10b49df8d0cc0d8eb5bf2ef9863a33cf > > Commit: d66f3f0e10b49df8d0cc0d8eb5bf2ef9863a33cf > > Parent: 1c98398662c9b4e2f03f64344f83dd6cb14e0420

Re: [PATCH] mm/vmscan.c: fix an implementation flaw in proportional scanning

2014-06-18 Thread Jerome Marchand
On 06/17/2014 06:55 AM, Chen Yucong wrote: > Via https://lkml.org/lkml/2013/4/10/897, we can know that the relative design > idea is to keep > > scan_target[anon] : scan_target[file] > == really_scanned_num[anon] : really_scanned_num[file] > > But we can find the following snippet in

Re: [PATCH 1/3] perf timechart: implement IO mode

2014-06-18 Thread Stanislav Fomichev
> > Can you somehow share your perf.data with me? I'll check what's going > > on. > > https://git.kernel.org/cgit/linux/kernel/git/namhyung/linux-perf.git/plain/tools/perf/perf.timechart.data?h=perf/tmp Hm, I don't see any issue with your data, I can see dd disk io and firefox polls. I attached

[PATCH 2/3] dma: rcar-audmapp: don't keep audmapp_slave_config for each channeles

2014-06-18 Thread Kuninori Morimoto
From: Kuninori Morimoto Current audmapp driver is keeping audmapp_slave_config for each channeles, but, nessasary information is only "chcr". Current style (= keeping audmapp_slave_config) is not good match for DT support. Keep "chcr" instead of audmapp_slave_config Signed-off-by: Kuninori

[PATCH 1/3] dma: rcar-audmapp: enable .set_slave

2014-06-18 Thread Kuninori Morimoto
From: Kuninori Morimoto Current .set_slave callback did nothing, since it assumed src/dst address come from platform settings. But, it isn't good match to DT probing. This patch enables .set_slave callback to this issue. Signed-off-by: Kuninori Morimoto --- drivers/dma/sh/rcar-audmapp.c |

[PATCH 3/3] dma: rcar-audmapp: add DT support

2014-06-18 Thread Kuninori Morimoto
From: Kuninori Morimoto This patch adds DT support to Audio DMAC peri peri driver. Signed-off-by: Kuninori Morimoto --- .../devicetree/bindings/dma/rcar-audmapp.txt | 30 + drivers/dma/sh/rcar-audmapp.c | 71 2 files changed, 87

[PATCH 0/3] dma: rcar-audmapp: add DT support

2014-06-18 Thread Kuninori Morimoto
Hi Vinod These patches add DT support to Renesas Audio DMAC peri peri driver. Kuninori Morimoto (3): dma: rcar-audmapp: enable .set_slave dma: rcar-audmapp: don't keep audmapp_slave_config for each channeles dma: rcar-audmapp: add DT support

Re: [RFC PATCH 1/4] memory: tegra124-emc: Add EMC driver

2014-06-18 Thread Peter De Schrijver
On Wed, Jun 18, 2014 at 12:35:27AM +0200, Thierry Reding wrote: > * PGP Signed by an unknown key > > On Tue, Jun 17, 2014 at 02:16:06PM +0200, Tomeu Vizoso wrote: > > On 06/16/2014 10:02 PM, Stephen Warren wrote: > > >On 06/16/2014 07:35 AM, Tomeu Vizoso wrote: > > >>+ > > >>+Child device nodes

Re: [PATCHv4 4/4] ARM: dts: Fix wrong compatible string for Exynos3250 ADC

2014-06-18 Thread Chanwoo Choi
Hi Tomasz, On 06/18/2014 05:37 PM, Tomasz Figa wrote: > Hi Chanwoo, > > On 18.06.2014 04:21, Chanwoo Choi wrote: >> This patchset fix wrong compatible string for Exynos3250 ADC. Exynos3250 SoC >> need to control only special clock for ADC. Exynos SoC except for Exynos3250 >> has not included

[PATCH v5 00/11] Add DRM for stih4xx platforms

2014-06-18 Thread Benjamin Gaignard
This series of patches add the support of DRM/KMS drivers for STMicroelectronics chipsets stih416 and stih407. version 5: - Rework sti_drm_drv probes functions to support deferred probe. This allow hdmi to delayed framebuffer creation until I2C is available. - Add ops

[PATCH v5 02/11] drm: sti: add VTG driver

2014-06-18 Thread Benjamin Gaignard
Video Time Generator drivers are used to synchronize the compositor and tvout hardware IPs by providing line count, sample count, synchronization signals (HSYNC, VSYNC) and top and bottom fields indication. VTG are used by pair for each data path (main or auxiliary) one for master and one for

[PATCH v5 05/11] drm: sti: add HDA driver

2014-06-18 Thread Benjamin Gaignard
Add driver to support analog TV ouput. HDA driver is mapped on drm_bridge and drm_connector structures. Signed-off-by: Benjamin Gaignard --- drivers/gpu/drm/sti/Makefile | 3 +- drivers/gpu/drm/sti/sti_hda.c | 790 ++ 2 files changed, 792

[PATCH v5 04/11] drm: sti: add HDMI driver

2014-06-18 Thread Benjamin Gaignard
Add driver for HDMI output. HDMI PHY registers are mixed into HDMI device registers and their is only one IRQ for all this hardware block. That is why PHYs aren't using phy framework but only a thin hdmi_phy_ops structure with start and stop functions. HDMI driver is mapped on drm_bridge and

[PATCH v5 11/11] drm: sti: Add DRM driver itself

2014-06-18 Thread Benjamin Gaignard
Make the link between all the hardware drivers and DRM/KMS interface. Create the driver itself and make it register all the sub-components. Use GEM CMA helpers for buffer allocation. Signed-off-by: Benjamin Gaignard --- drivers/gpu/drm/sti/Kconfig | 8 + drivers/gpu/drm/sti/Makefile

Re: [PATCHv4 3/4] iio: devicetree: Add DT binding documentation for Exynos3250 ADC

2014-06-18 Thread Chanwoo Choi
Hi Tomasz, On 06/18/2014 05:35 PM, Tomasz Figa wrote: > Hi Chanwoo, > > On 18.06.2014 04:21, Chanwoo Choi wrote: >> This patch add DT binding documentation for Exynos3250 ADC IP. Exynos3250 has >> special clock ('sclk_tsadc') for ADC which provide clock to internal ADC. >> >> Signed-off-by:

[PATCH v5 06/11] drm: sti: add TVOut driver

2014-06-18 Thread Benjamin Gaignard
TVout hardware block is responsible to dispatch the data flow coming from compositor block to any of the output (HDMI or Analog TV). It control when output are start/stop and configure according the require flow path. TVout is the parent of HDMI and HDA drivers and bind them at runtime. Tvout is

[PATCH v5 08/11] drm: sti: add VID layer

2014-06-18 Thread Benjamin Gaignard
VIDeo plug are one of the compositor input sub-devices. VID are dedicated to video inputs like YUV plans. Like GDP, VID are part of Compositor hardware block and use sti_layer structure to provide an abstraction for Compositor calls. Signed-off-by: Benjamin Gaignard ---

[PATCH v5 10/11] drm: sti: add Compositor

2014-06-18 Thread Benjamin Gaignard
Compositor control all the input sub-device (VID, GDP) and the mixer(s). It is the main entry point for composition. Layer interface is used to control the abstracted layers. Add debug in mixer and GDP Signed-off-by: Benjamin Gaignard --- drivers/gpu/drm/sti/Kconfig | 1 +

[PATCH v5 09/11] drm: sti: add Mixer

2014-06-18 Thread Benjamin Gaignard
Mixer hardware IP is responsible of mixing the different inputs layers. Z-order is managed by the mixer. We could 2 mixers: one for main path and one for auxillary path Mixers are part of Compositor hardware block Signed-off-by: Benjamin Gaignard --- drivers/gpu/drm/sti/Makefile| 1 +

[PATCH v5 07/11] drm: sti: add GDP layer

2014-06-18 Thread Benjamin Gaignard
Generic Display Pipeline are one of the compositor input sub-devices. GDP are dedicated to graphic input like RGB plans. GDP is part of Compositor hardware block which will be introduce later. A sti_layer structure is used to abstract GDP calls from Compositor. Signed-off-by: Benjamin Gaignard

[PATCH v5 03/11] drm: sti: add VTAC drivers

2014-06-18 Thread Benjamin Gaignard
Video Traffic Advance Communication Rx and Tx drivers are designed for inter-die communication. Signed-off-by: Benjamin Gaignard --- drivers/gpu/drm/sti/Makefile | 3 +- drivers/gpu/drm/sti/sti_vtac.c | 211 + 2 files changed, 213 insertions(+), 1

Re: [PATCH 09/24] ARM64:ILP32: Use the same syscall names as LP64.

2014-06-18 Thread Catalin Marinas
On Sat, May 24, 2014 at 12:02:04AM -0700, Andrew Pinski wrote: > diff --git a/arch/arm64/include/uapi/asm/unistd.h > b/arch/arm64/include/uapi/asm/unistd.h > index 1caadc2..067eab0 100644 > --- a/arch/arm64/include/uapi/asm/unistd.h > +++ b/arch/arm64/include/uapi/asm/unistd.h > @@ -1,5 +1,6 @@ >

[PATCH v5 01/11] drm: sti: add bindings for DRM driver

2014-06-18 Thread Benjamin Gaignard
Add DRM/KMS driver bindings documentation. Describe the required properties for each of the hardware IPs drivers. Signed-off-by: Benjamin Gaignard --- .../devicetree/bindings/gpu/st,stih4xx.txt | 189 + drivers/gpu/drm/sti/NOTES | 58 +++

[GIT] Add Serge Hallyn as security subsystem co-maintainer

2014-06-18 Thread James Morris
Please pull. The following changes since commit e99cfa2d0634881b8a41d56c48b5956b9a3ba162: Merge tag 'dt-fixes-for-3.16' of git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux (2014-06-17 14:25:09 -1000) are available in the git repository at:

Re: [PATCH 11/21] mfd: use devm_irq_of_parse_and_map() where appropriate

2014-06-18 Thread Lee Jones
On Tue, 17 Jun 2014, Nikita Yushchenko wrote: > 17.06.2014 19:12, Lee Jones пишет: > >>From: Nikita Yushchenko > >> > >>This avoids leak of IRQ mapping on error paths, and makes it possible > >>to use devm_request_irq() without facing unmap-while-handler-installed > >>issues. > >> >

Re: [PATCH v4 1/7] mfd: axp20x: add AXP221 PMIC support

2014-06-18 Thread Boris BREZILLON
On 18/06/2014 10:36, Lee Jones wrote: > On Tue, 17 Jun 2014, Boris BREZILLON wrote: > >> Add support for the AXP221 PMIC device to the existing AXP20x driver. >> >> The AXP221 defines a new set of registers, power supplies and regulators, >> but most of the API is similar to the AXP20x ones. >>

Re: [PATCH 24/28] Remove DEPRECATED

2014-06-18 Thread Paul Bolle
David, Koichi, On Mon, 2014-02-10 at 09:52 +0100, Richard Weinberger wrote: > Am 10.02.2014 09:49, schrieb Geert Uytterhoeven: > > On Sun, Feb 9, 2014 at 9:21 PM, Richard Weinberger wrote: > >> I assumed that every kernel developer is aware of that fact that > >> unreachable/dead code > >>

Re: Re: [RFT PATCH -next v3] [BUGFIX] kprobes: Fix "Failed to find blacklist" error on ia64 and ppc64

2014-06-18 Thread Masami Hiramatsu
(2014/06/18 16:56), Michael Ellerman wrote: > On Fri, 2014-06-06 at 15:38 +0900, Masami Hiramatsu wrote: >> Ping? >> >> I guess this should go to 3.16 branch, shouldn't it? > >>> diff --git a/arch/powerpc/include/asm/types.h >>> b/arch/powerpc/include/asm/types.h >>> index bfb6ded..8b89d65

Regression: firmware: Simplify directory creation + b43 = fails to build

2014-06-18 Thread Ronald
Dear kernel developers, Latest git HEAD (from Torvalds): CC drivers/base/firmware_class.o LD drivers/base/built-in.o MK_FW firmware/b43/ucode5.fw.gen.S /bin/sh: firmware/b43/ucode5.fw.gen.S: Bestand of map bestaat niet (file or directory does not exist, it should not have the

Re: [PATCH] net/cadence/macb: clear interrupts simply and correctly

2014-06-18 Thread Jongsung Kim
On 06/17/2014 04:54 PM, Nicolas Ferre wrote: Hi Nicolas, > On 17/06/2014 05:39, Jongsung Kim : >> On 06/17/2014 06:28 AM, Sören Brinkmann wrote: >>> Shouldn't it be sufficient to replace 'MACB_BIT(RCOMP) with >>> 'MACB_RX_INT_FLAGS' >>> to clear all the RX IRQ flags. >> >> I'm afraid not. >> >>

[PATCHv2 0/3] cpufreq: Use cpufreq-cpu0 driver for Exynos3250

2014-06-18 Thread Chanwoo Choi
This patchset use cpufreq-cpu0 driver to support Exynos3250 cpufreq. So, this patchset is based on following patchset[1] by Thomas Abraham. [1] http://www.spinics.net/lists/arm-kernel/msg339392.html Changes from v1: - Rebased on new patchset[1] by Thomas Abraham - Modify clk-cpu.c to support

[PATCHv2 1/3] clk: samsung: cpu: Add support for cpu clocks of Exynos3250

2014-06-18 Thread Chanwoo Choi
This patch add support for a new clock type for Exynos3250 CPU clock provider and modify little difference of DIV_CPU0 between Exynos4 and Exynos3250. Signed-off-by: Chanwoo Choi Acked-by: Kyungmin Park --- drivers/clk/samsung/clk-cpu.c | 31 +++ 1 file changed, 31

[PATCHv2 3/3] ARM: dts: Exynos: Add cpu clock table for Exynos3250

2014-06-18 Thread Chanwoo Choi
This patch add cpu clock table (CPU clock and voltage) to support generic cpufreq-cpu0 driver for Exynos3250. Signed-off-by: Chanwoo Choi Acked-by: Kyungmin Park --- arch/arm/boot/dts/exynos3250.dtsi | 15 +++ 1 file changed, 15 insertions(+) diff --git

[PATCHv2 2/3] clk: samsung: exynos3250: Use cpu-clock provider type to support cpufreq

2014-06-18 Thread Chanwoo Choi
This patch use cpu-clock provider type to support cpufreq for Exynos3250. The clock-exynos3250.c didn't add separate 'arm_clk' divider for 'div_core2'. The 'div_core2' can be represented as a cpu-clock type and then use 'div_core2' directly to change cpu clock. Signed-off-by: Chanwoo Choi

Re: [PATCHv4 4/4] ARM: dts: Fix wrong compatible string for Exynos3250 ADC

2014-06-18 Thread Tomasz Figa
Hi Chanwoo, On 18.06.2014 04:21, Chanwoo Choi wrote: > This patchset fix wrong compatible string for Exynos3250 ADC. Exynos3250 SoC > need to control only special clock for ADC. Exynos SoC except for Exynos3250 > has not included special clock for ADC. The exynos ADC driver can control > special

Re: [PATCH v4 1/7] mfd: axp20x: add AXP221 PMIC support

2014-06-18 Thread Lee Jones
On Tue, 17 Jun 2014, Boris BREZILLON wrote: > Add support for the AXP221 PMIC device to the existing AXP20x driver. > > The AXP221 defines a new set of registers, power supplies and regulators, > but most of the API is similar to the AXP20x ones. > The AXP20x irq chip definition is reused,

Re: [PATCH] pstore: Fix an overflow on 32-bit builds.

2014-06-18 Thread Matt Fleming
On Mon, 09 Jun, at 01:24:43PM, David Rientjes wrote: > On Mon, 9 Jun 2014, Andrzej Zaborowski wrote: > > > [resend] > > In generic_id the long int timestamp is multiplied by 10 and needs > > an explicit cast to u64. > > > > Without that the id in the resulting pstore filename is wrong and >

Re: [PATCHv4 3/4] iio: devicetree: Add DT binding documentation for Exynos3250 ADC

2014-06-18 Thread Tomasz Figa
Hi Chanwoo, On 18.06.2014 04:21, Chanwoo Choi wrote: > This patch add DT binding documentation for Exynos3250 ADC IP. Exynos3250 has > special clock ('sclk_tsadc') for ADC which provide clock to internal ADC. > > Signed-off-by: Chanwoo Choi > Acked-by: Kyungmin Park > --- >

Re: [linux-sunxi] Re: [PATCH v4 4/7] regulator: axp20x: reset probe data before each probe

2014-06-18 Thread Hans de Goede
Hi, On 06/18/2014 09:11 AM, Boris BREZILLON wrote: > > On 17/06/2014 22:44, Maxime Ripard wrote: >> On Tue, Jun 17, 2014 at 09:38:40AM +0200, Boris BREZILLON wrote: >>> The init_data and of_node fields of the axp2xx_matches tables are filled >>> at each device probe by the

Re: [PATCH v3 1/3] soc: devicetree: bindings: Add Qualcomm RPM DT binding

2014-06-18 Thread Srinivas Kandagatla
On 18/06/14 00:59, Stephen Boyd wrote: On 06/16/14 11:46, Bjorn Andersson wrote: diff --git a/Documentation/devicetree/bindings/soc/qcom/qcom,rpm.txt b/Documentation/devicetree/bindings/soc/qcom/qcom,rpm.txt new file mode 100644 index 000..0366533 --- /dev/null +++

Re: [PATCHv7 2/5] mailbox: Introduce framework for mailbox

2014-06-18 Thread Jassi Brar
On 18 June 2014 05:57, Kevin Hilman wrote: > Jassi Brar writes: > >> Introduce common framework for client/protocol drivers and >> controller drivers of Inter-Processor-Communication (IPC). >> >> Client driver developers should have a look at >> include/linux/mailbox_client.h to understand the

Re: [PATCH v2 06/10] mfd: Add driver for Maxim 77802 Power Management IC

2014-06-18 Thread Lee Jones
> >> +config MFD_MAX77802 > >> + tristate "Maxim Integrated MAX77802 PMIC Support" > >> + depends on I2C=y > >> + select MFD_CORE > >> + select REGMAP_I2C > >> + select REGMAP_IRQ > >> + select IRQ_DOMAIN > >> + help > >> +Say yes here to support for Maxim Integrated MAX77802. > >> +

Re: [RFT v5h printk: allow increasing the ring buffer depending on the number of CPUs

2014-06-18 Thread Petr Mládek
On Wed 2014-06-18 02:18:16, Luis R. Rodriguez wrote: > On Tue, Jun 17, 2014 at 04:52:01PM +0200, Petr Mládek wrote: > > On Mon 2014-06-16 17:37:44, Luis R. Rodriguez wrote: > > > From: "Luis R. Rodriguez" > > > diff --git a/kernel/printk/printk.c b/kernel/printk/printk.c > > > index

Re: [PATCH v2 16/20] mfd: sun6i-prcm: Add support for Allwinner A23 PRCM

2014-06-18 Thread Lee Jones
> The Allwinner A23 SoC has a PRCM unit like the previous A31 SoC. > The differences are the AR100 clock can no longer be modified, > the APB0 clock has different divisors, and some clock gates are > gone. > > This patch adds a compatible with a modified subdevice list for > the A23. > >

RE: [PATCH] ns: introduce getnspid syscall

2014-06-18 Thread chenhanx...@cn.fujitsu.com
> -Original Message- > From: mtk.linux.li...@gmail.com [mailto:mtk.linux.li...@gmail.com] On Behalf > Of > Michael Kerrisk > Sent: Wednesday, June 18, 2014 2:27 AM > To: Chen, Hanxiao/陈 晗霄 > Cc: containers; Linux Kernel; Richard Weinberger; Serge Hallyn; Oleg Nesterov; > David Howells;

RE: [PATCH] ns: introduce getnspid syscall

2014-06-18 Thread chenhanx...@cn.fujitsu.com
> -Original Message- > From: Pavel Emelyanov [mailto:xe...@parallels.com] > Sent: Tuesday, June 17, 2014 8:13 PM > To: Chen, Hanxiao/陈 晗霄 > Cc: contain...@lists.linux-foundation.org; linux-kernel@vger.kernel.org; > Andrew Morton; Eric W. Biederman; Serge Hallyn; Daniel P. Berrange; Oleg

Re: mips:allmodconfig build failure in 3.16-rc1 due to bpf_jit code

2014-06-18 Thread Markos Chandras
On 06/17/2014 08:38 PM, Alexei Starovoitov wrote: > On Tue, Jun 17, 2014 at 4:21 AM, Daniel Borkmann wrote: >> On 06/17/2014 01:09 PM, Markos Chandras wrote: >> ... >>> >>> Thanks for these instructions. I will try them myself once I find some >>> >>> time since I don't think bpf_jit for MIPS has

[PATCH 3/4] mm: page_alloc: Reset fair zone allocation policy when batch counts are expired

2014-06-18 Thread Mel Gorman
The fair zone allocation policy round-robins allocations between zones within a node to avoid age inversion problems during reclaim. If the first allocation fails, the batch counts is reset and a second attempt made before entering the slow path. One assumption made with this scheme is that

[PATCH 2/4] mm: pagemap: Avoid unnecessary overhead when tracepoints are deactivated

2014-06-18 Thread Mel Gorman
The LRU insertion and activate tracepoints take PFN as a parameter forcing the overhead to the caller. Move the overhead to the tracepoint fast-assign method to ensure the cost is only incurred when the tracepoint is active. Signed-off-by: Mel Gorman --- include/trace/events/pagemap.h | 16

Re: [PATCH RFC] mfd: syscon: Decouple syscon interface from syscon devices

2014-06-18 Thread Lee Jones
On Tue, 17 Jun 2014, Tomasz Figa wrote: > On 17.06.2014 17:42, Arnd Bergmann wrote: > > On Tuesday 17 June 2014 17:32:44 Tomasz Figa wrote: > >> Currently a syscon entity can be only registered directly through a > >> platform device that binds to a dedicated driver. However in certain use > >>

[PATCH v7 5/8] staging: lustre: lclient: lcommon_cl.c fixing coding style issues

2014-06-18 Thread Anil Belur
From: Anil Belur fixed: ERROR: do not initialise statics to 0 or NULL Signed-off-by: Anil Belur --- drivers/staging/lustre/lustre/lclient/lcommon_cl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/lustre/lustre/lclient/lcommon_cl.c

[PATCH v7 6/8] staging: lustre: lclient: lcommon_cl.c fixing coding style issues

2014-06-18 Thread Anil Belur
From: Anil Belur fixed: ERROR: inline keyword should sit between storage class and type Signed-off-by: Anil Belur --- drivers/staging/lustre/lustre/lclient/lcommon_cl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/lustre/lustre/lclient/lcommon_cl.c

[PATCH v7 7/8] staging: lustre: lclient: lcommon_cl.c fixing coding style issues

2014-06-18 Thread Anil Belur
From: Anil Belur fixed: WARNING: line over 80 characters, used a new variable 'size_index' to store the offset. Replaced "unsigned long" with "loff_t" type for 'cur_index'. Removed the parenthesis around the second part of the if statement following the '||' as its not required.

[PATCH v7 4/8] staging: lustre: lclient: lcommon_cl.c fixing coding style issues

2014-06-18 Thread Anil Belur
From: Anil Belur fixed: WARNING: Missing a blank line after declarations Signed-off-by: Anil Belur --- drivers/staging/lustre/lustre/lclient/lcommon_cl.c | 4 1 file changed, 4 insertions(+) diff --git a/drivers/staging/lustre/lustre/lclient/lcommon_cl.c

[PATCH v7 8/8] staging: lustre: lclient: lcommon_cl.c fixing coding style issues

2014-06-18 Thread Anil Belur
From: Anil Belur fixed: WARNING: suspect code indent for conditional statements (32, 32) Signed-off-by: Anil Belur --- drivers/staging/lustre/lustre/lclient/lcommon_cl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/lustre/lustre/lclient/lcommon_cl.c

[PATCH v7 1/8] staging: lustre: lclient: glimpse.c fixing coding style issues

2014-06-18 Thread Anil Belur
From: Anil Belur Fixed "ERROR: need consistent spacing around '+' (ctx:WxV)" Signed-off-by: Anil Belur --- drivers/staging/lustre/lustre/lclient/glimpse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/lustre/lustre/lclient/glimpse.c

[PATCH v7 2/8] staging: lustre: lclient: glimpse.c fixing coding style issues

2014-06-18 Thread Anil Belur
From: Anil Belur fixed "WARNING: labels should not be indented" Signed-off-by: Anil Belur --- drivers/staging/lustre/lustre/lclient/glimpse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/lustre/lustre/lclient/glimpse.c

[PATCH v7 3/8] staging: lustre: lclient: lcommon_misc.c fixing coding style issues

2014-06-18 Thread Anil Belur
From: Anil Belur fixed warning: * WARNING: min() should probably be min_t(__u32, desc.ld_tgt_count, LOV_MAX_STRIPE_COUNT) Signed-off-by: Anil Belur --- drivers/staging/lustre/lustre/lclient/lcommon_misc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[PATCH v7] staging: lustre: lclient: fixing coding style issues

2014-06-18 Thread Anil Belur
reworked patch 8/8 7/8 and 3/8, fixed changes recomemded by "andreas.dil...@intel.com" -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read

[PATCH 4/4] mm: page_alloc: Reduce cost of dirty zone balancing

2014-06-18 Thread Mel Gorman
When allocating a page cache page for writing the allocator makes an attempt to proportionally distribute dirty pages between populated zones. The call to zone_dirty_ok is more expensive than expected because of the number of vmstats it examines. This patch caches some of that information to

[PATCH 0/4] Improve sequential read throughput

2014-06-18 Thread Mel Gorman
IO performance since 3.0 has been a mixed bag. In many respects we are better and in some we are worse and one of those places is sequential read performance, particularly for higher numbers of threads. This is visible in a number of benchmarks but tiobench has been the one I looked at the closest

[PATCH 1/4] cfq: Increase default value of target_latency

2014-06-18 Thread Mel Gorman
The existing CFQ default target_latency results in very poor performance for larger numbers of threads doing sequential reads. While this can be easily described as a tuning problem for users, it is one that is tricky to detect. This patch the default on the assumption that people with access to

Re: [PATCH 05/28] Remove MPILIB_EXTRA

2014-06-18 Thread Paul Bolle
else ever find some time to look at this oneliner? > > Last time I asked about that part of the tree, Herbert said it should go > through James Morris' tree. CCed. > > http://lkml.kernel.org/r/20131112182746.ga22...@gondor.apana.org.au > > Unless akpm picks it up first

Re: [PATCH v4 3/4] ARM: DRA7: hwmod: Add ocp2scp3 and sata hwmods

2014-06-18 Thread Roger Quadros
On 04/23/2014 08:35 PM, Roger Quadros wrote: > From: Nikhil Devshatwar > > Add hwmods for ocp2scp3 and sata modules. > > [Roger Q] Clean up. > > CC: Benoit Cousson > CC: Paul Walmsley > Signed-off-by: Balaji T K > Signed-off-by: Nikhil Devshatwar > Signed-off-by: Roger Quadros Tested-by:

Re: [PATCH 1/2] mfd: rtsx: add dma transfer function

2014-06-18 Thread Lee Jones
On Mon, 16 Jun 2014, Ulf Hansson wrote: > On 16 June 2014 14:20, Lee Jones wrote: > >> From: Micky Ching > >> > >> rtsx driver using a single function for transfer data, dma map/unmap are > >> placed in one fix function. We need map/unmap dma in different place(for > >> mmc async driver), so

Re: [PATCH 1/1] drivers/net/wireless/rt2x00/rt2x00dev.c: remove null test before kfree

2014-06-18 Thread Helmut Schaa
Hi, On Tue, Jun 17, 2014 at 9:36 PM, Fabian Frederick wrote: > Fix checkpatch warning: > WARNING: kfree(NULL) is safe this check is probably not required Thanks Fabian. This should go through the wireless tree I guess, mind to send to linux-wirel...@vger.kernel.org? Helmut > Cc: Ivo van Doorn

Re: [PATCHv4 2/4] iio: adc: exynos_adc: Control special clock of ADC to support Exynos3250 ADC

2014-06-18 Thread Tomasz Figa
Hi Chanwoo, On 18.06.2014 04:20, Chanwoo Choi wrote: > This patch control special clock for ADC in Exynos series's FSYS block. > If special clock of ADC is registerd on clock list of common clk framework, > Exynos ADC drvier have to control this clock. > > Exynos3250/Exynos4/Exynos5 has 'adc'

Re: [PATCH] mfd: mc13xxx: Use regmap irq framework for interrupts

2014-06-18 Thread Lee Jones
On Wed, 18 Jun 2014, Alexander Shiyan wrote: > Tue, 17 Jun 2014 21:04:59 +0100 от Lee Jones : > > On Sat, 07 Jun 2014, Alexander Shiyan wrote: > > > > > This patch convert mc13xxx MFD driver to use regmap irq framework > > > for interrupt registration. > > > > > > Signed-off-by: Alexander

Re: [PATCH 01/10] mfd: cros_ec: Fix the comment on cros_ec_remove()

2014-06-18 Thread Lee Jones
On Mon, 16 Jun 2014, Doug Anderson wrote: > From: Bill Richardson > > This comment was incorrect, so update it. > > Signed-off-by: Bill Richardson > Signed-off-by: Simon Glass How many people did it take to write this patch? ;) Acked-by: Lee Jones > Signed-off-by: Doug Anderson > --- >

Re: [PATCH 0/6] powerpc/powernv: Applying it_page_shift to platform code

2014-06-18 Thread Alexey Kardashevskiy
On 06/06/2014 06:44 PM, Alexey Kardashevskiy wrote: > Here is what I got for powernv in order to support variable page size > in iommu_table. > > I am very uncertain about Patch #4 "Add @it_owner to iommu_table struct" > and wonder if there any better way to get PE from iommu_table. > > Please

Re: [PATCH v4 3/4] ARM: DRA7: hwmod: Add ocp2scp3 and sata hwmods

2014-06-18 Thread Roger Quadros
+ Rajendra, Nishant and Kevin. as you were mentioned in the discussion. cheers, -roger On 06/15/2014 06:33 AM, Paul Walmsley wrote: > On Fri, 13 Jun 2014, Paul Walmsley wrote: > >> Hi Roger, >> >> On Wed, 23 Apr 2014, Roger Quadros wrote: >> >>> From: Nikhil Devshatwar >>> >>> Add hwmods for

Re: [RFT PATCH -next v3] [BUGFIX] kprobes: Fix "Failed to find blacklist" error on ia64 and ppc64

2014-06-18 Thread Michael Ellerman
On Fri, 2014-06-06 at 15:38 +0900, Masami Hiramatsu wrote: > Ping? > > I guess this should go to 3.16 branch, shouldn't it? > > diff --git a/arch/powerpc/include/asm/types.h > > b/arch/powerpc/include/asm/types.h > > index bfb6ded..8b89d65 100644 > > --- a/arch/powerpc/include/asm/types.h > >

Re: [PATCH 02/10] mfd: cros_ec: IRQs for cros_ec should be optional

2014-06-18 Thread Lee Jones
On Mon, 16 Jun 2014, Doug Anderson wrote: > From: Bill Richardson > > Preparing the way for the LPC device, which is just a plaform_device without > interrupts. > > Signed-off-by: Bill Richardson > Signed-off-by: Doug Anderson > --- > drivers/mfd/cros_ec.c | 26 +- >

Re: [PATCHv4 1/4] iio: adc: exynos_adc: Add exynos_adc_ops structure to improve readability

2014-06-18 Thread Tomasz Figa
Hi Chanwoo, On 18.06.2014 04:20, Chanwoo Choi wrote: > This patchset add 'exynos_adc_ops' structure which includes some functions > to control ADC operation according to ADC version (v1 or v2). > > Signed-off-by: Chanwoo Choi > Acked-by: Kyungmin Park > --- > drivers/iio/adc/exynos_adc.c |

Re: [PATCH 03/10] mfd: cros_ec: Allow static din/dout buffers with cros_ec_register()

2014-06-18 Thread Lee Jones
On Mon, 16 Jun 2014, Doug Anderson wrote: > From: Bill Richardson > > The lower-level driver may want to provide its own buffers. If so, > there's no need to allocate new ones. This already happens to work > just fine (since we check for size of 0 and use devm allocation), but > it's good to

Re: [PATCH] deb-pkg: Fix for relative paths

2014-06-18 Thread Ilya Dryomov
On Tue, Jun 17, 2014 at 6:47 AM, Alexei Starovoitov wrote: > On Mon, Jun 16, 2014 at 7:18 AM, Michal Marek wrote: >> When $srctree or $objtree are relative paths, we cannot change directory >> and refer to them in the same subshell. Do the redirection outside of >> the subshell to fix this. >>

Re: [PATCH 04/10] mfd: cros_ec: Tweak struct cros_ec_device for clarity

2014-06-18 Thread Lee Jones
On Mon, 16 Jun 2014, Doug Anderson wrote: > From: Bill Richardson > > The members of struct cros_ec_device were improperly commented, and > intermixed the private and public sections. This is just cleanup to make it > more obvious what goes with what. > > [dianders: left lock in the structure

Re: [PATCH 05/10] mdf: cros_ec: Detect in-progress commands

2014-06-18 Thread Lee Jones
On Mon, 16 Jun 2014, Doug Anderson wrote: > From: Simon Glass > > Some commands take a while to execute. Use -EAGAIN to signal this to the > caller. > > Signed-off-by: Simon Glass > Signed-off-by: Doug Anderson > --- > drivers/mfd/cros_ec_spi.c | 6 ++ > 1 file changed, 6 insertions(+)

Re: [PATCH 06/10] mfd: cros_ec: Use struct cros_ec_command to communicate with the EC

2014-06-18 Thread Lee Jones
On Mon, 16 Jun 2014, Doug Anderson wrote: > From: Bill Richardson > > This is some internal structure reorganization / renaming to prepare > for future patches that will add a userspace API to cros_ec. There > should be no visible changes. > > Signed-off-by: Bill Richardson > Signed-off-by:

Re: [PATCH 07/10] mfd: cros_ec: cleanup: remove unused fields from struct cros_ec_device

2014-06-18 Thread Lee Jones
On Mon, 16 Jun 2014, Doug Anderson wrote: > From: Bill Richardson > > struct cros_ec_device has a superfluous "name" field. We can get all the > debugging info we need from the existing ec_name and phys_name fields, so > let's take out the extra field. > > Signed-off-by: Bill Richardson >

Re: [PATCH 08/10] mfd: cros_ec: cleanup: Remove EC wrapper functions

2014-06-18 Thread Lee Jones
> >> diff --git a/drivers/input/keyboard/cros_ec_keyb.c > >> b/drivers/input/keyboard/cros_ec_keyb.c > >> index 4083796..dc37b6b 100644 > >> --- a/drivers/input/keyboard/cros_ec_keyb.c > >> +++ b/drivers/input/keyboard/cros_ec_keyb.c > >> @@ -191,8 +191,18 @@ static void cros_ec_keyb_close(struct

Re: [PATCH] cpufreq: unlock when failing cpufreq_update_policy()

2014-06-18 Thread Viresh Kumar
On 18 June 2014 05:42, Aaron Plattner wrote: > Commit bd0fa9bb455d introduced a failure path to cpufreq_update_policy() if > cpufreq_driver->get(cpu) returns NULL. However, it jumps to the 'no_policy' > label, which exits without unlocking any of the locks the function acquired > earlier. This

Re: [PATCH v8] leds: USB: HID: Add support for MSI GT683R led panels

2014-06-18 Thread Johan Hovold
On Tue, Jun 17, 2014 at 07:41:44PM +0300, Janne Kanniainen wrote: > This driver adds support for USB controlled led panels that exists in > MSI GT683R laptop > > Changes in v2: > - sorted headers to alphabetic order > - using devm_kzalloc > - using BIT(n) > - using

Re: [PATCH 2/2] mmc: rtsx: add support for async request

2014-06-18 Thread Ulf Hansson
On 18 June 2014 03:17, micky wrote: > On 06/17/2014 03:45 PM, Ulf Hansson wrote: >> >> On 17 June 2014 03:04, micky wrote: >>> >>> On 06/16/2014 08:40 PM, Ulf Hansson wrote: On 16 June 2014 11:09, micky wrote: > > On 06/16/2014 04:42 PM, Ulf Hansson wrote: >>> >>> @@

Re: [PATCH 09/10] mfd: cros_ec: Check result code from EC messages

2014-06-18 Thread Lee Jones
On Tue, 17 Jun 2014, Doug Anderson wrote: > Simon, > > On Tue, Jun 17, 2014 at 8:43 PM, Simon Glass wrote: > >> diff --git a/drivers/mfd/cros_ec_spi.c b/drivers/mfd/cros_ec_spi.c > >> index 09ca789..4d34f1c 100644 > >> --- a/drivers/mfd/cros_ec_spi.c > >> +++ b/drivers/mfd/cros_ec_spi.c > >> @@

Re: [PATCH 10/10] mfd: cros_ec: ec_dev->cmd_xfer() returns number of bytes received from EC

2014-06-18 Thread Lee Jones
On Mon, 16 Jun 2014, Doug Anderson wrote: > From: Bill Richardson > > When communicating with the EC, the cmd_xfer() function should return the > number of bytes it received from the EC, or negative on error. > > Signed-off-by: Bill Richardson > Signed-off-by: Doug Anderson > --- >

Re: [PATCH 0/6] ARM: at91: more clocks fixes for 3.16

2014-06-18 Thread Boris BREZILLON
Hello, On 17/06/2014 18:41, Alexandre Belloni wrote: > Hi, > > This patch set fixes more issues with the clocks on AT91: > > The first patch define the slow crystal on the at91sam9261ek board > > The next patchs are moving all the clocks that were under the root under a > "clocks" node to be

Re: [PATCH 7/9] regulator: palmas: Add palmas_pmic_driver_data structure

2014-06-18 Thread Lee Jones
> >>Add palmas_pmic_driver_data structure. > >> > >>Signed-off-by: Keerthy > >>--- > >> include/linux/mfd/palmas.h | 25 + > >> 1 file changed, 25 insertions(+) > >> > >>diff --git a/include/linux/mfd/palmas.h b/include/linux/mfd/palmas.h > >>index 8d68452..70f0695

Re: commit 762380a "block: add notion of a chunk size for request merging" stops io on btrfs

2014-06-18 Thread Konstantinos Skarlatos
On 18/6/2014 5:11 πμ, Jens Axboe wrote: On 2014-06-17 14:35, Konstantinos Skarlatos wrote: Hi all, with 3.16-rc1 rsync stops writing to my btrfs filesystem and stays at a D+ state. git bisect showed that the problematic commit is: 762380ad9322951cea4ce9d24864265f9c66a916 is the first bad

RE: [PATCH v2 4/8] PCI: designware: add msi controller functions for v3.65 hw

2014-06-18 Thread Mohit KUMAR DCG
Hello Murali, > -Original Message- > From: Murali Karicheri [mailto:m-kariche...@ti.com] > Sent: Wednesday, June 11, 2014 12:21 AM > To: linux-arm-ker...@lists.infradead.org; linux-kernel@vger.kernel.org; > linux-...@vger.kernel.org; devicet...@vger.kernel.org; linux- >

RE: [PATCH v2 3/8] PCI: designware: update pcie core driver to work with dw hw version 3.65

2014-06-18 Thread Mohit KUMAR DCG
Hello Murali, > -Original Message- > From: Murali Karicheri [mailto:m-kariche...@ti.com] > Sent: Wednesday, June 11, 2014 12:21 AM > To: linux-arm-ker...@lists.infradead.org; linux-kernel@vger.kernel.org; > linux-...@vger.kernel.org; devicet...@vger.kernel.org; linux- >

Re: [PATCH v4 6/7] regulator: axp20x: make use of devm_regulator_set_register

2014-06-18 Thread Boris BREZILLON
On 17/06/2014 22:46, Maxime Ripard wrote: > On Tue, Jun 17, 2014 at 09:38:42AM +0200, Boris BREZILLON wrote: >> Make use of the devm_regulator_set_register instead of registering each >> regulator provided by the PMIC. >> >> This also solves a self dependency issue where one regulator of the PMIC

Re: [PATCH v4 4/7] regulator: axp20x: reset probe data before each probe

2014-06-18 Thread Boris BREZILLON
On 17/06/2014 22:44, Maxime Ripard wrote: > On Tue, Jun 17, 2014 at 09:38:40AM +0200, Boris BREZILLON wrote: >> The init_data and of_node fields of the axp2xx_matches tables are filled >> at each device probe by the axp20x_regulator_parse_dt function (which then >> calls the of_regulator_match

Re: scsi-mq

2014-06-18 Thread Bart Van Assche
On 06/18/14 05:44, Jens Axboe wrote: > Thanks for posting these numbers, Bart. The CPU utilization and IOPS > speak a very clear message. The only mystery is why the singe threaded > performance is down. That we need to get sort, but it's not a show > stopper for inclusion. > > If you run the

Re: [PATCH v5] hwmon: Driver for TI TMP103 temperature sensor

2014-06-18 Thread Varka Bhadram
On 06/18/2014 11:46 AM, Heiko Schocher wrote: Hello Varka, Am 18.06.2014 07:46, schrieb Varka Bhadram: Hi, On 06/18/2014 11:07 AM, Heiko Schocher wrote: Driver for the TI TMP103. The TI TMP103 is similar to the TMP102. It differs from the TMP102 by having only 8 bit registers.

Re: [PATCH v2 2/8] PCI: designware: refactor host init code to re-use on v3.65 DW pci hw

2014-06-18 Thread Pratyush Anand
Hi Murali, On Wed, Jun 11, 2014 at 02:51:21AM +0800, Murali Karicheri wrote: > Current DW PCI host init code has code specific to newer hw such as > ATU port specific resource parsing and map. v3.65 DW PCI host has OK, Older version did not had standard viewport implementation, so patch 1 of

Re: [RFD] sched/deadline: EDF dynamic quota design

2014-06-18 Thread xiaofeng.yan
On 2014/6/17 16:01, Luca Abeni wrote: Hi, On 06/17/2014 04:43 AM, xiaofeng.yan wrote: [...] The basic ideas are (warning! This is an over-simplification of the algorithm! :) - You assign runtime and period to each SCHED_DEADLINE task as usual - Each task is guaranteed to receive its runtime

Re: [PATCH v5] hwmon: Driver for TI TMP103 temperature sensor

2014-06-18 Thread Varka Bhadram
On 06/18/2014 11:46 AM, Heiko Schocher wrote: Hello Varka, Am 18.06.2014 07:46, schrieb Varka Bhadram: Hi, On 06/18/2014 11:07 AM, Heiko Schocher wrote: Driver for the TI TMP103. The TI TMP103 is similar to the TMP102. It differs from the TMP102 by having only 8 bit registers.

Re: [RFC PATCH 1/1] Move two pinned pages to non-movable node in kvm.

2014-06-18 Thread Tang Chen
Hi Gleb, Thanks for the quick reply. Please see below. On 06/18/2014 02:12 PM, Gleb Natapov wrote: On Wed, Jun 18, 2014 at 01:50:00PM +0800, Tang Chen wrote: [Questions] And by the way, would you guys please answer the following questions for me ? 1. What's the ept identity pagetable for ?

Re: [PATCH v5] hwmon: Driver for TI TMP103 temperature sensor

2014-06-18 Thread Guenter Roeck
On 06/17/2014 11:18 PM, Varka Bhadram wrote: ti,tmp102Low Power Digital Temperature Sensor with SMBUS/Two Wire Serial Interface +ti,tmp103Low Power Digital Temperature Sensor with SMBUS/Two Wire Serial Interface May i know about this binding compatible property ? At some

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