Re: [RFC PATCH 02/12] pci: host: pcie-dra7xx: add support for pcie-dra7xx controller

2014-03-26 Thread Kishon Vijay Abraham I
On Wednesday 26 March 2014 08:15 PM, Rob Herring wrote: On Wed, Mar 26, 2014 at 8:57 AM, Kishon Vijay Abraham I kis...@ti.com wrote: Added support for pcie controller in dra7xx. This driver re-uses the designware core code that is already present in kernel. Signed-off-by: Kishon Vijay

Re: [Xen-devel] Xen-unstable Linux 3.14-rc3 and 3.13 Network troubles bisected

2014-03-26 Thread Sander Eikelenboom
Wednesday, March 26, 2014, 3:44:42 PM, you wrote: -Original Message- From: Sander Eikelenboom [mailto:li...@eikelenboom.it] Sent: 26 March 2014 11:11 To: Paul Durrant Cc: Wei Liu; annie li; Zoltan Kiss; xen-de...@lists.xen.org; Ian Campbell; linux- kernel; net...@vger.kernel.org

Re: [PATCH v3 4/5] xen: Define EFI related stuff

2014-03-26 Thread Jan Beulich
On 26.03.14 at 15:58, stefano.stabell...@eu.citrix.com wrote: +struct xenpf_efi_runtime_call { +uint32_t function; +/* + * This field is generally used for per sub-function flags (defined + * below), except for the XEN_EFI_get_next_high_monotonic_count case, + * where it

[PATCH -mm 1/4] sl[au]b: do not charge large allocations to memcg

2014-03-26 Thread Vladimir Davydov
We don't track any random page allocation, so we shouldn't track kmalloc that falls back to the page allocator. Signed-off-by: Vladimir Davydov vdavy...@parallels.com Cc: Johannes Weiner han...@cmpxchg.org Cc: Michal Hocko mho...@suse.cz Cc: Glauber Costa glom...@gmail.com Cc: Christoph Lameter

[PATCH -mm 4/4] mm: kill __GFP_KMEMCG

2014-03-26 Thread Vladimir Davydov
All kmem is now charged to memcg explicitly, and __GFP_KMEMCG is not used anywhere, so just get rid of it. Signed-off-by: Vladimir Davydov vdavy...@parallels.com Cc: Johannes Weiner han...@cmpxchg.org Cc: Michal Hocko mho...@suse.cz Cc: Glauber Costa glom...@gmail.com --- include/linux/gfp.h

[PATCH -mm 0/4] kmemcg: get rid of __GFP_KMEMCG

2014-03-26 Thread Vladimir Davydov
Hi, Currently we charge kmem to memcg in alloc_pages if __GFP_KMEMCG is passed. However, since there are only a few places where we actually want to charge kmem, we could call kmemcg charge function explicitly instead. That would remove all kmemcg-related stuff from the general allocation path

[PATCH -mm 2/4] sl[au]b: charge slabs to memcg explicitly

2014-03-26 Thread Vladimir Davydov
We have only a few places where we actually want to charge kmem so instead of intruding into the general page allocation path with __GFP_KMEMCG it's better to explictly charge kmem there. All kmem charges will be easier to follow that way. This is a step towards removing __GFP_KMEMCG. It removes

[PATCH -mm 3/4] fork: charge threadinfo to memcg explicitly

2014-03-26 Thread Vladimir Davydov
We have only a few places where we actually want to charge kmem so instead of intruding into the general page allocation path with __GFP_KMEMCG it's better to explictly charge kmem there. All kmem charges will be easier to follow that way. This is a step toward removing __GFP_KMEMCG. It makes

Re: [PATCH 3/3] ARM: dts: socfpga: add gpio pieces

2014-03-26 Thread Dinh Nguyen
On 03/22/2014 06:28 AM, Sebastian Andrzej Siewior wrote: On 03/21/2014 11:15 PM, delicious quinoa wrote: snps,nr-gpios = 27; As noted on other thread, gpio2 is 27 wide, despite what the documentation says. When I made that change and remove your other two patches the gpios worked for me on

[PATCH 1/1] Avoid having to provide a fake/invalid fd and path

2014-03-26 Thread xypron . glpk
From: Heinrich Schuchardt xypron.g...@gmx.de https://lkml.org/lkml/2011/1/12/112 holds a patch by Tvrtko Ursulin Avoid having to provide a fake/invalid fd and path when flushing marks Currently for a group to flush marks it has set it needs to provide a fake or invalid (but resolvable)

Re: [PATCH v3 4/5] xen: Define EFI related stuff

2014-03-26 Thread Stefano Stabellini
On Wed, 26 Mar 2014, Jan Beulich wrote: On 26.03.14 at 15:58, stefano.stabell...@eu.citrix.com wrote: +struct xenpf_efi_runtime_call { + uint32_t function; +/* + * This field is generally used for per sub-function flags (defined + * below), except for the

Re: [PATCH v5 2/4] arm64: dts: APM X-Gene PCIe device tree nodes

2014-03-26 Thread Liviu Dudau
On Wed, Mar 26, 2014 at 02:28:42PM +, Rob Herring wrote: On Wed, Mar 19, 2014 at 6:12 PM, Tanmay Inamdar tinam...@apm.com wrote: This patch adds the device tree nodes for APM X-Gene PCIe controller and PCIe clock interface. Since X-Gene SOC supports maximum 5 ports, 5 dts nodes are

[PATCH] ata: fix Calxeda Highbank SATA driver dependencies

2014-03-26 Thread Bartlomiej Zolnierkiewicz
Make sata_highbank host driver depend on ARCH_HIGHBANK config option as Calxeda Highbank SATA support is specific to Calxeda Highbank SoCs and the driver to work requires suitable device tree node to be defined. Additionally allow the driver build if COMPILE_TEST config option is set. Cc: Mark

[PATCH] ata: sata_highbank: remove superfluous cast

2014-03-26 Thread Bartlomiej Zolnierkiewicz
hpriv-plat_data is 'void *' so there is no need to cast it to 'struct ecx_plat_data *'. Cc: Mark Langsdorf mark.langsd...@calxeda.com Cc: Rob Herring r...@kernel.org Signed-off-by: Bartlomiej Zolnierkiewicz b.zolnier...@samsung.com --- drivers/ata/sata_highbank.c |2 +- 1 file changed, 1

Re: [PATCH] ata: fix Calxeda Highbank SATA driver dependencies

2014-03-26 Thread Tejun Heo
On Wed, Mar 26, 2014 at 04:39:50PM +0100, Bartlomiej Zolnierkiewicz wrote: Make sata_highbank host driver depend on ARCH_HIGHBANK config option as Calxeda Highbank SATA support is specific to Calxeda Highbank SoCs and the driver to work requires suitable device tree node to be defined.

Re: mm: slub: gpf in deactivate_slab

2014-03-26 Thread Christoph Lameter
On Tue, 25 Mar 2014, Sasha Levin wrote: I'm not sure if there's anything special about this cache, codewise it's created as follows: inode_cachep = kmem_cache_create(inode_cache, sizeof(struct inode),

Re: [PATCH] ata: sata_highbank: remove superfluous cast

2014-03-26 Thread Tejun Heo
On Wed, Mar 26, 2014 at 04:41:00PM +0100, Bartlomiej Zolnierkiewicz wrote: hpriv-plat_data is 'void *' so there is no need to cast it to 'struct ecx_plat_data *'. Cc: Mark Langsdorf mark.langsd...@calxeda.com Cc: Rob Herring r...@kernel.org Signed-off-by: Bartlomiej Zolnierkiewicz

Re: [KVM] BUG: unable to handle kernel NULL pointer dereference at 00000000000002b0

2014-03-26 Thread Paolo Bonzini
Il 26/03/2014 15:57, Fengguang Wu ha scritto: git://git.kernel.org/pub/scm/virt/kvm/kvm.git queue commit 93c4adc7afedf9b0ec190066d45b6d67db5270da (KVM: x86: handle missing MPX in nested virtualization) Ouch. Out of curiosity is this on Skylake prototypes, or is it also visible on some

RE: [Xen-devel] Xen-unstable Linux 3.14-rc3 and 3.13 Network troubles bisected

2014-03-26 Thread Paul Durrant
-Original Message- From: Sander Eikelenboom [mailto:li...@eikelenboom.it] Sent: 26 March 2014 15:23 To: Paul Durrant Cc: Wei Liu; annie li; Zoltan Kiss; xen-de...@lists.xen.org; Ian Campbell; linux- kernel; net...@vger.kernel.org Subject: Re: [Xen-devel] Xen-unstable Linux

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

2014-03-26 Thread Gregory CLEMENT
On 26/03/2014 16:19, Kevin Hilman wrote: [+ imx6 maintainers ] On Thu, Mar 20, 2014 at 8:52 PM, Mike Turquette mturque...@linaro.org wrote: Quoting Gregory CLEMENT (2014-02-28 02:46:12) Hi Mike, On 24/02/2014 19:10, Gregory CLEMENT wrote: Until now the clock providers were initialized in

Re: [Xen-devel] Xen-unstable Linux 3.14-rc3 and 3.13 Network troubles bisected

2014-03-26 Thread Sander Eikelenboom
Wednesday, March 26, 2014, 4:50:30 PM, you wrote: -Original Message- From: Sander Eikelenboom [mailto:li...@eikelenboom.it] Sent: 26 March 2014 15:23 To: Paul Durrant Cc: Wei Liu; annie li; Zoltan Kiss; xen-de...@lists.xen.org; Ian Campbell; linux- kernel; net...@vger.kernel.org

Re: [PATCH 5/5] lustre: add myself to list of people to CC on lustre patches

2014-03-26 Thread Oleg Drokin
Hello! On Mar 26, 2014, at 4:44 AM, Geert Uytterhoeven wrote: and http://kisskb.ellerman.id.au/kisskb/buildresult/10508264/ will turn green again? I certainly hope so. Ping? We got a new fix for this in due to https://lkml.org/lkml/2014/2/13/479 Well, I certainly hoped for some better

[PATCH] Input: mousedev - fix race when creating mixed device

2014-03-26 Thread Dmitry Torokhov
We should not be using static variable mousedev_mix in methods that can be called before that singleton gets assigned. While at it let's add open and close methods to mousedev structure so that we do not need to test if we are dealing with multiplexor or normal device and simply call appropriate

[PATCH] ata: fix Marvell SATA driver dependencies

2014-03-26 Thread Bartlomiej Zolnierkiewicz
Make sata_mv host driver depend on PCI || ARCH_KIRKWOOD || ARCH_MVEBU || ARCH_ORION5X config options as Marvell SATA support covers both Marvell PCI devices and Marvell Kirkwood, Armada 370/XP and Orion5x SoCs (for non-PCI devices the driver to work requires suitable device tree node to be

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

2014-03-26 Thread Fabio Estevam
, Fabio Estevam Starting kernel ... Uncompressing Linux... done, booting the kernel. Booting Linux on physical CPU 0x0 Linux version 3.14.0-rc8-next-20140326 (fabio@fabio-Latitude-E6410) (gcc version 4.7.3 (Ubuntu/Linaro 4.7.3-1ubuntu1) ) #942 SMP Wed M ar 26 13:20:56 BRT 2014 CPU: ARMv7 Processor

Re: [PATCH net-next v2 8/9] net: filter: rework/optimize internal BPF interpreter's instruction set

2014-03-26 Thread David Miller
From: Alexei Starovoitov a...@plumgrid.com Date: Tue, 25 Mar 2014 18:58:14 -0700 So I think we can debate backward jumps later when they actually will be up for review. Then don't mention it in the commit message. -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the

Re: [PATCH] ata: fix Marvell SATA driver dependencies

2014-03-26 Thread Andrew Lunn
On Wed, Mar 26, 2014 at 05:19:02PM +0100, Bartlomiej Zolnierkiewicz wrote: Make sata_mv host driver depend on PCI || ARCH_KIRKWOOD || ARCH_MVEBU || ARCH_ORION5X config options as Marvell SATA support covers both Marvell PCI devices and Marvell Kirkwood, Armada 370/XP and Orion5x SoCs (for

RE: [Xen-devel] Xen-unstable Linux 3.14-rc3 and 3.13 Network troubles bisected

2014-03-26 Thread Paul Durrant
-Original Message- From: Sander Eikelenboom [mailto:li...@eikelenboom.it] Sent: 26 March 2014 16:07 To: Paul Durrant Cc: Wei Liu; annie li; Zoltan Kiss; xen-de...@lists.xen.org; Ian Campbell; linux- kernel; net...@vger.kernel.org Subject: Re: [Xen-devel] Xen-unstable Linux

Re: [PATCH] ata: fix Marvell SATA driver dependencies

2014-03-26 Thread Tejun Heo
On Wed, Mar 26, 2014 at 05:19:02PM +0100, Bartlomiej Zolnierkiewicz wrote: Make sata_mv host driver depend on PCI || ARCH_KIRKWOOD || ARCH_MVEBU || ARCH_ORION5X config options as Marvell SATA support covers both Marvell PCI devices and Marvell Kirkwood, Armada 370/XP and Orion5x SoCs (for

[PATCH] ata: remove superfluous casts

2014-03-26 Thread Joe Perches
Unreferenced casts of void * types are unnecessary so remove them. Signed-off-by: Joe Perches j...@perches.com --- Done with coccinelle drivers/ata/libahci.c| 2 +- drivers/ata/pata_arasan_cf.c | 2 +- drivers/ata/sata_dwc_460ex.c | 3 +-- drivers/ata/sata_sx4.c | 9 +++-- 4

Re: [PATCH] Add initcall_blacklist kernel parameter

2014-03-26 Thread Josh Boyer
On Wed, Mar 26, 2014 at 10:00 AM, Prarit Bhargava pra...@redhat.com wrote: When a module is built into the kernel, the modules's module_init() function becomes an initcall. Debugging built in kernel modules is typically done by changing the .config, recompiling, and booting the new kernel in

Re: [PATCH v5 2/4] arm64: dts: APM X-Gene PCIe device tree nodes

2014-03-26 Thread Jason Gunthorpe
On Wed, Mar 26, 2014 at 09:28:42AM -0500, Rob Herring wrote: Where is the right place for config space? This binding has it here and others have it in ranges. I think all the drivers in drivers/pci/host use 'reg', this was discussed in the dt-bindings list and AFAIK no new drivers have used

Re: [PATCH] ata: remove superfluous casts

2014-03-26 Thread Tejun Heo
On Wed, Mar 26, 2014 at 09:34:49AM -0700, Joe Perches wrote: Unreferenced casts of void * types are unnecessary so remove them. Signed-off-by: Joe Perches j...@perches.com Applied to libata/for-3.15. Thanks. -- tejun -- To unsubscribe from this list: send the line unsubscribe linux-kernel

Re: [git pull] vfs fixes

2014-03-26 Thread Sedat Dilek
On Tue, Mar 25, 2014 at 1:46 AM, Linus Torvalds torva...@linux-foundation.org wrote: Just to clarify: the current vfs tree from Al works for you, no new issues? I was delaying the release first a day, and now I think I'll just do an rc8 after all (and do the final 3.14 next weekend), but I'd

[PATCH 04/15] mtd: st_spi_fsm: Refactor status register operations

2014-03-26 Thread Lee Jones
From: Angus Clark angus.cl...@st.com This patch refactors the fsm_read_status() and fsm_write_status() code to support 1 or 2 byte operations, with a specified command. This allows us to remove device/register specific code, such as the N25Q fsm_wrvcr() function. The 'QE' configuration code is

[PATCH 15/15] mtd: st_spi_fsm: General tidy-up

2014-03-26 Thread Lee Jones
Due to the nature of the port (lots of copy/paste) much of the white-space is taken up by spaces instead of tab separators. This patch aims to change that. Signed-off-by: Lee Jones lee.jo...@linaro.org --- drivers/mtd/devices/st_spi_fsm.c | 367 --- 1 file

[PATCH 11/15] mtd: st_spi_fsm: Update the JEDEC probe to handle extended READIDs

2014-03-26 Thread Lee Jones
From: Angus Clark angus.cl...@st.com The previous code was based on 3-byte JEDEC IDs, with a possible 2-byte extension. However, devices are now emerging that return 6 or more bytes of READID data and the additional bytes are required to differentiate between variants or generations of similar

[PATCH] mm: remove unused arg of set_page_dirty_balance()

2014-03-26 Thread Miklos Szeredi
From: Miklos Szeredi mszer...@suse.cz There's only one caller of set_page_dirty_balance() and that will call it with page_mkwrite == 0. The page_mkwrite argument was unused since commit b827e496c893 mm: close page_mkwrite races. Signed-off-by: Miklos Szeredi mszer...@suse.cz ---

[PATCH 08/15] mtd: st_spi_fsm: Obtain and use EMI clock if provided

2014-03-26 Thread Lee Jones
ST's Common Clk Framework is now available. This patch ensures the FSM makes use of it by obtaining and enabling the EMI clock if provided. If system fails to provide the EMI clock FSM uses its original default rate. Signed-off-by: Lee Jones lee.jo...@linaro.org ---

[PATCH 14/15] mtd: st_spi_fsm: Provide mask to obtain correct boot device pins

2014-03-26 Thread Lee Jones
From: Christophe Kerello christophe.kere...@st.com This patch adds a mask to be able to get the right boot device selection. For example: for STiH415, value = SYSTEM_STATUS398[4:0] for STiH416, value = SYSTEM_STATUS2598[4:0] for STiH407, value = SYSTEM_STATUS5561[6:2] Signed-off-by:

[PATCH 12/15] mtd: st_spi_fsm: Update Spansion device entries

2014-03-26 Thread Lee Jones
From: Angus Clark angus.cl...@st.com This patch updates various Spansion device entries in the flash_types[] table: - Define full 6-byte READIDs for S25FL128Sx devices (and fix the 4th byte). This allows us to differentiate between S25FL129P and S25FL128S devices. - Add S25FL128Px

Re: [PATCH v11 0/3] mmc: sdhci-msm: Add support for Qualcomm chipsets

2014-03-26 Thread Georgi Djakov
Hello Chris, Ulf, Do you have any comments on the patches? The arch code that will use this driver is already in mainline. The regulators support seem to be still on its way, but this driver also works fine with dummy regulators. Thanks, Georgi On 03/10/2014 05:37 PM, Georgi Djakov wrote:

[PATCH 09/15] mtd: st_spi_fsm: Add support for Micron N25Q512A

2014-03-26 Thread Lee Jones
From: Nunzio Raciti nunzio.rac...@st.com This patch adds support for the Micron N25Q512A device as required by the B2147 (STiD127) board. Signed-off-by: Nunzio Raciti nunzio.rac...@st.com Signed-off-by: Lee Jones lee.jo...@linaro.org --- drivers/mtd/devices/st_spi_fsm.c | 2 ++ 1 file changed,

[PATCH 13/15] mtd: st_spi_fsm: Improve busy wait handling

2014-03-26 Thread Lee Jones
From: Angus Clark angus.cl...@st.com In this patch, the fsm_wait_busy() function is updated to a take a timeout parameter. This allows us to specify different timeout delays depending on the operation being performed. Previously, a fixed, worst-case delay (corresponding to the Chip Erase

[PATCH 10/15] mtd: st_spi_fsm: Add support for N25Q512 and N25Q00A devices

2014-03-26 Thread Lee Jones
From: Angus Clark angus.cl...@st.com This patch adds support for the Micron N25Q512 and N25Q00A Serial Flash devices. Unlike previous Micron devices, it is now mandatory to check the Flags Status Register following a Write or Erase operation. The N25Q512A device presents a further complication

[PATCH 06/15] mtd: st_spi_fsm: Add support for Macronix MX25L3255E

2014-03-26 Thread Lee Jones
From: Angus Clark angus.cl...@st.com This patch adds support for the Macronix MX25L3255E device. Unlike the other Macronix devices we have seen, this device supports WRITE_1_4_4 at reasonable frequencies. Rather than masking out WRITE_1_4_4 support altogether, we now rely on the table

[PATCH 07/15] mtd: st_spi_fsm: Extend fsm_clear_fifo to handle unwanted bytes

2014-03-26 Thread Lee Jones
From: Angus Clark angus.cl...@st.com Under certain conditions, the SPI-FSM Controller can be left in a state where the data FIFO is not entirely empty. This can lead to problems where subsequent data transfers appear to have been shifted by a number of unidentified bytes. One simple example

[PATCH 05/15] mtd: st_spi_fsm: Add Spansion S25FL032P to device table

2014-03-26 Thread Lee Jones
From: Angus Clark angus.cl...@st.com Add Spansion S25FL032P to the list of known devices. Signed-off-by: Angus Clark angus.cl...@st.com Signed-off-by: Lee Jones lee.jo...@linaro.org --- drivers/mtd/devices/st_spi_fsm.c | 2 ++ 1 file changed, 2 insertions(+) diff --git

[PATCH 03/15] mtd: st_spi_fsm: Update Macronix 'QE' configuration

2014-03-26 Thread Lee Jones
From: Angus Clark angus.cl...@st.com Update the configuration of the Macronix 'QE' bit, such that we only set or clear the bit if required. Signed-off-by: Angus Clark angus.cl...@st.com Signed-off-by: Lee Jones lee.jo...@linaro.org --- drivers/mtd/devices/st_spi_fsm.c | 23

[PATCH 01/15] mtd: st_spi_fsm: Add Macronix MX25L25655E device

2014-03-26 Thread Lee Jones
From: Angus Clark angus.cl...@st.com Add Macronix MX25L25655E to the list of known devices. Signed-off-by: Angus Clark angus.cl...@st.com Signed-off-by: Lee Jones lee.jo...@linaro.org --- drivers/mtd/devices/st_spi_fsm.c | 3 +++ 1 file changed, 3 insertions(+) diff --git

[PATCH 02/15] mtd: st_spi_fsm: Update Macronix 32-bit addressing support

2014-03-26 Thread Lee Jones
From: Angus Clark angus.cl...@st.com Support for the Macronix 32-bit addressing scheme was originally developed using the MX25L25635E device. As is often the case, it was found that the presence of a WAIT instruction was required for the EN4B/EX4B FSM Sequence to complete. (It is known that the

[PATCH 00/15] mtd: st_spi_fsm: Align with ST's internal development

2014-03-26 Thread Lee Jones
Hi Brian, all, This patch-set updates ST's FSM SPI-NOR driver with all the internal goodness which has happened since the initial (now upstreamed) snapshot was taken. It covers just over 6 months worth of internal development and bug-fixes. A final whitespace clean-up is also appended to the set

[PATCH v2] usb: gadget: zero: Fix SuperSpeed enumeration for alternate setting 1

2014-03-26 Thread Roger Quadros
It was impossible to enumerate on a SuperSpeed (XHCI) host with alternate setting = 1 due to the wrongly set 'bMaxBurst' field in the SuperSpeed Endpoint Companion descriptor. Testcase: host modprobe -r usbtest; modprobe usbtest alt=1 device modprobe g_zero plug device to SuperSpeed port on the

[PATCH] staging: vt6655,vt6656: fix sparse error unexpected unlock

2014-03-26 Thread Cédric Cabessa
Signed-off-by: Cédric Cabessa c...@ryick.net --- drivers/staging/vt6655/wpactl.c | 3 ++- drivers/staging/vt6656/firmware.c | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) This patch is part of the eudyptula challenge. diff --git a/drivers/staging/vt6655/wpactl.c

Re: [PATCH v3] x86, irq: get correct available vectors for cpu disable

2014-03-26 Thread Linn Crosetto
On Tue, Mar 25, 2014 at 05:18:53PM -0700, Yinghai Lu wrote: On Tue, Mar 25, 2014 at 1:03 PM, Linn Crosetto l...@hp.com wrote: Thanks for the patch. On Tue, Jan 28, 2014 at 01:54:05PM -0800, Yinghai Lu wrote: used_vectors is a bitmap for vectors that are not tracked in per_cpu

Re: [Xen-devel] Xen-unstable Linux 3.14-rc3 and 3.13 Network troubles bisected

2014-03-26 Thread Sander Eikelenboom
Wednesday, March 26, 2014, 5:25:21 PM, you wrote: -Original Message- From: Sander Eikelenboom [mailto:li...@eikelenboom.it] Sent: 26 March 2014 16:07 To: Paul Durrant Cc: Wei Liu; annie li; Zoltan Kiss; xen-de...@lists.xen.org; Ian Campbell; linux- kernel; net...@vger.kernel.org

Re: [PATCH v3] touchscreen: tps6507x-ts: only poll while touch event is occurring

2014-03-26 Thread Jon Ringle
I've not heard anything regarding this patch. I just want to make sure it doesn't get lost :) Jon On Wed, Mar 5, 2014 at 3:09 AM, j...@ringle.org wrote: From: Jon Ringle jrin...@gridpoint.com (Resending without corporate dislaimer in email footer) We only need to poll for touch events

Re: [PATCH 1/5] PM / Runtime: dev_pm_info.runtime_error is signed

2014-03-26 Thread Pavel Machek
On Mon 2014-03-24 21:31:27, Geert Uytterhoeven wrote: From: Geert Uytterhoeven geert+rene...@glider.be dev_pm_info.runtime_error has always been a signed int, to store a signed error code. Correct the documentation. Series looks ok to me. Acked-by: Pavel Machek pa...@ucw.cz -- To

Re: [PATCH] video: da8xx-fb: Add support for Densitron 84-0023-001T

2014-03-26 Thread Jon Ringle
I've not heard anything regarding this patch. I just want to make sure it's not lost :) Jon On Wed, Mar 5, 2014 at 1:05 PM, j...@ringle.org wrote: From: Jon Ringle jrin...@gridpoint.com Signed-off-by: Jon Ringle jrin...@gridpoint.com --- drivers/video/da8xx-fb.c | 14 ++ 1

Re: [PATCH] video: da8xx-fb: Fix casting of info-pseudo_palette

2014-03-26 Thread Jon Ringle
I've not heard anything regarding this patch. I just want to make sure it's not lost :) Jon On Wed, Mar 5, 2014 at 3:19 AM, j...@ringle.org wrote: From: Jon Ringle jrin...@gridpoint.com (Resending without corporate disclaimer in email footer) The casting to (u16 *) on info-pseudo_palette

Re: [PATCH] ata: fix Marvell SATA driver dependencies

2014-03-26 Thread Bartlomiej Zolnierkiewicz
Hi, On Wednesday, March 26, 2014 05:23:02 PM Andrew Lunn wrote: On Wed, Mar 26, 2014 at 05:19:02PM +0100, Bartlomiej Zolnierkiewicz wrote: Make sata_mv host driver depend on PCI || ARCH_KIRKWOOD || ARCH_MVEBU || ARCH_ORION5X config options as Marvell SATA support covers both Marvell PCI

[PATCH] ARM: VFP: Fix emulation of multiply accumulate instructions

2014-03-26 Thread Jay Foad
The emulation for single and double precision multiply accumulate instructions correctly normalised any denormal values in the operand registers, but failed to normalise the destination (accumulator) register. This fixes https://bugzilla.kernel.org/show_bug.cgi?id=70501 Signed-off-by: Jay Foad

[PATCH v2] ata: fix Marvell SATA driver dependencies

2014-03-26 Thread Bartlomiej Zolnierkiewicz
Make sata_mv host driver depend on PCI || ARCH_KIRKWOOD || ARCH_MVEBU || ARCH_ORION5X config options as Marvell SATA support covers both Marvell PCI devices and Marvell Kirkwood, Armada 370/XP and Orion5x SoCs (for non-PCI devices the driver to work requires suitable device tree node to be

Re: [PATCH] ata: fix Marvell SATA driver dependencies

2014-03-26 Thread One Thousand Gnomes
On Wed, 26 Mar 2014 17:23:02 +0100 Andrew Lunn and...@lunn.ch wrote: On Wed, Mar 26, 2014 at 05:19:02PM +0100, Bartlomiej Zolnierkiewicz wrote: Make sata_mv host driver depend on PCI || ARCH_KIRKWOOD || ARCH_MVEBU || ARCH_ORION5X config options as Marvell SATA support covers both Marvell

Re: btrfs: lock inversion between delayed_node-mutex and found-groups_sem

2014-03-26 Thread Jeff Mahoney
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 3/17/14, 9:05 AM, David Sterba wrote: On Fri, Mar 14, 2014 at 08:12:16PM -0400, Sasha Levin wrote: While fuzzing with trinity inside a KVM tools guest running the latest -next kernel I've stumbled on the following: [ 788.458756]CPU0

Re: [PATCH] input: misc: Add driver for Intel Bay Trail GPIO buttons

2014-03-26 Thread One Thousand Gnomes
On Wed, 26 Mar 2014 13:01:36 +0800 Zhu, Lejun lejun@linux.intel.com wrote: This patch adds support for the GPIO buttons on some Intel Bay Trail tablets originally running Windows 8. The ACPI description of these buttons follows Windows ACPI Design Guide for SoC Platforms. I'm not sure

Re: [PATCH v3] x86, irq: get correct available vectors for cpu disable

2014-03-26 Thread Yinghai Lu
On Wed, Mar 26, 2014 at 9:50 AM, Linn Crosetto l...@hp.com wrote: On Tue, Mar 25, 2014 at 05:18:53PM -0700, Yinghai Lu wrote: Just noting that not all bits above first_system_vector are set in the bitmap, so the comment in asm/desc.h and the change log could be misleading: /* used_vectors is

[PATCH] random32: avoid attempt to late reseed if in the middle of seeding

2014-03-26 Thread Sasha Levin
Commit 4af712e8df (random32: add prandom_reseed_late() and call when nonblocking pool becomes initialized) has added a late reseed stage that happens as soon as the nonblocking pool is marked as initialized. This fails in the case that the nonblocking pool gets initialized during

Re: [PATCH] ata: fix Marvell SATA driver dependencies

2014-03-26 Thread Bartlomiej Zolnierkiewicz
Hi, On Wednesday, March 26, 2014 04:59:04 PM One Thousand Gnomes wrote: On Wed, 26 Mar 2014 17:23:02 +0100 Andrew Lunn and...@lunn.ch wrote: On Wed, Mar 26, 2014 at 05:19:02PM +0100, Bartlomiej Zolnierkiewicz wrote: Make sata_mv host driver depend on PCI || ARCH_KIRKWOOD || ARCH_MVEBU

Re: [PATCH 6/8] printk: Start printing handover kthreads on demand

2014-03-26 Thread One Thousand Gnomes
On Tue, 25 Mar 2014 18:54:59 +0100 Jan Kara j...@suse.cz wrote: Start kthreads for handing over printing only when printk.offload_chars is set to value 0 (i.e., when print offloading gets enabled). The original set it was suggested that having all these threads around that 99.9% of users

RE: [Xen-devel] Xen-unstable Linux 3.14-rc3 and 3.13 Network troubles bisected

2014-03-26 Thread Paul Durrant
-Original Message- From: Sander Eikelenboom [mailto:li...@eikelenboom.it] Sent: 26 March 2014 16:54 To: Paul Durrant Cc: Wei Liu; annie li; Zoltan Kiss; xen-de...@lists.xen.org; Ian Campbell; linux- kernel; net...@vger.kernel.org Subject: Re: [Xen-devel] Xen-unstable Linux

Re: [PATCH RFC] PM / Hibernate: no kernel_power_off when pm_power_off NULL

2014-03-26 Thread Sebastian Capella
On 20 March 2014 14:35, One Thousand Gnomes gno...@lxorguk.ukuu.org.uk wrote: if (pm_power_off) pm_power_off(); ## It really should do while (1) here. while(1) cpu_relax(); or similar at minimum. Hi Alan, Pavel, I prepared the changes

Re: [PATCH 8/8] printk: Add config option for disabling printk offloading

2014-03-26 Thread One Thousand Gnomes
On Tue, 25 Mar 2014 18:55:01 +0100 Jan Kara j...@suse.cz wrote: Necessity for offloading of printing was observed only for large systems. So add a config option (disabled by default) which removes most of the overhead added by this functionality. If its an option it'll not get used. It ought

Re: [PATCH 11/14] hrtimer: remove active_bases field from struct hrtimer_cpu_base

2014-03-26 Thread Thomas Gleixner
On Wed, 26 Mar 2014, Viresh Kumar wrote: Active_bases field of struct hrtimer_cpu_base is used at only one place, i.e. hrtimer_interrupt() and at that place too we can easily use timerqueue_getnext() instead to achieve the same result. I don't think this will have any performance

Re: [PATCH 04/14] hrtimer: use base-index instead of basenum in switch_hrtimer_base()

2014-03-26 Thread Thomas Gleixner
On Wed, 26 Mar 2014, Srivatsa S. Bhat wrote: On 03/26/2014 04:51 PM, Viresh Kumar wrote: In switch_hrtimer_base() we have created a local variable basenum which is set to base-index. This variable is used at only one place. It makes code more readable if we remove this variable use

Re: [Xen-devel] Xen-unstable Linux 3.14-rc3 and 3.13 Network troubles bisected

2014-03-26 Thread Sander Eikelenboom
Hi Paul, Seems your last mail arrived in pretty bad shape (truncated) in my mailbox .. -- Sander Wednesday, March 26, 2014, 6:16:49 PM, you wrote: -Original Message- From: Sander Eikelenboom [mailto:li...@eikelenboom.it] Sent: 26 March 2014 16:54 To: Paul Durrant Cc: Wei Liu;

Re: fs: remove now stale label in anon_inode_init()

2014-03-26 Thread Dave Jones
On Wed, Mar 26, 2014 at 12:45:10AM +, Linux Kernel wrote: Gitweb: http://git.kernel.org/linus/;a=commit;h=fce7fc79c8f7188dfc5eafa1b937bcc3c5a4c2f5 Commit: fce7fc79c8f7188dfc5eafa1b937bcc3c5a4c2f5 Parent: d6f2589ad561aa5fa39f347eca6942668b7560a1 Author: Linus Torvalds

Re: [PATCH] ata: fix Marvell SATA driver dependencies

2014-03-26 Thread One Thousand Gnomes
shows up it is not enough to enable driver for it to make it work as you also need to add a node describing your SATA MV variant to your SoC device tree file (which requires updating kernel source anyway). You still have to recompile your kernel to update your device tree.. how... quaint ;-).

Re: [PATCH v2] ata: fix Marvell SATA driver dependencies

2014-03-26 Thread Andrew Lunn
On Wed, Mar 26, 2014 at 05:59:03PM +0100, Bartlomiej Zolnierkiewicz wrote: Make sata_mv host driver depend on PCI || ARCH_KIRKWOOD || ARCH_MVEBU || ARCH_ORION5X config options as Marvell SATA support covers both Marvell PCI devices and Marvell Kirkwood, Armada 370/XP and Orion5x SoCs I would

Re: [PATCH] [media] uvcvideo: Fix marking buffer erroneous in case of FID toggling

2014-03-26 Thread Laurent Pinchart
Hi Anton, Thank you for the patch. On Tuesday 25 March 2014 08:40:57 Anton Leontiev wrote: Set error bit for incomplete buffers when end of buffer is detected by FID toggling (for example when last transaction with EOF is lost). This prevents passing incomplete buffers to the userspace. But

Re: [PATCH] Add efi_early_call() macro

2014-03-26 Thread Roy Franz
On Wed, Mar 26, 2014 at 1:59 AM, Matt Fleming m...@console-pimps.org wrote: On Tue, 25 Mar, at 03:40:30PM, Roy Franz wrote: Add the efi_early_call() macro to invoke functions in the efi_early structure. Using a macro for these invocations allows the arm32/arm64 architectures to define the

RE: [Xen-devel] Xen-unstable Linux 3.14-rc3 and 3.13 Network troubles bisected

2014-03-26 Thread Paul Durrant
Re-send shortened version... -Original Message- From: Sander Eikelenboom [mailto:li...@eikelenboom.it] Sent: 26 March 2014 16:54 To: Paul Durrant Cc: Wei Liu; annie li; Zoltan Kiss; xen-de...@lists.xen.org; Ian Campbell; linux- kernel; net...@vger.kernel.org Subject: Re:

Re: [PATCH] Add initcall_blacklist kernel parameter

2014-03-26 Thread Prarit Bhargava
On 03/26/2014 12:34 PM, Josh Boyer wrote: On Wed, Mar 26, 2014 at 10:00 AM, Prarit Bhargava pra...@redhat.com wrote: When a module is built into the kernel, the modules's module_init() function becomes an initcall. Debugging built in kernel modules is typically done by changing the .config,

RE: [Xen-devel] Xen-unstable Linux 3.14-rc3 and 3.13 Network troubles bisected

2014-03-26 Thread Paul Durrant
-Original Message- From: Paul Durrant Sent: 26 March 2014 17:47 To: 'Sander Eikelenboom' Cc: Wei Liu; annie li; Zoltan Kiss; xen-de...@lists.xen.org; Ian Campbell; linux- kernel; net...@vger.kernel.org Subject: RE: [Xen-devel] Xen-unstable Linux 3.14-rc3 and 3.13 Network troubles

Re: [PATCH] random32: avoid attempt to late reseed if in the middle of seeding

2014-03-26 Thread Hannes Frederic Sowa
On Wed, Mar 26, 2014 at 01:12:38PM -0400, Sasha Levin wrote: Commit 4af712e8df (random32: add prandom_reseed_late() and call when nonblocking pool becomes initialized) has added a late reseed stage that happens as soon as the nonblocking pool is marked as initialized. This fails in the case

Re: [PATCH 01/15] mtd: st_spi_fsm: Add Macronix MX25L25655E device

2014-03-26 Thread Geert Uytterhoeven
Hi Lee, On Wed, Mar 26, 2014 at 5:39 PM, Lee Jones lee.jo...@linaro.org wrote: From: Angus Clark angus.cl...@st.com Add Macronix MX25L25655E to the list of known devices. Signed-off-by: Angus Clark angus.cl...@st.com Signed-off-by: Lee Jones lee.jo...@linaro.org ---

Re: [PATCH 04/14] hrtimer: use base-index instead of basenum in switch_hrtimer_base()

2014-03-26 Thread Srivatsa S. Bhat
On 03/26/2014 11:01 PM, Thomas Gleixner wrote: On Wed, 26 Mar 2014, Srivatsa S. Bhat wrote: On 03/26/2014 04:51 PM, Viresh Kumar wrote: In switch_hrtimer_base() we have created a local variable basenum which is set to base-index. This variable is used at only one place. It makes code more

Re: [Xen-devel] Xen-unstable Linux 3.14-rc3 and 3.13 Network troubles bisected

2014-03-26 Thread Sander Eikelenboom
Wednesday, March 26, 2014, 6:46:06 PM, you wrote: Re-send shortened version... -Original Message- From: Sander Eikelenboom [mailto:li...@eikelenboom.it] Sent: 26 March 2014 16:54 To: Paul Durrant Cc: Wei Liu; annie li; Zoltan Kiss; xen-de...@lists.xen.org; Ian Campbell; linux-

RE: [Xen-devel] Xen-unstable Linux 3.14-rc3 and 3.13 Network troubles bisected

2014-03-26 Thread Paul Durrant
-Original Message- From: Sander Eikelenboom [mailto:li...@eikelenboom.it] Sent: 26 March 2014 18:08 To: Paul Durrant Cc: Wei Liu; annie li; Zoltan Kiss; xen-de...@lists.xen.org; Ian Campbell; linux- kernel; net...@vger.kernel.org Subject: Re: [Xen-devel] Xen-unstable Linux

[PATCH] clk: register fixed-clock only if #clock-cells property is present

2014-03-26 Thread Sylwester Nawrocki
After commit 1771b10d605d26ccee771a7fb4b08718c124097a clk: respect the clock dependencies in of_clk_init the order of registering clock providers and their corresponding clocks may change. This commit currently causes a regression on Exynos4 platforms, where fixed clocks are now being registered

Re: [PATCH] Add initcall_blacklist kernel parameter

2014-03-26 Thread Josh Boyer
On Wed, Mar 26, 2014 at 1:47 PM, Prarit Bhargava pra...@redhat.com wrote: On 03/26/2014 12:34 PM, Josh Boyer wrote: On Wed, Mar 26, 2014 at 10:00 AM, Prarit Bhargava pra...@redhat.com wrote: When a module is built into the kernel, the modules's module_init() function becomes an initcall.

Re: [PATCH] clk: register fixed-clock only if #clock-cells property is present

2014-03-26 Thread Fabio Estevam
...@samsung.com Still not able to boot with this patch applied: Starting kernel ... Uncompressing Linux... done, booting the kernel. Booting Linux on physical CPU 0x0 Linux version 3.14.0-rc8-next-20140326+ (fabio@fabio-Latitude-E6410) (gcc version 4.7.3 (Ubuntu/Linaro 4.7.3-1ubuntu1) ) #948 SMP Wed Mar 26 15

Re: pull request: bluetooth-next 2014-03-24

2014-03-26 Thread Gustavo Padovan
Hi John, 2014-03-24 Gustavo Padovan gust...@padovan.org: Hi John, Here follow another set of patches to 3.15. This is mostly a bug fix pull request with the exception of one commit from Marcel which adds tracking to the current configured LE scan type parameter. There is one more fix that

[tip:x86/efi] x86, efi: Abstract x86 efi_early calls

2014-03-26 Thread tip-bot for Matt Fleming
Commit-ID: 204b0a1a4b92612c957a042df1a3be0e9cc79391 Gitweb: http://git.kernel.org/tip/204b0a1a4b92612c957a042df1a3be0e9cc79391 Author: Matt Fleming matt.flem...@intel.com AuthorDate: Sat, 22 Mar 2014 10:09:01 + Committer: H. Peter Anvin h...@linux.intel.com CommitDate: Wed, 26 Mar

RE: [Xen-devel] Xen-unstable Linux 3.14-rc3 and 3.13 Network troubles bisected

2014-03-26 Thread Paul Durrant
-Original Message- From: netdev-ow...@vger.kernel.org [mailto:netdev- ow...@vger.kernel.org] On Behalf Of Paul Durrant Sent: 26 March 2014 18:16 To: Sander Eikelenboom Cc: Wei Liu; annie li; Zoltan Kiss; xen-de...@lists.xen.org; Ian Campbell; linux- kernel; net...@vger.kernel.org

Re: [PATCH] ixen-netback: fix trivial printf format build warning

2014-03-26 Thread David Miller
From: SeongJae Park sj38.p...@gmail.com Date: Wed, 26 Mar 2014 19:34:21 +0900 Thank you for let me know kindly :) Also your fix wasn't correct. You changed the code to use %lx but the type isn't a long. It's the difference between two pointers, which is ptrdiff_t. The proper printf format

Re: [PATCH 1/1] Avoid having to provide a fake/invalid fd and path

2014-03-26 Thread Jan Kara
On Wed 26-03-14 16:30:05, xypron.g...@gmx.de wrote: From: Heinrich Schuchardt xypron.g...@gmx.de https://lkml.org/lkml/2011/1/12/112 holds a patch by Tvrtko Ursulin Avoid having to provide a fake/invalid fd and path when flushing marks Currently for a group to flush marks it has set

Re: [PATCH] ixen-netback: fix trivial printf format build warning

2014-03-26 Thread SeongJae Park
On Thu, Mar 27, 2014 at 3:46 AM, David Miller da...@davemloft.net wrote: From: SeongJae Park sj38.p...@gmail.com Date: Wed, 26 Mar 2014 19:34:21 +0900 Thank you for let me know kindly :) Also your fix wasn't correct. You changed the code to use %lx but the type isn't a long. It's the

Re: [PATCH] staging: vme: fix memory leak in vme_user_probe()

2014-03-26 Thread Aaron Sierra
- Original Message - From: Daeseok Youn daeseok.y...@gmail.com Sent: Tuesday, March 25, 2014 10:01:48 PM Subject: [PATCH] staging: vme: fix memory leak in vme_user_probe() If vme_master_request() returns NULL when it failed, it need to free buffers for master. And also removes

Re: [patch 00/16] timers: Plug debugobject leaks and use del_timer_sync() in exit/teardown

2014-03-26 Thread Julia Lawall
I was looking at some cases that are marked as possibly insufficient. Is the issue that mod_timer or add_timer is called in some function that is not the timer interrupt handler (or the function that starts the timer running in the first place)? julia On Tue, 25 Mar 2014, Thomas Gleixner

<    3   4   5   6   7   8   9   10   11   >