RE: [PATCH 1/4] serial: xuartps: Fix termios issue for enabling odd parity

2015-08-17 Thread Anirudha Sarangi
Hi, > -Original Message- > From: Peter Hurley [mailto:pe...@hurleysoftware.com] > Sent: Monday, August 17, 2015 9:54 PM > To: Anirudha Sarangi; Michal Simek > Cc: linux-kernel@vger.kernel.org; mon...@monstr.eu; Soren Brinkmann; Jiri > Slaby; linux-ser...@vger.kernel.org; Greg

Re: [PATCH 1/2] USB: symbolserial: Use usb_get_serial_port_data

2015-08-17 Thread Johan Hovold
On Mon, Aug 17, 2015 at 09:06:15AM -0700, Greg Kroah-Hartman wrote: > On Mon, Aug 17, 2015 at 05:31:46PM +0200, Philipp Hachtmann wrote: > > The driver used usb_get_serial_data(port->serial) which compiled but > > resulted > > in a NULL pointer being returned (and subsequently used). I did not go

Re: [PATCH] clk: rockchip: add pclk_cpu to the list of rk3188 critical clocks

2015-08-17 Thread Heiko Stuebner
Hi, Am Montag, 17. August 2015, 19:38:22 schrieb Michael Niewoehner: > gpio clock is getting disabled to save power but pclk_cpu is needed for > act8865 regulator Please refine the commit message a bit :-) . Something along pclk_cpu needs to keep running and with the recent gpio clock handling

Re: [PATCH 4/5] staging: wilc1000: use pr_* instead of printk

2015-08-17 Thread Raphaël Beamonte
2015-08-17 13:47 GMT-04:00 Dan Carpenter : >> - printk("[Sendconfigpkt]Get Timed out\n"); >> + pr_debug("[Sendconfigpkt]Get Timed out\n"); > > > Possibly pr_err()? Yep. My mistake. I'll do the same for Set Timed Out also! >> -

Re: [PATCH V8 08/25] perf tools: Add Intel BTS support

2015-08-17 Thread Arnaldo Carvalho de Melo
Em Mon, Aug 17, 2015 at 08:43:09PM +0300, Adrian Hunter escreveu: > On 17/08/2015 6:52 p.m., Arnaldo Carvalho de Melo wrote: > > 1.92% usleep [unknown] [.] 0x7fa0ff695086 > > 1.60% usleep [unknown] [.] 0x811c91d0 > > 1.48% usleep [unknown]

RE: [PATCH] x86: fix build in !CONFIG_KEXEC_CORE case

2015-08-17 Thread KY Srinivasan
> -Original Message- > From: Vitaly Kuznetsov [mailto:vkuzn...@redhat.com] > Sent: Tuesday, August 11, 2015 6:36 AM > To: x...@kernel.org > Cc: Thomas Gleixner ; Ingo Molnar > ; H. Peter Anvin ; linux- > ker...@vger.kernel.org; Greg KH ; KY > Srinivasan ; Jim Davis ; linux- > next >

Re: [PATCH 3/7] drm/vc4: Add KMS support for Raspberry Pi.

2015-08-17 Thread Eric Anholt
r<#secure method=pgpmime mode=sign> Stephen Warren writes: > On 08/12/2015 06:56 PM, Eric Anholt wrote: >> This is the start of a full VC4 driver. Right now this just supports >> configuring the display using a pre-existing video mode (because >> changing the pixel clock isn't available yet,

[PATCH] clk: rockchip: add pclk_cpu to the list of rk3188 critical clocks

2015-08-17 Thread Michael Niewoehner
gpio clock is getting disabled to save power but pclk_cpu is needed for act8865 regulator Signed-off-by: Michael Niewoehner --- drivers/clk/rockchip/clk-rk3188.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/clk/rockchip/clk-rk3188.c b/drivers/clk/rockchip/clk-rk3188.c index

Re: [RFCv5 PATCH 41/46] sched/fair: add triggers for OPP change requests

2015-08-17 Thread Rafael J. Wysocki
On Saturday, August 15, 2015 02:48:17 PM Peter Zijlstra wrote: > > So this OPP thing, I think that got mentioned once earlier in this patch > set, wth is that? OPP stands for Operating Performance Points. It is a library for representing working clock-voltage combinations. Described in

RE: linux-next: Tree for Aug 17 (mshyperv.c)

2015-08-17 Thread KY Srinivasan
> -Original Message- > From: Randy Dunlap [mailto:rdun...@infradead.org] > Sent: Monday, August 17, 2015 10:35 AM > To: Stephen Rothwell ; linux-n...@vger.kernel.org > Cc: linux-kernel@vger.kernel.org; de...@driverdev.osuosl.org; KY Srinivasan > ; Haiyang Zhang > Subject: Re:

Re: [PATCH] [PATCH v4] mtd:spi-nor: Add Altera Quad SPI Driver

2015-08-17 Thread Marek Vasut
On Monday, August 17, 2015 at 06:03:38 PM, Brian Norris wrote: Hi! [...] > > Hi Brian, > > It is really unfortunate that this controller is not able to read full > > JEDEC ID. It only can provide 1 byte ID. I did discuss with IP > > designer about this, but it is really unfortunate that they

Re: [PATCH 4/5] staging: wilc1000: use pr_* instead of printk

2015-08-17 Thread Dan Carpenter
On Mon, Aug 17, 2015 at 12:08:36PM -0400, Raphaël Beamonte wrote: > Signed-off-by: Raphaël Beamonte > --- > drivers/staging/wilc1000/coreconfigurator.c | 4 ++-- > drivers/staging/wilc1000/linux_wlan.c| 8 +++ > drivers/staging/wilc1000/linux_wlan_common.h | 32 >

Re: [PATCH V8 08/25] perf tools: Add Intel BTS support

2015-08-17 Thread Adrian Hunter
On 17/08/2015 6:52 p.m., Arnaldo Carvalho de Melo wrote: Em Fri, Jul 17, 2015 at 07:33:43PM +0300, Adrian Hunter escreveu: Intel BTS support fits within the new auxtrace infrastructure. Recording is supporting by identifying the Intel BTS PMU, parsing options and setting up events. Decoding is

Re: [PATCH 2/5] staging: wilc1000: remove FREE_WILC_BUFFER()

2015-08-17 Thread Dan Carpenter
On Mon, Aug 17, 2015 at 12:08:34PM -0400, Raphaël Beamonte wrote: > It was just a wrapper around kfree(), so call that instead. > > Signed-off-by: Raphaël Beamonte > --- > + kfree(exported_g_tx_buf); > + exported_g_tx_buf = NULL; No need to add these new NULL assignments. The module is

[PATCH v3 2/4] thermal: power_allocator: relax the requirement of two passive trip points

2015-08-17 Thread Javi Merino
The power allocator governor currently requires that the thermal zone has at least two passive trip points. If there aren't, the governor refuses to bind to the thermal zone. This commit relaxes that requirement. Now the governor will bind to all thermal zones regardless of how many trip points

[PATCH v3 3/4] thermal: power_allocator: don't require tzp to be present for the thermal zone

2015-08-17 Thread Javi Merino
Thermal zones created using thermal_zone_device_create() may not have tzp. As the governor gets its parameters from there, allocate it while the governor is bound to the thermal zone so that it can operate in it. In this case, tzp is freed when the thermal zone switches to another governor. Cc:

[PATCH v3 4/4] thermal: power_allocator: exit early if there are no cooling devices

2015-08-17 Thread Javi Merino
Don't waste cycles in the power allocator governor's throttle function if there are no cooling devices and exit early. This commit doesn't change any functionality, but should provide better performance for the odd case of a thermal zone with trip points but without cooling devices. Cc: Zhang

[PATCH v3 1/4] thermal: power_allocator: relax the requirement of a sustainable_power in tzp

2015-08-17 Thread Javi Merino
The power allocator governor currently requires that a sustainable power is passed as part of the thermal zone's thermal zone parameters. If that parameter is not provided, it doesn't register with the thermal zone. While this parameter is strongly recommended for optimal performance, it doesn't

[PATCH v3 0/4] Let the power allocator thermal governor run on any thermal zone

2015-08-17 Thread Javi Merino
Relax the thermal governor requirements of sustainable_power and at least two trip points so that it can be bound to any thermal zone. Its behavior won't be optimal, it would be the best it can with the data provided. Changes since v2: - Typos suggested by Daniel Kurtz Changes since v1: -

Re: [v1 0/6] *** nps_enet fixups ***

2015-08-17 Thread David Miller
From: Noam Camus Date: Mon, 17 Aug 2015 08:58:33 +0300 > This patch set is a bunch of fixes to make nps_enet work correctly with > all platforms, i.e. real device, emulation system, and simulation system. > The main trigger for this patch set was that in our emulation system > the TX end

Re: linux-next: Tree for Aug 17 (mshyperv.c)

2015-08-17 Thread Randy Dunlap
On 08/17/15 03:55, Stephen Rothwell wrote: > Hi all, > > Changes since 20150813: > on i386 (for several days now): when CONFIG_KEXEC is not enabled: arch/x86/built-in.o: In function `hv_machine_crash_shutdown': mshyperv.c:(.text+0x2d9d4): undefined reference to

Re: [PATCH 3/3] mtd: nand: pxa3xx-nand: fix readid without keep_config

2015-08-17 Thread Ezequiel Garcia
On 16 August 2015 at 19:22, Robert Jarzmik wrote: > Ezequiel Garcia writes: > >> On 11 Aug 09:57 PM, Robert Jarzmik wrote: >>> The cases of READID detection are broken on pxa3xx. The reason is that >>> in the early stages of nand probing, ie. at pxa3xx_nand_scan(), we >>> always have : >>> -

Re: [PATCH 3/5] staging: wilc1000: replace MALLOC_WILC_BUFFER() macro to avoid possible memory leak

2015-08-17 Thread Dan Carpenter
On Mon, Aug 17, 2015 at 12:08:35PM -0400, Raphaël Beamonte wrote: > The MACRO_WILC_BUFFER() macro was using a return statement, and didn't > take care of possible memory leaks and subsequent bugs when it was failing > after succeeding some allocations. This patch corrects this behavior. > >

[PATCH v5 5/6] perf config: Add 'set' feature

2015-08-17 Thread Taeung Song
This patch consists of functions which can set specific config variables. For the syntax examples, perf config [options] [section.name[=value] ...] set specific config variables # perf config report.queue-size=100M report.children=true Signed-off-by: Taeung Song ---

[PATCH v5 2/6] perf config: Add '--system' and '--user' options to select which config file is used

2015-08-17 Thread Taeung Song
Which config file is used is decided in only perf_config(). And a perf-confg command depend on perf_config() getting config file path. So add '--system' and '--user' options to select which config file to be used without perf_config(). If file-options isn't used, default config file path is

[PATCH v5 4/6] perf config: Add 'get' functionality

2015-08-17 Thread Taeung Song
This patch consists of functions which can get specific config variables. For the syntax examples, perf config [options] [section.name ...] display key-value pairs of specific config variables # perf config report.queue-size report.children Signed-off-by: Taeung Song ---

[PATCH v5 6/6] perf config: Add a option 'remove' to perf-config

2015-08-17 Thread Taeung Song
A option 'remove' is to remove specific config variables. For the syntax examples, # perf config -r | --remove [section.name ...] Signed-off-by: Taeung Song --- tools/perf/Documentation/perf-config.txt | 6 ++ tools/perf/builtin-config.c | 26 -- 2

[PATCH v5 3/6] perf config: Add a option 'list-all' to perf-config

2015-08-17 Thread Taeung Song
A option 'list-all' is to display both current config variables and all possible config variables with default values. The syntax examples are like below perf config [options] display all perf config with default values. # perf config -a | --list-all Signed-off-by: Taeung Song ---

[PATCH v5 1/6] perf tools: Add 'perf-config' command

2015-08-17 Thread Taeung Song
The perf configuration file contains many variables which can make the perf command's action more effective. But looking through state of configuration is difficult and there's no knowing what kind of other variables except variables in perfconfig.example exist. So This patch adds 'perf-config'

Re: [PATCHv4 2/4] serial: imx: add runtime pm support

2015-08-17 Thread Eduardo Valentin
Bartlomiej, On Mon, Aug 17, 2015 at 05:40:59PM +0200, Bartlomiej Zolnierkiewicz wrote: > > Hi, > > On Friday, August 14, 2015 09:37:46 PM Eduardo Valentin wrote: > > This change introduces the runtime pm support on imx serial > > driver. The objective is to be able to idle the uart > > port

[PATCH v5 0/6] perf tools: Add 'perf-config' command

2015-08-17 Thread Taeung Song
So far, it is difficult that the state of perf configs is looked through and there's no knowing what kind of other variables except variables in perfconfig.example. Also perf configs can't be changed without manually modifying $HOME/.perfconfig or $(sysconfdir)/perfconfig file. So I suggest this

Re: [PATCH v2 3/3] power: wm831x_power: Support USB charger current limit management

2015-08-17 Thread Mark Brown
On Mon, Aug 17, 2015 at 09:07:08AM +0800, Peter Chen wrote: > On Fri, Aug 14, 2015 at 05:47:46PM +0800, Baolin Wang wrote: > > + 1500, > > + 1800, > > + 550, > > +}; > Why 550 is the last, but not 1800? You'd have to ask the hardware engineers who designed the chip. I suspect it's

Re: [RFT PATCH] ia64: generic_defconfig: convert to use libata PATA drivers

2015-08-17 Thread Sergei Shtylyov
On 08/17/2015 07:31 PM, Bartlomiej Zolnierkiewicz wrote: IDE subsystem has been deprecated since 2009 and the majority (if not all) of Linux distributions have switched to use libata for ATA support exclusively. However there are still some users (mostly old or/and embedded non-x86 systems)

Re: [ANNOUNCE] rt-tests-0.93

2015-08-17 Thread John Kacur
On Mon, 17 Aug 2015, Uwe Kleine-König wrote: > Hello John, > > On Thu, Aug 13, 2015 at 05:20:26PM +0100, John Kacur wrote: > > Clark Williams and I are pleased to announce a new rt-tests release. > > Note we have a new git location, > > make sure you update your repo to one of the following >

Re: [PATCH v2 2/3] gadget: Introduce the usb charger framework

2015-08-17 Thread Mark Brown
On Mon, Aug 17, 2015 at 11:03:26AM +0800, Baolin Wang wrote: > On 14 August 2015 at 23:27, Greg KH wrote: > > On Fri, Aug 14, 2015 at 05:47:45PM +0800, Baolin Wang wrote: > >> + * This program is free software; you can redistribute it and/or modify > >> + * it under the terms of the GNU General

Re: [PATCH] kdbus: create /sys/fs/kdbus with sysfs_create_mount_point()

2015-08-17 Thread David Herrmann
Hi On Fri, Aug 14, 2015 at 3:21 PM, Lubomir Rintel wrote: > Since 0cbee99269 user-namespace pull, if a kdbusfs is mounted on a > location that's not created with sysfs_create_mount_point the user > namespaces are not allowed to mount their sysfs instances. > > Signed-off-by: Lubomir Rintel >

Re: Linux 4.2-rc6 regression: RIP: e030:[] [] detach_if_pending+0x18/0x80

2015-08-17 Thread Eric Dumazet
From: Eric Dumazet On Mon, 2015-08-17 at 16:25 +0200, Sander Eikelenboom wrote: > Monday, August 17, 2015, 4:21:47 PM, you wrote: > > > On Mon, 2015-08-17 at 09:02 -0500, Jon Christopherson wrote: > >> This is very similar to the behavior I am seeing in this bug: > >> > >>

Re: [GIT PULL] x86 fixes

2015-08-17 Thread Linus Torvalds
On Mon, Aug 17, 2015 at 9:58 AM, H. Peter Anvin wrote: > That is not true. It *does* work, and I have tested it fairly recently. Ok, so it's not too badly broken. Good. Also, while it's been a long time since we needed FPU emulation on the i486sx, I don't recall the details of any of the (much

[RFT PATCH v2] ia64: generic_defconfig: convert to use libata PATA drivers

2015-08-17 Thread Bartlomiej Zolnierkiewicz
IDE subsystem has been deprecated since 2009 and the majority (if not all) of Linux distributions have switched to use libata for ATA support exclusively. However there are still some users (mostly old or/and embedded non-x86 systems) that have not converted from using IDE subsystem to libata

Re: [PATCH] dmaengine: fix balance of privatecnt inc/dec operations

2015-08-17 Thread Vinod Koul
On Fri, Aug 07, 2015 at 12:26:47PM +0200, Robert Baldyga wrote: > This patch increments privatecnt value and set DMA_PRIVATE in device > caps in dma_request_slave_channel() function. This is needed to keep > privatecnt increment/decrement balance. > > As function dma_release_channel() decrements

[RFT PATCH v2] ia64: tiger_defconfig: convert to use libata PATA drivers

2015-08-17 Thread Bartlomiej Zolnierkiewicz
IDE subsystem has been deprecated since 2009 and the majority (if not all) of Linux distributions have switched to use libata for ATA support exclusively. However there are still some users (mostly old or/and embedded non-x86 systems) that have not converted from using IDE subsystem to libata

[RFT PATCH v2] ia64: bigsur_defconfig: convert to use libata PATA drivers

2015-08-17 Thread Bartlomiej Zolnierkiewicz
IDE subsystem has been deprecated since 2009 and the majority (if not all) of Linux distributions have switched to use libata for ATA support exclusively. However there are still some users (mostly old or/and embedded non-x86 systems) that have not converted from using IDE subsystem to libata

[RFT PATCH v2] ia64: gensparse_defconfig: convert to use libata PATA drivers

2015-08-17 Thread Bartlomiej Zolnierkiewicz
IDE subsystem has been deprecated since 2009 and the majority (if not all) of Linux distributions have switched to use libata for ATA support exclusively. However there are still some users (mostly old or/and embedded non-x86 systems) that have not converted from using IDE subsystem to libata

Re: [PATCH] net/bonding: send arp in interval if no active slave

2015-08-17 Thread Jarod Wilson
On 2015-08-17 12:55 PM, Veaceslav Falico wrote: On Mon, Aug 17, 2015 at 12:23:03PM -0400, Jarod Wilson wrote: From: Uwe Koziolek With some very finicky switch hardware, active backup bonding can get into a situation where we play ping-pong between interfaces, trying to get one to come up as

Re: Boot crash with 659006b x86/x2apic: Split enable and setup function

2015-08-17 Thread Thomas Gleixner
On Sun, 9 Aug 2015, Laura Abbott wrote: > (missed the LKML cc apologies for the noise) > > On 08/09/2015 06:51 AM, Laura Abbott wrote: > > Hi, > > > > We received a report[1] of an early boot crash. The reporter had difficulty > > getting a full > > kernel log to view and only had a screenshot

[PATCH V4 2/3] arm64: support initrd outside kernel linear map

2015-08-17 Thread Mark Salter
The use of mem= could leave part or all of the initrd outside of the kernel linear map. This will lead to an error when unpacking the initrd and a probable failure to boot. This patch catches that situation and relocates the initrd to be fully within the linear map. Signed-off-by: Mark Salter

[PATCH V4 3/3] x86: use generic early mem copy

2015-08-17 Thread Mark Salter
The early_ioremap library now has a generic copy_from_early_mem() function. Use the generic copy function for x86 relocate_initrd(). Signed-off-by: Mark Salter --- arch/x86/kernel/setup.c | 22 +- 1 file changed, 1 insertion(+), 21 deletions(-) diff --git

[PATCH V4 1/3] mm: add utility for early copy from unmapped ram

2015-08-17 Thread Mark Salter
In some early boot circumstances, it may be necessary to copy from RAM outside the kernel linear mapping to mapped RAM. The need to relocate an initrd is one example in the x86 code. This patch creates a helper function based on current x86 code. Signed-off-by: Mark Salter ---

[PATCH V4 0/3] mm: Add generic copy from early unmapped RAM

2015-08-17 Thread Mark Salter
When booting an arm64 kernel w/initrd using UEFI/grub, use of mem= will likely cut off part or all of the initrd. This leaves it outside the kernel linear map which leads to failure when unpacking. The x86 code has a similar need to relocate an initrd outside of mapped memory in some cases. The

Re: [PATCH v4 2/5] irqchip, gicv3: Workaround for Cavium ThunderX erratum 23154

2015-08-17 Thread David Daney
On 08/14/2015 11:28 AM, Robert Richter wrote: From: Robert Richter This patch implements Cavium ThunderX erratum 23154. The gicv3 of ThunderX requires a modified version for reading the IAR status to ensure data synchronization. Since this is in the fast-path and called with each interrupt,

Re: [GIT PULL] x86 fixes

2015-08-17 Thread H. Peter Anvin
That is not true. It *does* work, and I have tested it fairly recently. On August 17, 2015 9:47:01 AM PDT, Linus Torvalds wrote: >On Mon, Aug 17, 2015 at 1:01 AM, Ingo Molnar wrote: >> >> Any objections against removing all of math-emu in v4.3? This would >simplify the >> FPU code in various

Re: [GIT PULL] x86 fixes

2015-08-17 Thread Linus Torvalds
On Mon, Aug 17, 2015 at 3:59 AM, Denys Vlasenko wrote: > > I have it running linux 2.6.20 and busybox here: > > http://busybox.net/live_bbox/live_bbox.html > > (or rather, *you* will have it running linux 2.6.20 inside your browser, > after you click on that link) Heh. I'm not sure that's a very

Re: [PATCH] net/bonding: send arp in interval if no active slave

2015-08-17 Thread Veaceslav Falico
On Mon, Aug 17, 2015 at 12:23:03PM -0400, Jarod Wilson wrote: From: Uwe Koziolek With some very finicky switch hardware, active backup bonding can get into a situation where we play ping-pong between interfaces, trying to get one to come up as the active slave. There seems to be an issue with

Re: [PATCH] mm: Change global memory state symbols to GPL-only

2015-08-17 Thread Ben Hutchings
On Mon, 2015-08-17 at 17:11 +0200, Michal Hocko wrote: > On Mon 17-08-15 16:56:32, Ben Hutchings wrote: > > On Mon, 2015-08-17 at 15:54 +0200, Michal Hocko wrote: > > > On Sun 16-08-15 01:42:27, Ben Hutchings wrote: > > > > Proprietary modules should not be able to touch vm_stat or participate > >

Re: [GIT PULL] x86 fixes

2015-08-17 Thread Linus Torvalds
On Mon, Aug 17, 2015 at 1:01 AM, Ingo Molnar wrote: > > Any objections against removing all of math-emu in v4.3? This would simplify > the > FPU code in various places beyond math-emu/. Hmm. I guess we could just try. The fact that you argue that the FP emulation likely hasn't worked for a few

Re: [PATCH v4 2/5] irqchip, gicv3: Workaround for Cavium ThunderX erratum 23154

2015-08-17 Thread Catalin Marinas
On Fri, Aug 14, 2015 at 08:28:02PM +0200, Robert Richter wrote: > +struct static_key is_cavium_thunderx = STATIC_KEY_INIT_FALSE; This could also be "static struct ...". BTW, the use of static_key directly is deprecated, so just do: static DEFINE_STATIC_KEY_FALSE(is_cavium_thunderx); -- Catalin

RE: [PATCH 2/4] serial: xuartps: Do not handle overrun errors under IGNPAR option

2015-08-17 Thread Anirudha Sarangi
Hi, > -Original Message- > From: Peter Hurley [mailto:pe...@hurleysoftware.com] > Sent: Monday, August 17, 2015 9:20 PM > To: Michal Simek > Cc: linux-kernel@vger.kernel.org; mon...@monstr.eu; Anirudha Sarangi; Soren > Brinkmann; Jiri Slaby; linux-ser...@vger.kernel.org; Greg

Re: [RFT PATCH] ia64: generic_defconfig: convert to use libata PATA drivers

2015-08-17 Thread Bartlomiej Zolnierkiewicz
Hi, On Monday, August 17, 2015 07:19:06 PM Sergei Shtylyov wrote: > Hello. > > On 08/17/2015 06:46 PM, Bartlomiej Zolnierkiewicz wrote: > > > IDE subsystem has been deprecated since 2009 and the majority > > (if not all) of Linux distributions have switched to use > > libata for ATA support

Re: [PATCH] driver/i2c/mux: Add register based mux i2c-mux-reg

2015-08-17 Thread York Sun
On 08/15/2015 01:23 PM, Wolfram Sang wrote: > On Tue, Jun 16, 2015 at 10:28:12AM -0700, York Sun wrote: >> Based on i2c-mux-gpio driver, similarly the register based mux >> switch from one bus to another by setting a single register. >> The register can be on PCIe bus, local bus, or any

[PATCH] i2c/designware: enable i2c controller to suspend/resume asynchronously

2015-08-17 Thread Fu, Zhonghui
Enable i2c controller to suspend/resume asynchronously. This can improve system suspend/resume speed. Signed-off-by: Zhonghui Fu --- drivers/i2c/busses/i2c-designware-platdrv.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/i2c/busses/i2c-designware-platdrv.c

[tip:x86/boot] x86/smpboot: Remove SIPI delays from cpu_up()

2015-08-17 Thread tip-bot for Len Brown
Commit-ID: a9bcaa02a5104ace6a9d9e4a9cd9192a9e7744d6 Gitweb: http://git.kernel.org/tip/a9bcaa02a5104ace6a9d9e4a9cd9192a9e7744d6 Author: Len Brown AuthorDate: Sun, 16 Aug 2015 11:45:47 -0400 Committer: Ingo Molnar CommitDate: Mon, 17 Aug 2015 10:42:27 +0200 x86/smpboot: Remove SIPI

[tip:x86/boot] x86/smpboot: Remove udelay(100) when polling cpu_callin_map

2015-08-17 Thread tip-bot for Len Brown
Commit-ID: 2d99af8e8fd6c2dea11ab539f7aba69c37b845b4 Gitweb: http://git.kernel.org/tip/2d99af8e8fd6c2dea11ab539f7aba69c37b845b4 Author: Len Brown AuthorDate: Sun, 16 Aug 2015 11:45:46 -0400 Committer: Ingo Molnar CommitDate: Mon, 17 Aug 2015 10:42:27 +0200 x86/smpboot: Remove

[tip:x86/boot] x86/smpboot: Remove udelay(100) when polling cpu_initialized_map

2015-08-17 Thread tip-bot for Len Brown
Commit-ID: 6e38f1e79d16f4fa9e5cf06792500e11c96a6f84 Gitweb: http://git.kernel.org/tip/6e38f1e79d16f4fa9e5cf06792500e11c96a6f84 Author: Len Brown AuthorDate: Sun, 16 Aug 2015 11:45:45 -0400 Committer: Ingo Molnar CommitDate: Mon, 17 Aug 2015 10:42:27 +0200 x86/smpboot: Remove

Re: [PATCH v2 2/7] userns: Simpilify MNT_NODEV handling.

2015-08-17 Thread Seth Forshee
On Mon, Aug 10, 2015 at 04:05:13PM -0500, Seth Forshee wrote: > From: "Eric W. Biederman" > > - Consolidate the testing if a device node may be opened in a new > function may_open_dev. > > - Move the check for allowing access to device nodes on filesystems > not mounted in the initial user

Re: [PATCH] watchdog: at91rm9200: Correct check for syscon_node_to_regmap() errors

2015-08-17 Thread Guenter Roeck
On 08/17/2015 09:19 AM, Bjorn Andersson wrote: syscon_node_to_regmap() returns a regmap or an ERR_PTR(). Signed-off-by: Bjorn Andersson Acked-by: Guenter Roeck --- drivers/watchdog/at91rm9200_wdt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

Re: [RFC PATCH] driver: base: memory: Maintain correct mem->end_section_nr when memory block is partially filled

2015-08-17 Thread Greg KH
On Mon, Aug 17, 2015 at 11:56:53AM +0530, Bharata B Rao wrote: > On Fri, Aug 14, 2015 at 10:27:53AM -0500, Nathan Fontenot wrote: > > On 08/13/2015 04:17 AM, Bharata B Rao wrote: > > > Last section of memory block is always initialized to > > > > > > mem->start_section_nr + sections_per_block - 1

[tip:x86/boot] x86/smpboot: Remove APIC.wait_for_init_deassert and atomic init_deasserted

2015-08-17 Thread tip-bot for Len Brown
Commit-ID: 656bba306827a44ed73b3f93f75bb3147de17fae Gitweb: http://git.kernel.org/tip/656bba306827a44ed73b3f93f75bb3147de17fae Author: Len Brown AuthorDate: Sun, 16 Aug 2015 11:45:48 -0400 Committer: Ingo Molnar CommitDate: Mon, 17 Aug 2015 10:42:28 +0200 x86/smpboot: Remove

Apply for low interest rate loans

2015-08-17 Thread Kingfisher Finance $$$
Good day, Contact us for a loan at 3% interest rate. For more info, Email me with amount needed, loan duration and phone number. Regards. Kingfisher Finance.. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More

Re: [PATCH v2 3/4] irqchip: GIC: Convert to EOImode == 1

2015-08-17 Thread Eric Auger
On 08/13/2015 10:28 AM, Marc Zyngier wrote: > So far, GICv2 has been used in with EOImode == 0. The effect of this in with? > mode is to perform the priority drop and the deactivation of the > interrupt at the same time. > > While this works perfectly for Linux (we only have a single priority), >

Re: [PATCH 1/4] serial: xuartps: Fix termios issue for enabling odd parity

2015-08-17 Thread Peter Hurley
On 08/17/2015 11:55 AM, Anirudha Sarangi wrote: > Hi, > >> -Original Message- >> From: Peter Hurley [mailto:pe...@hurleysoftware.com] >> Sent: Monday, August 17, 2015 9:09 PM >> To: Michal Simek >> Cc: linux-kernel@vger.kernel.org; mon...@monstr.eu; Anirudha Sarangi; Soren >> Brinkmann;

Re: [RFCv5 PATCH 32/46] sched: Energy-aware wake-up task placement

2015-08-17 Thread Leo Yan
Hi Morten, On Tue, Jul 07, 2015 at 07:24:15PM +0100, Morten Rasmussen wrote: > Let available compute capacity and estimated energy impact select > wake-up target cpu when energy-aware scheduling is enabled and the > system in not over-utilized (above the tipping point). > >

[PATCH] net/bonding: send arp in interval if no active slave

2015-08-17 Thread Jarod Wilson
From: Uwe Koziolek With some very finicky switch hardware, active backup bonding can get into a situation where we play ping-pong between interfaces, trying to get one to come up as the active slave. There seems to be an issue with the switch's arp replies either taking too long, or simply

Re: [PATCH 2/3] mmc: dw_mmc: simplify the SDMMC_CLKEN_LOW_PWR logic

2015-08-17 Thread Alim Akhtar
Hi Michal, On Mon, Aug 17, 2015 at 8:25 PM, Michal Suchanek wrote: > Hello, > > On 17 August 2015 at 16:42, Alim Akhtar wrote: >> HI >> >> On Mon, Aug 17, 2015 at 4:56 PM, Jaehoon Chung >> wrote: >>> On 08/17/2015 02:52 PM, Michal Suchanek wrote: Hello, On 17 August 2015 at

Re: [PATCH 1/2] clocksource: improve unstable clocksource detection

2015-08-17 Thread John Stultz
On Mon, Aug 17, 2015 at 9:14 AM, Shaohua Li wrote: > ping, any comments? > > On Wed, Aug 05, 2015 at 11:12:53AM -0700, Shaohua Li wrote: >> From time to time we saw TSC is marked as unstable in our systems, while >> the CPUs declare to have stable TSC. Looking at the clocksource unstable >>

Re: [PATCH] ARC: add negative dependency for VGA_CONSOLE

2015-08-17 Thread Geert Uytterhoeven
On Mon, Aug 17, 2015 at 5:52 PM, Yuriy Kolerov wrote: > Architectures which support VGA console must define screen_info > structurture from "uapi/linux/screen_info.h". Otherwise undefined > symbol error occurs. Usually it's defined in "setup.c" for each > architecture. > > If an architecture does

[PATCH] watchdog: at91rm9200: Correct check for syscon_node_to_regmap() errors

2015-08-17 Thread Bjorn Andersson
syscon_node_to_regmap() returns a regmap or an ERR_PTR(). Signed-off-by: Bjorn Andersson --- drivers/watchdog/at91rm9200_wdt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/watchdog/at91rm9200_wdt.c b/drivers/watchdog/at91rm9200_wdt.c index

Re: [RFT PATCH] ia64: generic_defconfig: convert to use libata PATA drivers

2015-08-17 Thread Sergei Shtylyov
Hello. On 08/17/2015 06:46 PM, Bartlomiej Zolnierkiewicz wrote: IDE subsystem has been deprecated since 2009 and the majority (if not all) of Linux distributions have switched to use libata for ATA support exclusively. However there are still some users (mostly old or/and embedded non-x86

[PATCH] i2c: enable i2c adapter to suspend/resume asynchronously

2015-08-17 Thread Fu, Zhonghui
Enable i2c adapter to suspend/resume asynchronously. This can improve system suspend/resume speed. Signed-off-by: Zhonghui Fu --- drivers/i2c/i2c-core.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/drivers/i2c/i2c-core.c b/drivers/i2c/i2c-core.c index

Re: [PATCH 2/4] serial: xuartps: Do not handle overrun errors under IGNPAR option

2015-08-17 Thread Peter Hurley
On 08/17/2015 11:58 AM, Anirudha Sarangi wrote: > Hi, > >> -Original Message- >> From: Peter Hurley [mailto:pe...@hurleysoftware.com] >> Sent: Monday, August 17, 2015 9:20 PM >> To: Michal Simek >> Cc: linux-kernel@vger.kernel.org; mon...@monstr.eu; Anirudha Sarangi; Soren >> Brinkmann;

Re: [PATCH v2 2/4] irqchip: GICv3: Don't deactivate interrupts forwarded to a guest

2015-08-17 Thread Eric Auger
Reviewed-by: Eric Auger On 08/13/2015 10:28 AM, Marc Zyngier wrote: > Commit 0a4377de3056 ("genirq: Introduce irq_set_vcpu_affinity() to > target an interrupt to a VCPU") added just what we needed at the > lowest level to allow an interrupt to be deactivated by a guest. > > When such a request

[PATCH] leds: syscon: Correct check for syscon_node_to_regmap() errors

2015-08-17 Thread Bjorn Andersson
syscon_node_to_regmap() returns a regmap or an ERR_PTR(). Signed-off-by: Bjorn Andersson --- drivers/leds/leds-syscon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/leds/leds-syscon.c b/drivers/leds/leds-syscon.c index d1660b039812..39fca4c9f1ee 100644 ---

RE: [PATCH 1/4] serial: xuartps: Fix termios issue for enabling odd parity

2015-08-17 Thread Anirudha Sarangi
Hi, > -Original Message- > From: Peter Hurley [mailto:pe...@hurleysoftware.com] > Sent: Monday, August 17, 2015 9:09 PM > To: Michal Simek > Cc: linux-kernel@vger.kernel.org; mon...@monstr.eu; Anirudha Sarangi; Soren > Brinkmann; Jiri Slaby; linux-ser...@vger.kernel.org; Greg

RE: [PATCH 4/4] serial: xuartps: Rewrite the interrupt handling logic

2015-08-17 Thread Anirudha Sarangi
Hi, > -Original Message- > From: Peter Hurley [mailto:pe...@hurleysoftware.com] > Sent: Monday, August 17, 2015 9:26 PM > To: Michal Simek > Cc: linux-kernel@vger.kernel.org; mon...@monstr.eu; Anirudha Sarangi; Soren > Brinkmann; Jiri Slaby; linux-ser...@vger.kernel.org; Greg

Re: [PATCH 1/2] clocksource: improve unstable clocksource detection

2015-08-17 Thread Shaohua Li
ping, any comments? On Wed, Aug 05, 2015 at 11:12:53AM -0700, Shaohua Li wrote: > From time to time we saw TSC is marked as unstable in our systems, while > the CPUs declare to have stable TSC. Looking at the clocksource unstable > detection, there are two problems: > - watchdog clock source

Re: [GIT PULL v2] extcon next for 4.3

2015-08-17 Thread Greg KH
On Mon, Aug 17, 2015 at 09:39:39AM +0900, Chanwoo Choi wrote: > Dear Greg, > > This is extcon-next full request for v4.3. I add detailed description of this > pull request on below. Please pull extcon with following updates. > > Changes from v1: > - Fix the merge conflict of extcon-palmas.c

Re: [PATCH v2 1/4] irqchip: GICv3: Convert to EOImode == 1

2015-08-17 Thread Eric Auger
Hi Marc, On 08/13/2015 10:28 AM, Marc Zyngier wrote: > So far, GICv3 has been used in with EOImode == 0. The effect of this > mode is to perform the priority drop and the deactivation of the > interrupt at the same time. > > While this works perfectly for Linux (we only have a single priority), >

[PATCH 0/5] staging: wilc1000: code improvements

2015-08-17 Thread Raphaël Beamonte
Hi, The first 3 patches of the following 5 are aimed to simplify the wilc_exported_buf.c macros as well as correct a potential memory leak from the use of the MALLOC_WILC_BUFFER one. The next 2 patches are correcting two kind of checkpatch warning reports in different files of the wilc1000

[PATCH 2/5] staging: wilc1000: remove FREE_WILC_BUFFER()

2015-08-17 Thread Raphaël Beamonte
It was just a wrapper around kfree(), so call that instead. Signed-off-by: Raphaël Beamonte --- drivers/staging/wilc1000/wilc_exported_buf.c | 15 +-- 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/drivers/staging/wilc1000/wilc_exported_buf.c

[PATCH 3/5] staging: wilc1000: replace MALLOC_WILC_BUFFER() macro to avoid possible memory leak

2015-08-17 Thread Raphaël Beamonte
The MACRO_WILC_BUFFER() macro was using a return statement, and didn't take care of possible memory leaks and subsequent bugs when it was failing after succeeding some allocations. This patch corrects this behavior. Signed-off-by: Raphaël Beamonte ---

[PATCH 4/5] staging: wilc1000: use pr_* instead of printk

2015-08-17 Thread Raphaël Beamonte
Signed-off-by: Raphaël Beamonte --- drivers/staging/wilc1000/coreconfigurator.c | 4 ++-- drivers/staging/wilc1000/linux_wlan.c| 8 +++ drivers/staging/wilc1000/linux_wlan_common.h | 32 ++-- drivers/staging/wilc1000/linux_wlan_sdio.c | 2 +-

[PATCH 5/5] staging: wilc1000: remove void function return statements that are not useful

2015-08-17 Thread Raphaël Beamonte
Signed-off-by: Raphaël Beamonte --- drivers/staging/wilc1000/host_interface.c| 4 drivers/staging/wilc1000/linux_wlan.c| 1 - drivers/staging/wilc1000/wilc_exported_buf.c | 2 -- drivers/staging/wilc1000/wilc_wlan.c | 3 --- drivers/staging/wilc1000/wilc_wlan_cfg.c |

[PATCH 1/5] staging: wilc1000: remove DECLARE_WILC_BUFFER()

2015-08-17 Thread Raphaël Beamonte
It was just a wrapper to initialize a variable. Initialize it directly instead. Signed-off-by: Raphaël Beamonte --- drivers/staging/wilc1000/wilc_exported_buf.c | 11 --- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/drivers/staging/wilc1000/wilc_exported_buf.c

[PATCH] i2c: enable i2c device to suspend/resume asynchronously

2015-08-17 Thread Fu, Zhonghui
Enable i2c device to suspend/resume asynchronously. This can improve system suspend/resume speed. Signed-off-by: Zhonghui Fu --- drivers/i2c/i2c-core.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/i2c/i2c-core.c b/drivers/i2c/i2c-core.c index c83e4d1..6587681

Re: [BUG/RFC] perf test fails on AMD CPUs

2015-08-17 Thread Andy Lutomirski
On Sun, Aug 16, 2015 at 9:36 PM, Borislav Petkov wrote: > On Mon, Aug 17, 2015 at 12:29:56AM +0200, Jiri Olsa wrote: >> hi, >> 'perf test 18' is failing on systems with AMD processor. > > Hmm, still using that b0rked test box? :-) > > Also, which kernel? > > There have been substantial changes to

Re: [PATCH 1/2] USB: symbolserial: Use usb_get_serial_port_data

2015-08-17 Thread Greg KH
On Mon, Aug 17, 2015 at 05:31:46PM +0200, Philipp Hachtmann wrote: > The driver used usb_get_serial_data(port->serial) which compiled but resulted > in a NULL pointer being returned (and subsequently used). I did not go deeper > into this but I guess this is a regression. > > Signed-off-by:

Re: [PATCH] [PATCH v4] mtd:spi-nor: Add Altera Quad SPI Driver

2015-08-17 Thread Brian Norris
On Mon, Jul 27, 2015 at 03:10:23PM +0800, Viet Nga Dao wrote: > On Sat, Jul 25, 2015 at 2:37 AM, Brian Norris > wrote: > > On Wed, Jun 03, 2015 at 12:30:44AM -0700, vn...@altera.com wrote: > >> From: VIET NGA DAO > >> > >> Altera Quad SPI Controller is a soft IP which enables access to > >>

Re: linux-next: manual merge of the staging tree with the rdma tree

2015-08-17 Thread Greg KH
On Mon, Aug 17, 2015 at 06:13:12PM +1000, Stephen Rothwell wrote: > Hi Greg, > > Today's linux-next merge of the staging tree got conflicts in: > > drivers/staging/Kconfig > drivers/staging/Makefile > > between commit: > > c2347d1b409d ("RDMA/amso1100: deprecate the amso1100 provider") >

Re: [RFCv5 PATCH 01/46] arm: Frequency invariant scheduler load-tracking support

2015-08-17 Thread Dietmar Eggemann
Hi Vincent, On 03/08/15 10:22, Vincent Guittot wrote: > Hi Morten, > > > On 7 July 2015 at 20:23, Morten Rasmussen wrote: >> From: Morten Rasmussen >> > > [snip] > >> - >> #endif >> diff --git a/arch/arm/kernel/topology.c b/arch/arm/kernel/topology.c >> index 08b7847..9c09e6e 100644 >> ---

[PATCH] hid: enable hid device to suspend/resume asynchronously

2015-08-17 Thread Fu, Zhonghui
Enable hid device to suspend/resume asynchronously. This can improve system suspend/resume speed. Signed-off-by: Zhonghui Fu --- drivers/hid/hid-core.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/hid/hid-core.c b/drivers/hid/hid-core.c index e6fce23..27ac160

CPU frequency switch latency

2015-08-17 Thread $rik@nth
Hello All, Platform: ARM Is there any tools available for scaling the latency of CPU frequencies for all supported scaling frequencies and its governors? Please point me if any such available tools are present in handy. TIA -- Thanks & Regards, M.Srikanth Kumar. -- To unsubscribe from this

<    1   2   3   4   5   6   7   8   9   10   >