Re: [PATCH 10/10] perf tests: Use lower sample_freq in sw clock event period test

2013-11-12 Thread Arnaldo Carvalho de Melo
Em Tue, Nov 12, 2013 at 05:40:39PM +0900, Namhyung Kim escreveu: Hi Adrian, On Tue, 12 Nov 2013 09:07:36 +0200, Adrian Hunter wrote: On 11/11/13 22:22, Arnaldo Carvalho de Melo wrote: From: Arnaldo Carvalho de Melo a...@redhat.com We were using it at 10 kHz, which doesn't work in

[PATCH v3 2/4] microcode: Use request_firmware_direct()

2013-11-12 Thread Takashi Iwai
Use the new helper, request_firmware_direct(), for avoiding the lengthy timeout of non-existing firmware loads. Especially the Intel microcode driver suffers from this problem because each CPU triggers the f/w loading, thus it ends up taking (literally) hours with many cores. Tested-by: Prarit

[PATCH v3 0/4] Add request_firmware_direct() for microcode loader

2013-11-12 Thread Takashi Iwai
Hi, this is a revised patch series to introduce request_firmware_direct() helper for avoiding the lengthy udev issue on microcode loader. The original problem was stated in Prarit's post: https://lkml.org/lkml/2013/10/28/221 In short, microcode loader probes non-existing firmware files (which

Re: [RFC][PATCH v5 00/14] sched: packing tasks

2013-11-12 Thread Morten Rasmussen
On Mon, Nov 11, 2013 at 06:18:05PM +, Catalin Marinas wrote: On Mon, Nov 11, 2013 at 04:39:45PM +, Arjan van de Ven wrote: having a hardware driver give a prefered CPU ordering for wakes can indeed be useful. (I'm doubtful that changing the recommendation for each idle is going to

[PATCH v3 4/4] firmware: Suppress fallback warnings when CONFIG_FW_LOADER_USER_HELPER=n

2013-11-12 Thread Takashi Iwai
The commit [3e358ac2bb5b: firmware: Be a bit more verbose about direct firmware loading failure] introduced a new warning message about falling back to user helper, but this isn't true when CONFIG_FW_LOADER_USER_HELPER isn't set. In this patch, clear the FW_OPT_FALLBACK flag in the case without

[PATCH v3 1/4] firmware: Introduce request_firmware_direct()

2013-11-12 Thread Takashi Iwai
When CONFIG_FW_LOADER_USER_HELPER is set, request_firmware() falls back to the usermode helper for loading via udev when the direct loading fails. But the recent udev takes way too long timeout (60 seconds) for non-existing firmware. This is unacceptable for the drivers like microcode loader

[PATCH v3 3/4] firmware: Use bit flags instead of boolean combos

2013-11-12 Thread Takashi Iwai
More than two boolean arguments to a function are rather confusing and error-prone for callers. Let's make the behavior bit flags instead of triple combos. A nice suggestion by Borislav Petkov. Acked-by: Borislav Petkov b...@suse.de Acked-by: Prarit Bhargava pra...@redhat.com Acked-by: Ming Lei

Re: [RFC/PATCHSET 00/14] perf report: Add support to accumulate hist periods (v2)

2013-11-12 Thread Pekka Enberg
On 11/06/2013 05:33 PM, David Ahern wrote: On 11/6/13, 4:47 AM, Ingo Molnar wrote: I'm not too worried about call-graph 'legacies': it generates such huge perf.data files which is parsed so slowly at the moment that there's very little user base ... Anyone who absolutely needs call-graph

Re: [PATCH 2/2] perf trace: Fix segfault on perf trace -i perf.data

2013-11-12 Thread Arnaldo Carvalho de Melo
Em Tue, Nov 12, 2013 at 08:57:00AM -0300, Arnaldo Carvalho de Melo escreveu: Em Tue, Nov 12, 2013 at 08:46:09AM -0300, Arnaldo Carvalho de Melo escreveu: Em Tue, Nov 12, 2013 at 03:25:00PM +0900, Namhyung Kim escreveu: From: Namhyung Kim namhyung@lge.com When replaying a previous

Re: Partially Privileged Applications

2013-11-12 Thread Shahbaz Youssefi
Hi, Thanks for the feedback. You are absolutely right and as I mentioned before, I came to realize that it would be hard to contain malicious code. Nevertheless, honest mistakes shouldn't be a big problem. Currently, if you write a kernel module, you can cause havoc and the only thing preventing

Re: [PATCH v2 01/03] clocksource: Add Kconfig entries for CMT, MTU2, TMU and STI

2013-11-12 Thread Magnus Damm
On Sat, Nov 9, 2013 at 3:34 AM, John Stultz john.stu...@linaro.org wrote: On 11/08/2013 12:23 AM, Magnus Damm wrote: On Thu, Nov 7, 2013 at 8:27 PM, Daniel Lezcano daniel.lezc...@linaro.org wrote: On 11/06/2013 12:05 PM, Magnus Damm wrote: From: Magnus Damm d...@opensource.se Add Kconfig

Re: [PATCH 2/2] perf trace: Fix segfault on perf trace -i perf.data

2013-11-12 Thread Namhyung Kim
Hi Arnaldo, On Tue, Nov 12, 2013 at 08:57:00AM -0300, Arnaldo Carvalho de Melo wrote: So this becomes the first part of this patch, split from yours and massaged a bit so that by looking at the patch it becomes quickly clear what it is doing, please let me now if I can keep this as-is (with

[PATCH] gfs2: fix potential NULL pointer dereference

2013-11-12 Thread Michal Nazarewicz
From: Michal Nazarewicz min...@mina86.com Commit [e66cf1610: GFS2: Use lockref for glocks] replaced call: atomic_read(gi-gl-gl_ref) == 0 with: __lockref_is_dead(gl-gl_lockref) therefore changing how gl is accessed, from gi-gl to plan gl. However, gl can be a NULL pointer, and so gi-gl

RE: [PATCH 1/4] phylib: Add Clause 45 read/write functions

2013-11-12 Thread Shaohui Xie
Added more people and list. Best Regards, Shaohui Xie -Original Message- From: shh@gmail.com [mailto:shh@gmail.com] Sent: Monday, November 11, 2013 7:04 PM To: linuxppc-...@lists.ozlabs.org; linux-kernel@vger.kernel.org Cc: Bucur Madalin-Cristian-B32716; Kanetkar

Re: [PATCH 2/2] perf trace: Fix segfault on perf trace -i perf.data

2013-11-12 Thread Namhyung Kim
On Tue, Nov 12, 2013 at 09:15:08AM -0300, Arnaldo Carvalho de Melo wrote: Second part, just rewrote the changelog a bit: commit 4e8a6e566fc611b9cbec2978a52266f29cb65785 Author: Namhyung Kim namhyung@lge.com Date: Tue Nov 12 15:25:00 2013 +0900 perf trace: Fix segfault on perf

RE: [PATCH 2/4] phylib: Add generic 10G driver

2013-11-12 Thread Shaohui Xie
Added more people and list. Best Regards, Shaohui Xie -Original Message- From: shh@gmail.com [mailto:shh@gmail.com] Sent: Monday, November 11, 2013 7:07 PM To: linuxppc-...@lists.ozlabs.org; linux-kernel@vger.kernel.org Cc: Bucur Madalin-Cristian-B32716; Kanetkar

RE: [PATCH 3/4] phylib: Support attaching to gen10g_driver

2013-11-12 Thread Shaohui Xie
Added more people and list. Best Regards, Shaohui Xie -Original Message- From: shh@gmail.com [mailto:shh@gmail.com] Sent: Monday, November 11, 2013 7:08 PM To: linuxppc-...@lists.ozlabs.org; linux-kernel@vger.kernel.org Cc: Bucur Madalin-Cristian-B32716; Kanetkar

RE: [PATCH 4/4] phylib: Add of_phy_attach

2013-11-12 Thread Shaohui Xie
Added more people and list. Best Regards, Shaohui Xie -Original Message- From: shh@gmail.com [mailto:shh@gmail.com] Sent: Monday, November 11, 2013 7:08 PM To: linuxppc-...@lists.ozlabs.org; linux-kernel@vger.kernel.org Cc: Bucur Madalin-Cristian-B32716; Kanetkar

[GIT PULL] UBIFS changes for 3.13-rc1

2013-11-12 Thread Artem Bityutskiy
Hi Linus, The following changes since commit d4e4ab86bcba5a72779c43dc1459f71fea3d89c8: Linux 3.11-rc5 (2013-08-11 18:04:20 -0700) are available in the git repository at: git://git.infradead.org/linux-ubifs.git tags/upstream-3.13-rc1 for you to fetch changes up to

[GIT PULL] UBI changes for 3.13-rc1

2013-11-12 Thread Artem Bityutskiy
Hi Linus, The following changes since commit b36f4be3de1b123d8601de062e7dbfc904f305fb: Linux 3.11-rc6 (2013-08-18 14:36:53 -0700) are available in the git repository at: git://git.infradead.org/linux-ubi.git tags/upstream-3.13-rc1 for you to fetch changes up to

[GIT PULL] UBI changes for 3.13-rc1

2013-11-12 Thread Artem Bityutskiy
Hi Linus, The following changes since commit b36f4be3de1b123d8601de062e7dbfc904f305fb: Linux 3.11-rc6 (2013-08-18 14:36:53 -0700) are available in the git repository at: git://git.infradead.org/linux-ubi.git tags/upstream-3.13-rc1 for you to fetch changes up to

Re: Suspend / Resume broken on Toshiba R830 / R700

2013-11-12 Thread Pavel Machek
Hi! I have one Toshiba R830 and one R700 and suspend / resume is broken on both. I've filled a bug report[1] on 03/02/2012, and it is still not fixed. It apparently suspend well and start resuming, but then something goes wrong, the screen keeps black and the CPU fan goes full speed. I

Re: [PATCH] gfs2: fix potential NULL pointer dereference

2013-11-12 Thread Steven Whitehouse
Hi, Yes, good catch. Thanks, I'll add it to the tree, Steve. On Tue, 2013-11-12 at 13:30 +0100, Michal Nazarewicz wrote: From: Michal Nazarewicz min...@mina86.com Commit [e66cf1610: GFS2: Use lockref for glocks] replaced call: atomic_read(gi-gl-gl_ref) == 0 with:

Re: [RFC][PATCH v5 00/14] sched: packing tasks

2013-11-12 Thread Vincent Guittot
On 11 November 2013 12:33, Catalin Marinas catalin.mari...@arm.com wrote: Hi Vincent, (cross-posting to linux-pm as it was agreed to follow up on this list) snip So, IMO, defining the power topology is a good starting point and I think it's better to separate the patches from the energy

[PATCH] x86/smpboot: Make the code more consistent

2013-11-12 Thread Ingo Molnar
* Borislav Petkov b...@alien8.de wrote: On Tue, Nov 12, 2013 at 12:37:10PM +0100, Ingo Molnar wrote: Hm, I think it's actually a bonus that we see the individual CPUs printed as they boot up. That way if there's a hang, the place where it hangs is apparent, etc. Ok, good point. We

Re: [PATCH 00/11] random: code cleanups

2013-11-12 Thread Theodore Ts'o
On Thu, Nov 07, 2013 at 06:57:25PM -0500, Greg Price wrote: I recently read through the random number generator's code. This series has fixes for some minor things I spotted. Four of the patches touch comments only. Four simplify code without changing its behavior (total diffstat: 35

Re: [PATCH] ext4: explain encoding of 34-bit a,c,mtime values

2013-11-12 Thread Theodore Ts'o
On Sun, Nov 10, 2013 at 02:56:54AM -0500, David Turner wrote: b. Use Andreas's encoding, which is incompatible with pre-1970 files written on 64-bit systems. I don't care about currently-existing post-2038 files, because I believe that nobody has a valid reason to have such files. However, I

Re: [PATCH 04/10] perf machine: Introduce synthesize_threads method out of open coded equivalent

2013-11-12 Thread Ingo Molnar
* Arnaldo Carvalho de Melo a...@ghostprotocols.net wrote: Em Mon, Nov 11, 2013 at 09:50:45PM +0100, Ingo Molnar escreveu: * David Ahern dsah...@gmail.com wrote: On 11/11/13, 1:22 PM, Arnaldo Carvalho de Melo wrote: +if (perf_target__has_task(target)) +return

Re: [PATCH v5 2/5] usb: gadget: add quirk_ep_out_aligned_size field to struct usb_gadget

2013-11-12 Thread Michal Nazarewicz
On Tue, Nov 12 2013, David Cohen wrote: On 11/11/2013 03:55 PM, Michal Nazarewicz wrote: Come to think of it, perhaps even better helper would be: static inline size_t usb_ep_align_maybe( struct usb_gadget *gadget, struct usb_ep *ep, size_t len) { return

Re:HDPE LDPE PVC

2013-11-12 Thread Iris
Dear Sir, Good day! We had dealing plastic raw materials for many years . And supplied high quality different grade HDPE/LDPE/PP/PET to our old and new customers. Should any of the items be of interest to you, please let me know. We shall be glad to give you our lowest quotations upon

Re: [PATCHv5.1 4/5] check quirk to pad epout buf size when not aligned to maxpacketsize

2013-11-12 Thread Michal Nazarewicz
On Tue, Nov 12 2013, David Cohen wrote: You need to update req-length otherwise it's going to crash DWC3. I'd rather to keep your previous version. That's unfortunate. Do you want me to resend it or will you just send a v6 of your whole series? -- Best regards,

Re: call_usermodehelper in containers

2013-11-12 Thread Stanislav Kinsbursky
12.11.2013 15:12, Jeff Layton пишет: On Mon, 11 Nov 2013 16:47:03 -0800 Greg KH gre...@linuxfoundation.org wrote: On Mon, Nov 11, 2013 at 07:18:25AM -0500, Jeff Layton wrote: We have a bit of a problem wrt to upcalls that use call_usermodehelper with containers and I'd like to bring this to

Re: [PATCH] of: set dma_mask to point to coherent_dma_mask

2013-11-12 Thread Stefano Stabellini
On Tue, 12 Nov 2013, Russell King - ARM Linux wrote: On Mon, Nov 11, 2013 at 04:59:14PM +, Stefano Stabellini wrote: On Wed, 6 Nov 2013, Stefano Stabellini wrote: On Sat, 2 Nov 2013, Grant Likely wrote: On Wed, 30 Oct 2013 00:05:22 -0500, Rob Herring robherri...@gmail.com wrote:

Re: [PATCH 2/2] perf trace: Fix segfault on perf trace -i perf.data

2013-11-12 Thread Arnaldo Carvalho de Melo
Em Tue, Nov 12, 2013 at 09:27:23PM +, Namhyung Kim escreveu: Hi Arnaldo, On Tue, Nov 12, 2013 at 08:57:00AM -0300, Arnaldo Carvalho de Melo wrote: So this becomes the first part of this patch, split from yours and massaged a bit so that by looking at the patch it becomes quickly clear

[PATCH 11/11] um: use generic fixmap.h

2013-11-12 Thread Mark Salter
Signed-off-by: Mark Salter msal...@redhat.com CC: Jeff Dike jd...@addtoit.com CC: Richard Weinberger rich...@nod.at CC: user-mode-linux-de...@lists.sourceforge.net --- arch/um/include/asm/fixmap.h | 40 +--- 1 file changed, 1 insertion(+), 39 deletions(-) diff

[PATCH 01/11] Add generic fixmap.h

2013-11-12 Thread Mark Salter
Many architectures provide an asm/fixmap.h which defines support for compile-time 'special' virtual mappings which need to be made before paging_init() has run. This suport is also used for early ioremap on x86. Much of this support is identical across the architectures. This patch consolidates

[PATCH 08/11] powerpc: use generic fixmap.h

2013-11-12 Thread Mark Salter
Signed-off-by: Mark Salter msal...@redhat.com CC: Benjamin Herrenschmidt b...@kernel.crashing.org CC: Paul Mackerras pau...@samba.org CC: linuxppc-...@lists.ozlabs.org --- arch/powerpc/include/asm/fixmap.h | 44 ++- 1 file changed, 2 insertions(+), 42

[PATCH 00/11] Consolidate asm/fixmap.h files

2013-11-12 Thread Mark Salter
Many architectures provide an asm/fixmap.h which defines support for compile-time 'special' virtual mappings which need to be made before paging_init() has run. This suport is also used for early ioremap on x86. Much of this support is identical across the architectures. This patch consolidates

[PATCH 05/11] metag: use generic fixmap.h

2013-11-12 Thread Mark Salter
Signed-off-by: Mark Salter msal...@redhat.com CC: James Hogan james.ho...@imgtec.com CC: linux-me...@vger.kernel.org --- arch/metag/include/asm/fixmap.h | 32 +--- 1 file changed, 1 insertion(+), 31 deletions(-) diff --git a/arch/metag/include/asm/fixmap.h

[PATCH 09/11] sh: use generic fixmap.h

2013-11-12 Thread Mark Salter
Signed-off-by: Mark Salter msal...@redhat.com CC: Paul Mundt let...@linux-sh.org CC: linux...@vger.kernel.org --- arch/sh/include/asm/fixmap.h | 39 ++- 1 file changed, 2 insertions(+), 37 deletions(-) diff --git a/arch/sh/include/asm/fixmap.h

[PATCH 03/11] arm: use generic fixmap.h

2013-11-12 Thread Mark Salter
Signed-off-by: Mark Salter msal...@redhat.com CC: Russell King li...@arm.linux.org.uk CC: linux-arm-ker...@lists.infradead.org --- arch/arm/include/asm/fixmap.h | 25 ++--- 1 file changed, 6 insertions(+), 19 deletions(-) diff --git a/arch/arm/include/asm/fixmap.h

[PATCH 07/11] mips: use generic fixmap.h

2013-11-12 Thread Mark Salter
Signed-off-by: Mark Salter msal...@redhat.com CC: Ralf Baechle r...@linux-mips.org CC: linux-m...@linux-mips.org --- arch/mips/include/asm/fixmap.h | 33 + 1 file changed, 1 insertion(+), 32 deletions(-) diff --git a/arch/mips/include/asm/fixmap.h

[PATCH 04/11] hexagon: use generic fixmap.h

2013-11-12 Thread Mark Salter
Signed-off-by: Mark Salter msal...@redhat.com CC: Richard Kuo r...@codeaurora.org CC: linux-hexa...@vger.kernel.org --- arch/hexagon/include/asm/fixmap.h | 40 +-- 1 file changed, 1 insertion(+), 39 deletions(-) diff --git a/arch/hexagon/include/asm/fixmap.h

[PATCH 10/11] tile: use generic fixmap.h

2013-11-12 Thread Mark Salter
Signed-off-by: Mark Salter msal...@redhat.com CC: Chris Metcalf cmetc...@tilera.com --- arch/tile/include/asm/fixmap.h | 33 + 1 file changed, 1 insertion(+), 32 deletions(-) diff --git a/arch/tile/include/asm/fixmap.h b/arch/tile/include/asm/fixmap.h index

[PATCH 06/11] microblaze: use generic fixmap.h

2013-11-12 Thread Mark Salter
Signed-off-by: Mark Salter msal...@redhat.com CC: Michal Simek mon...@monstr.eu CC: microblaze-ucli...@itee.uq.edu.au --- arch/microblaze/include/asm/fixmap.h | 44 ++-- 1 file changed, 2 insertions(+), 42 deletions(-) diff --git

[PATCH 02/11] x86: use generic fixmap.h

2013-11-12 Thread Mark Salter
Signed-off-by: Mark Salter msal...@redhat.com CC: Thomas Gleixner t...@linutronix.de CC: Ingo Molnar mi...@redhat.com CC: H. Peter Anvin h...@zytor.com CC: x...@kernel.org --- arch/x86/include/asm/fixmap.h | 59 +-- 1 file changed, 1 insertion(+), 58

Re: call_usermodehelper in containers

2013-11-12 Thread Jeff Layton
On Tue, 12 Nov 2013 17:02:36 +0400 Stanislav Kinsbursky skinsbur...@parallels.com wrote: 12.11.2013 15:12, Jeff Layton пишет: On Mon, 11 Nov 2013 16:47:03 -0800 Greg KH gre...@linuxfoundation.org wrote: On Mon, Nov 11, 2013 at 07:18:25AM -0500, Jeff Layton wrote: We have a bit of a

[PATCH] regulator: s5m8767: Disable OVCB in probe

2013-11-12 Thread Krzysztof Kozlowski
According to SW Guide the Over-Voltage Clamp may malfunction at VBatt 5.25V and 110'C temperature. This may result in overshooting or undershooting LDO's voltage outputs. Disable the Over-Voltage Clamp in probe by updating proper bit in all LDO registers. The patch uses sec_bulk_read/write() API

Re: [PATCH 01/11] Add generic fixmap.h

2013-11-12 Thread Arnd Bergmann
On Tuesday 12 November 2013, Mark Salter wrote: Many architectures provide an asm/fixmap.h which defines support for compile-time 'special' virtual mappings which need to be made before paging_init() has run. This suport is also used for early ioremap on x86. Much of this support is identical

Re: [PATCH] BTRFS: fixed coding style issues

2013-11-12 Thread David Sterba
On Tue, Nov 05, 2013 at 09:02:01AM +0200, Aldo Iljazi wrote: Line 4989: Inserted a space after the comma. Lines 7986 and 8274: Inserted a space before the open parenthesis. Hm, I don't know why my message from yesterday did not make it to the list, but I'm objecting against flow of such changes

Re: [PATCH 11/11] um: use generic fixmap.h

2013-11-12 Thread Richard Weinberger
Am 12.11.2013 14:22, schrieb Mark Salter: Signed-off-by: Mark Salter msal...@redhat.com CC: Jeff Dike jd...@addtoit.com CC: Richard Weinberger rich...@nod.at CC: user-mode-linux-de...@lists.sourceforge.net --- arch/um/include/asm/fixmap.h | 40 +--- 1

Re: [PATCH] Generic WorkQueue Engine (GenWQE) device driver (v4)

2013-11-12 Thread Pavel Machek
Hi! The GenWQE device is a PCIe card used to acclerate different tasks. Since it is configurable, it can be adjusted to different purposes. Our initial task for the card is to do zlib style compression/decompression RFC1950, RFC1951, and RFC1952. Is it similar to the Intel's Xeon Phi? They

Re: [PATCH] FS: BTRFS: fixed coding style issues

2013-11-12 Thread David Sterba
On Mon, Nov 04, 2013 at 03:27:38PM +0200, Aldo Iljazi wrote: Fixed three coding style issues. Replaced spaces with tabs. Signed-off-by: Aldo Iljazi m...@aldo.io --- fs/btrfs/dev-replace.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fs/btrfs/dev-replace.c

Re: IPv6: Blackhole route support partial ?

2013-11-12 Thread Hannes Frederic Sowa
On Tue, Nov 12, 2013 at 04:39:10PM +0530, Kamala R wrote: Hi, Sure, here it is. --- linux-3.12/net/ipv6/route.c.orig2013-11-12 16:23:46.0 +0530 +++ linux-3.12/net/ipv6/route.c 2013-11-12 16:30:51.0 +0530 @@ -1570,9 +1570,13 @@ int ip6_route_add(struct fib6_config *cf

[PATCH RFC 10/10] ARM: STi: Add STiH416 ethernet support.

2013-11-12 Thread srinivas.kandagatla
From: Srinivas Kandagatla srinivas.kandaga...@st.com This patch adds support to STiH416 SOC, which has two ethernet snps,dwmac controllers version 3.710. With this patch B2000 and B2020 boards can boot with ethernet in MII and RGMII modes. Tested on both B2020 and B2000. Signed-off-by: Srinivas

[PATCH RFC 02/10] drivers: reset: Reset controller driver for STiH415

2013-11-12 Thread srinivas.kandagatla
From: Stephen Gallimore stephen.gallim...@st.com This patch adds a reset controller platform driver for the STiH415 SoC. This initial version provides a compatible driver for the st,stih415-powerdown device, which registers a system configuration register based reset controller that controls the

[PATCH RFC 07/10] PM / wakeup : Introduce device_child_may_wakeup

2013-11-12 Thread srinivas.kandagatla
From: Srinivas Kandagatla srinivas.kandaga...@st.com This patch introduces device_child_may_wakeup function, which will be useful for wrapper or SoC level driver power management code. Without this patch each driver has to write this same code to get the functionality. Signed-off-by: Srinivas

[PATCH RFC 04/10] drivers: reset: stih415: add softreset controller

2013-11-12 Thread srinivas.kandagatla
From: Srinivas Kandagatla srinivas.kandaga...@st.com This patch adds softreset controller for STiH415 SOC, soft reset controller is based on system configuration registers which are mapped via regmap. This reset controller does not have any feedback or acknowledgement. With this patch a new

[PATCH RFC 00/10] ARM: STi: Add dwmac glue and reset controller

2013-11-12 Thread srinivas.kandagatla
From: Srinivas Kandagatla srinivas.kandaga...@st.com Hi All, This patch series adds Ethernet support to STi series SOCs STiH415 and STiH416. STi SOC series integrates dwmac IP from synopsis, however there is a hardware glue on top of this standard IP, this glue needs to configured before the

[PATCH RFC 05/10] drivers: reset: stih416: add softreset controller

2013-11-12 Thread srinivas.kandagatla
From: Srinivas Kandagatla srinivas.kandaga...@st.com This patch adds softreset controller for STiH416 SOC, soft reset controller is based on system configuration registers which are mapped via regmap. This reset controller does not have any feedback or acknowledgement. With this patch a new

[PATCH RFC 01/10] drivers: reset: STi SoC system configuration reset controller support

2013-11-12 Thread srinivas.kandagatla
From: Stephen Gallimore stephen.gallim...@st.com This patch adds a reset controller implementation for STMicroelectronics STi family SoCs; it allows a group of related reset like controls found in multiple system configuration registers to be represented by a single controller device. System

[PATCH RFC 08/10] net: stmmac:sti: Add STi SOC glue driver.

2013-11-12 Thread srinivas.kandagatla
From: Srinivas Kandagatla srinivas.kandaga...@st.com STi series SOCs have a glue layer on top of the synopsis gmac IP, this glue layer needs to be configured before the gmac driver starts using the IP. This patch adds a platform driver for the glue layer which configures the IP before stmmac

[PATCH RFC 03/10] drivers: reset: Reset controller driver for STiH416

2013-11-12 Thread srinivas.kandagatla
From: Stephen Gallimore stephen.gallim...@st.com This patch adds a reset controller platform driver for the STiH416 SoC. This initial version provides a compatible driver for the st,stih416-powerdown device, which registers a system configuration register based reset controller that controls the

[PATCH] ipvs: Remove unused variable ret from sync_thread_master()

2013-11-12 Thread Geert Uytterhoeven
net/netfilter/ipvs/ip_vs_sync.c: In function 'sync_thread_master': net/netfilter/ipvs/ip_vs_sync.c:1640:8: warning: unused variable 'ret' [-Wunused-variable] Introduced by commit 35a2af94c7ce7130ca292c68b1d27fcfdb648f6b (sched/wait: Make the __wait_event*() interface more friendly)

[PATCH RFC 06/10] ARM: STi: Add reset controller support to mach-sti Kconfig

2013-11-12 Thread srinivas.kandagatla
From: Stephen Gallimore stephen.gallim...@st.com This patch selects reset controller support for ARCH_STI and selects the reset controllers for STiH415 and STiH416 SoCs. Signed-off-by: Stephen Gallimore stephen.gallim...@st.com --- arch/arm/mach-sti/Kconfig |3 +++ 1 files changed, 3

Re: [Fwd: Re: [PATCH v2 2/2] x86: add prefetching to do_csum]

2013-11-12 Thread Neil Horman
On Mon, Nov 11, 2013 at 05:42:22PM -0800, Joe Perches wrote: Hi again Neil. Forwarding on to netdev with a concern as to how often do_csum is used via csum_partial for very short headers and what impact any prefetch would have there. Also, what changed in your test environment? Why are

Re: [PATCH v2] ARM: Use udiv/sdiv for __aeabi_{u}idiv library functions

2013-11-12 Thread Nicolas Pitre
On Mon, 11 Nov 2013, Stephen Boyd wrote: On 11/09/13 21:03, Nicolas Pitre wrote: Bah. NAK. We are doing runtime patching of the kernel for many many things already. So why not do the same here? static keys are a form of runtime patching, albeit not as extreme as you're suggesting.

[GIT PULL] clockevents/clocksource: 3.12 fixes

2013-11-12 Thread Daniel Lezcano
Hi Ingo and Thomas, this pull request has the following contain: * Laurent Pinchard fixed a missing a clk_put in case the registering of the sh_mtu[2] drivers fails. * Uwe Kleine-König reuse clockevents_config_and_register for the at91rm9200_time timer as it was depending on the patch

Re: [PATCH] x86/smpboot: Make the code more consistent

2013-11-12 Thread Borislav Petkov
On Tue, Nov 12, 2013 at 01:39:37PM +0100, Ingo Molnar wrote: Mind applying the attached cleanup patch first, before doing fixes to the printout? No change in functionality. Mildly tested. Yeah, boots fine in my strange topology kvm configuration here. We still need

Re: [PATCH v2] ARM: Use udiv/sdiv for __aeabi_{u}idiv library functions

2013-11-12 Thread Russell King - ARM Linux
On Tue, Nov 12, 2013 at 09:01:16AM -0500, Nicolas Pitre wrote: What about this patch which I think is currently your best option. Note it would need to use the facilities from asm/opcodes.h to make it endian agnostic. diff --git a/arch/arm/kernel/setup.c b/arch/arm/kernel/setup.c index

Re: [PATCH 2/2] mtd: cmdlinepart: support master name is not set when parser partition

2013-11-12 Thread Huang Shijie
On Sun, Nov 10, 2013 at 03:09:02PM -0300, Ezequiel Garcia wrote: Can you summarize such cases? Or maybe better, just share them all :) I just test it with cases such as(my nand is just 1G): (1) mtdparts=gpmi-nand:16m(boot),16m(kernel),600m(dtb),600m(ok),-(rootfs) (2)

Re: [PATCH RFC 07/10] PM / wakeup : Introduce device_child_may_wakeup

2013-11-12 Thread Rafael J. Wysocki
On Tuesday, November 12, 2013 01:52:57 PM srinivas.kandaga...@st.com wrote: From: Srinivas Kandagatla srinivas.kandaga...@st.com This patch introduces device_child_may_wakeup function, which will be useful for wrapper or SoC level driver power management code. Without this patch each driver

Re: [PATCH] ACPI / driver core: Store a device pointer in struct acpi_dev_node

2013-11-12 Thread Rafael J. Wysocki
On Tuesday, November 12, 2013 11:24:02 AM Mika Westerberg wrote: On Mon, Nov 11, 2013 at 02:45:39PM +0100, Rafael J. Wysocki wrote: From: Rafael J. Wysocki rafael.j.wyso...@intel.com Subject: ACPI / driver core: Store an ACPI device pointer in struct acpi_dev_node Modify struct

Re: [patch 1/6] hardirq: Make hardirq bits generic

2013-11-12 Thread Geert Uytterhoeven
Hi Thomas, On Mon, Nov 11, 2013 at 8:34 PM, Thomas Gleixner t...@linutronix.de wrote: Finally found the issue. The patch below fixes the problem here. The little missing detail is, that I zapped GET_CURRENT() assuming blindly that this is only needed for the preempt_count hackery. But in fact

[PATCH] perf trace: Fix syscall summary duration order

2013-11-12 Thread Pekka Enberg
Switch duration order to minimum, average, maximum for the '--summary' command line option because it's more natural to read. Cc: David Ahern dsah...@gmail.com Cc: Ingo Molnar mi...@redhat.com Cc: Arnaldo Carvalho de Melo a...@ghostprotocols.net Signed-off-by: Pekka Enberg penb...@kernel.org ---

Re: [PATCH RFC 07/10] PM / wakeup : Introduce device_child_may_wakeup

2013-11-12 Thread srinivas kandagatla
On 12/11/13 14:20, Rafael J. Wysocki wrote: +/* callback for device_child_may_wakeup */ +static int __device_child_may_wakeup(struct device *dev, void *c) +{ + return device_may_wakeup(dev); +} This doesn't have anything to do with children in principle, so please call it

Re: Re: Re: Re: Re: [PATCH RFC 2/6] arm64: Kprobes with single stepping support

2013-11-12 Thread Masami Hiramatsu
(2013/11/12 19:55), Sandeepa Prabhu wrote: Thanks for steps, ARM64 ftrace patches are under review on arm mailing list, I can contact the (linaro) developer implementing ftrace on what's supported and then figure-out a way to test this concurrency of kprobes breakpoint and hardware breakpoint.

[PATCH 0/2] swiotlb-xen fixes

2013-11-12 Thread Stefano Stabellini
Hi all, this patch series is just a couple of fixes for swiotlb-xen. In particular the slow path (bouncing on the swiotlb buffer for dma operations) on ARM has two problems, each of them fixed by a separate patch: - a xen_dma_map_page call is missing in xen_swiotlb_map_sg_attrs; - dma_capable

[PATCH 1/4 v3] mfd: tc3589x: Add device tree bindings

2013-11-12 Thread Linus Walleij
This defines the device tree bindings for the Toshiba TC3589x series of multi-purpose expanders. Only the stuff I can test is defined: GPIO and keypad. Others may implement more subdevices further down the road. This is to complement commit a435ae1d51e2f18414f2a87219fdbe068231e692 mfd: Enable the

[PATCH 1/2] swiotlb-xen: add missing xen_dma_map_page call

2013-11-12 Thread Stefano Stabellini
swiotlb-xen is missing a xen_dma_map_page call in xen_swiotlb_map_sg_attrs, in the slow path. Signed-off-by: Stefano Stabellini stefano.stabell...@eu.citrix.com --- drivers/xen/swiotlb-xen.c |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/drivers/xen/swiotlb-xen.c

Re: [PATCH v6 3/4] perf,x86: add Intel RAPL PMU support

2013-11-12 Thread Stephane Eranian
Peter, I spent some time trying to understand the hotplug code in kernel/cpu.c. I still see this cpu_hotplug_begin()/cpu_hotplug_done() pair which serializes access. So it seems that hotplug is still serialized. That appears to be true also for the CPU_STARTING phase of hiotplug. I don't know

[PATCH 4/5 v2] input: tc3589x-keypad: support probing from device tree

2013-11-12 Thread Linus Walleij
Implement device tree probing for the tc3589x keypad driver. This is modeled on the STMPE keypad driver and tested on the Ux500 TVK1281618 UIB. Signed-off-by: Linus Walleij linus.wall...@linaro.org --- ChangeLog v1-v2: - Fix rows/columns binding to read two u32's insead of two u8 /bits/ as

Re: [PATCH] ipvs: Remove unused variable ret from sync_thread_master()

2013-11-12 Thread Peter Zijlstra
On Tue, Nov 12, 2013 at 02:53:16PM +0100, Geert Uytterhoeven wrote: net/netfilter/ipvs/ip_vs_sync.c: In function 'sync_thread_master': net/netfilter/ipvs/ip_vs_sync.c:1640:8: warning: unused variable 'ret' [-Wunused-variable] Introduced by commit 35a2af94c7ce7130ca292c68b1d27fcfdb648f6b

[PATCH 2/2] swiotlb-xen: xen_swiotlb_map_page: do not error out if dma_capable fails

2013-11-12 Thread Stefano Stabellini
Many ARM devices do not set the dma_mask correctly today. As a consequence dma_capable fails for them regardless of the address passed to it. In xen_swiotlb_map_page we currently use dma_capable to check if the address returned by the swiotlb is good for dma for the device. However the check would

[PATCH 5/5 v2] ARM: ux500: adjust the TC3589x devices to the binding

2013-11-12 Thread Linus Walleij
The TC3589x devices appearing in the ST Ericsson device trees are adjusted to use the new binding so this is in a good shape, and we add the keypad on the TVK1281618 UIB so this is working again. Signed-off-by: Linus Walleij linus.wall...@linaro.org --- ChangeLog v1-v2: - Adjust DT to match the

Re: [PATCH] perf trace: Fix syscall summary duration order

2013-11-12 Thread David Ahern
On 11/12/13, 7:10 AM, Pekka Enberg wrote: Switch duration order to minimum, average, maximum for the '--summary' command line option because it's more natural to read. Cc: David Ahern dsah...@gmail.com Cc: Ingo Molnar mi...@redhat.com Cc: Arnaldo Carvalho de Melo a...@ghostprotocols.net

Re: [PATCH v2] ARM: Use udiv/sdiv for __aeabi_{u}idiv library functions

2013-11-12 Thread Ben Dooks
On 12/11/13 14:04, Russell King - ARM Linux wrote: On Tue, Nov 12, 2013 at 09:01:16AM -0500, Nicolas Pitre wrote: What about this patch which I think is currently your best option. Note it would need to use the facilities from asm/opcodes.h to make it endian agnostic. diff --git

Re: [PATCH v2] ARM: Use udiv/sdiv for __aeabi_{u}idiv library functions

2013-11-12 Thread Nicolas Pitre
On Tue, 12 Nov 2013, Russell King - ARM Linux wrote: On Tue, Nov 12, 2013 at 09:01:16AM -0500, Nicolas Pitre wrote: What about this patch which I think is currently your best option. Note it would need to use the facilities from asm/opcodes.h to make it endian agnostic. diff --git

[RFC] Coverity 1128445 - Reliance on integer endianness

2013-11-12 Thread Geyslan Gregório Bem
Hi, Coverity detected in 'arch/x86/kernel/cpu/perf_event_intel_uncore.c' a possible reliance on integer endianness. Is that a positive one? static u64 ivt_uncore_irp_read_counter(struct intel_uncore_box *box, struct perf_event *event) 1369{ 1370struct pci_dev *pdev = box-pci_dev; 1371

[PATCH RFC 09/10] ARM: STi: Add STiH415 ethernet support.

2013-11-12 Thread srinivas.kandagatla
From: Srinivas Kandagatla srinivas.kandaga...@st.com This patch adds support to STiH415 SOC, which has two ethernet snps,dwmac controllers version 3.610. With this patch B2000 and B2020 boards can boot with ethernet in MII and RGMII modes. Tested on both B2020 and B2000. Signed-off-by: Srinivas

Re: [PATCH net 1/2] tuntap: limit head length of skb allocated

2013-11-12 Thread Jason Wang
- 原始邮件 - We currently use hdr_len as a hint of head length which is advertised by guest. But when guest advertise a very big value, it can lead to an 64K+ allocating of kmalloc() which has a very high possibility of failure when host memory is fragmented or under heavy stress. The

Re: [PATCH v2] ARM: Use udiv/sdiv for __aeabi_{u}idiv library functions

2013-11-12 Thread Måns Rullgård
Nicolas Pitre nicolas.pi...@linaro.org writes: What about this patch which I think is currently your best option. Note it would need to use the facilities from asm/opcodes.h to make it endian agnostic. diff --git a/arch/arm/kernel/setup.c b/arch/arm/kernel/setup.c index

RE: [PATCH] ipvs: Remove unused variable ret from sync_thread_master()

2013-11-12 Thread David Laight
@@ -1637,7 +1637,7 @@ static int sync_thread_master(void *data) continue; } while (ip_vs_send_sync_msg(tinfo-sock, sb-mesg) 0) { - int ret = __wait_event_interruptible(*sk_sleep(sk), So ideally there's be a comment here

Re: [PATCH] x86/smpboot: Make the code more consistent

2013-11-12 Thread Ingo Molnar
* Borislav Petkov b...@alien8.de wrote: On Tue, Nov 12, 2013 at 01:39:37PM +0100, Ingo Molnar wrote: Mind applying the attached cleanup patch first, before doing fixes to the printout? No change in functionality. Mildly tested. Yeah, boots fine in my strange topology kvm configuration

Re: [PATCH 1/4] extcon: arizona: Add defines for microphone detection levels

2013-11-12 Thread Charles Keepax
On Mon, Nov 11, 2013 at 11:26:38AM +, Lee Jones wrote: I'm inclined to agree with you though, so if you want to send a patch based on v3.14-rc1 I'd be happy to accept it. Apologies for causing confusion here I checked your tree for the patch and didn't see it, so I assumed you

Re: mm/zswap: change to writethrough

2013-11-12 Thread Dan Streetman
On Tue, Nov 12, 2013 at 4:11 AM, Bob Liu bob@oracle.com wrote: On 11/12/2013 03:12 AM, Dan Streetman wrote: Seth, have you (or anyone else) considered making zswap a writethrough cache instead of writeback? I think that it would significantly help the case where zswap fills up and starts

Re: 3.10.16 cgroup_mutex deadlock

2013-11-12 Thread Michal Hocko
On Tue 12-11-13 18:17:20, Li Zefan wrote: Cc more people On 2013/11/12 6:06, Shawn Bohrer wrote: Hello, This morning I had a machine running 3.10.16 go unresponsive but before we killed it we were able to get the information below. I'm not an expert here but it looks like most of

Re: [PATCH 4/4] extcon: arizona: Eliminate dead error handling code

2013-11-12 Thread Charles Keepax
On Tue, Nov 12, 2013 at 09:15:29AM +0900, Chanwoo Choi wrote: Hi CHarles, On 11/08/2013 10:19 PM, Charles Keepax wrote: As a small disclaimer I would personally prefer to not merge this patch. I have added it based on previous code review of the other patches in this chain.

Re: [PATCH] ipvs: Remove unused variable ret from sync_thread_master()

2013-11-12 Thread Peter Zijlstra
On Tue, Nov 12, 2013 at 02:21:39PM -, David Laight wrote: @@ -1637,7 +1637,7 @@ static int sync_thread_master(void *data) continue; } while (ip_vs_send_sync_msg(tinfo-sock, sb-mesg) 0) { - int ret =

Release of Linux MTI-3.10-LTS kernel.

2013-11-12 Thread Steven J. Hill
Imagination Technologies is pleased to announce the release of its 3.10 LTS (Long-Term Support) MIPS kernel. The changelog below is based off the stable Linux 3.10.14 release done by Greg Kroah-Hartman in commit 8c15abc94c737f9120d3d4a550abbcbb9be121f6 back on October 1st. The code repository

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