[PATCH v3] scsi: stex: Remove use of struct timeval

2015-05-05 Thread Tina Ruchandani
Function stex_gettime uses 'struct timeval' whose tv_sec value will overflow on 32-bit systems in year 2038 and beyond. This patch replaces the use of struct timeval and do_gettimeofday with ktime_get_real_seconds, which returns a 64-bit seconds value. Suggested-by: Arnd Bergmann Signed-off-by: T

Re: [PATCH v2 4/9] powernow-k8: replace cpu_core_mask() with topology_core_cpumask()

2015-05-05 Thread Viresh Kumar
On 4 May 2015 at 15:58, Bartosz Golaszewski wrote: > The former duplicates the functionality of the latter but is neither > documented nor arch-independent. > > Signed-off-by: Bartosz Golaszewski > --- > drivers/cpufreq/powernow-k8.c | 13 +++-- > 1 file changed, 3 insertions(+), 10 dele

Re: [PATCH v2 5/9] p4-clockmod: replace cpu_sibling_mask() with topology_sibling_cpumask()

2015-05-05 Thread Viresh Kumar
On 4 May 2015 at 15:58, Bartosz Golaszewski wrote: > The former duplicates the functionality of the latter but is neither > documented nor arch-independent. > > Signed-off-by: Bartosz Golaszewski > --- > drivers/cpufreq/p4-clockmod.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Acked

Re: [PATCH v2 6/9] acpi-cpufreq: replace cpu_**_mask() with topology_**_cpumask()

2015-05-05 Thread Viresh Kumar
On 4 May 2015 at 15:58, Bartosz Golaszewski wrote: > The former duplicate the functionalities of the latter but are neither > documented nor arch-independent. > > Signed-off-by: Bartosz Golaszewski > --- > drivers/cpufreq/acpi-cpufreq.c | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-

Re: [PATCH v2 7/9] speedstep-ich: replace cpu_sibling_mask() with topology_sibling_cpumask()

2015-05-05 Thread Viresh Kumar
On 4 May 2015 at 15:58, Bartosz Golaszewski wrote: > The former duplicates the functionality of the latter but is neither > documented nor arch-independent. > > Signed-off-by: Bartosz Golaszewski > --- > drivers/cpufreq/speedstep-ich.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Ack

[PATCH] Bluetooth: btwilink: remove DEBUG define

2015-05-05 Thread Leo Yan
Remove the DEBUG define as the debug code; so can remove mass debug info from log buffer when using dmesg. Signed-off-by: Leo Yan --- drivers/bluetooth/btwilink.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/bluetooth/btwilink.c b/drivers/bluetooth/btwilink.c index

Re: [PATCH 03/79] ovl: rearrange ovl_follow_link to it doesn't need to call ->put_link

2015-05-05 Thread Hillf Danton
> > From: NeilBrown > > ovl_follow_link current calls ->put_link on an error path. > However ->put_link is about to change in a way that it will be > impossible to call it from ovl_follow_link. > > So rearrange the code to avoid the need for that error path. > Specifically: move the kmalloc() c

Re: [PATCH 0/1] speeding up cpu_up()

2015-05-05 Thread Borislav Petkov
On Mon, May 04, 2015 at 05:45:17PM -0500, Aravind Gopalakrishnan wrote: > Tested a delay of 0 on Fam10h and Fam15h Model 30h-3fh and both work fine. Cool, thanks for testing. > Feedback from asking internally about this is that we should be OK to move > to a no-delay default from K8 onwards. Als

Re: [RFC PATCH 03/14] ASoC: qcom: move ipq806x specific bits out of lpass driver.

2015-05-05 Thread Srinivas Kandagatla
On 03/05/15 00:57, Kenneth Westfield wrote: On Thu, Apr 30, 2015 at 06:16:53PM +0100, Srinivas Kandagatla wrote: This patch tries to make the lpass driver more generic by moving the ipq806x specific bits out of the cpu and platform driver, also allows the SOC specific drivers to add the correc

Re: [RFC PATCH 08/14] ASoC: qcom: add dma channel control offset to variant data

2015-05-05 Thread Srinivas Kandagatla
On 03/05/15 00:59, Kenneth Westfield wrote: On Thu, Apr 30, 2015 at 06:17:32PM +0100, Srinivas Kandagatla wrote: This patch adds ability to pass dma channel control bits start offset, which differ in differnet qcom SOCs. On apq8016 dma channel control bits start after an offset of 1. Alot of

Re: [RFC PATCH 07/14] ASoC: qcom: add no osr clk flag to lpass variant

2015-05-05 Thread Srinivas Kandagatla
On 04/05/15 13:26, Mark Brown wrote: On Thu, Apr 30, 2015 at 06:17:24PM +0100, Srinivas Kandagatla wrote: + if (!drvdata->variant->no_osr_clk) { + ret = clk_prepare_enable(drvdata->mi2s_osr_clk[dai->id]); Can we do this by checking to see if the clock is set to IS_ERR()

Re: [RFC PATCH 14/14] ASoC: qcom: document apq8016 machine driver bindings

2015-05-05 Thread Srinivas Kandagatla
On 03/05/15 01:03, Kenneth Westfield wrote: On Thu, Apr 30, 2015 at 06:18:26PM +0100, Srinivas Kandagatla wrote: This patch adds bindings for apq8016 machine driver. On APQ8016 4 MI2S can be configured to different sinks like internal codec/external codec, this connection is controlled via 2 i

Re: [RFC PATCH 03/14] ASoC: qcom: move ipq806x specific bits out of lpass driver.

2015-05-05 Thread Srinivas Kandagatla
On 05/05/15 06:19, Kenneth Westfield wrote: > >+enum lpaif_i2s_ports { > >+ LPAIF_I2S_PORT_MIN = 0, > >+ > >+ LPAIF_I2S_PORT_CODEC_SPK= 0, > >+ LPAIF_I2S_PORT_CODEC_MIC= 1, > >+ LPAIF_I2S_PORT_SEC_SPK = 2, > >+ LPAIF_I2S_PORT_SEC_MI

Re: [RFC PATCH 07/14] ASoC: qcom: add no osr clk flag to lpass variant

2015-05-05 Thread Srinivas Kandagatla
On 03/05/15 00:58, Kenneth Westfield wrote: On Thu, Apr 30, 2015 at 06:17:24PM +0100, Srinivas Kandagatla wrote: Some LPASS integrations like on APQ8016 do not have OSR clk, so adding no osr clk bit would allow such integrations to use lpass driver. Going forward, as the code is generalized,

Re: [RFC PATCH 12/14] ASoC: qcom: add apq8016 sound card support

2015-05-05 Thread Srinivas Kandagatla
On 03/05/15 01:01, Kenneth Westfield wrote: On Thu, Apr 30, 2015 at 06:18:07PM +0100, Srinivas Kandagatla wrote: This patch adds apq8016 machine driver support. This patch was tested on two apq8016-sbc and msm8916-mtp board for both hdmi and analog audio features. apq8016 refers to the SOC, w

[PATCH] adm8211: fix checkpatch error for trailing statements on next line

2015-05-05 Thread Okash Khawaja
This patch fixes these checkpatch.pl errors: ERROR: trailing statements should be on next line ERROR: switch and case should be at the same indent More specifically, the fix has been applied to the five occurances of the errors listed below. ERROR: trailing statements should be on next line #11

Re: [RFC PATCH 09/14] ASoC: qcom: Add ability to handle interrupts per dma channel

2015-05-05 Thread Srinivas Kandagatla
On 03/05/15 01:00, Kenneth Westfield wrote: On Thu, Apr 30, 2015 at 06:17:42PM +0100, Srinivas Kandagatla wrote: This patch adds ablity to lpass driver to handle interrupt per dma channel. Without this patch its not possible to use multipl ports on the lpass. diff --git a/sound/soc/qcom/lpa

Re: [PATCH v4 2/6] x86: document WC MTRR effects on PAT / non-PAT pages

2015-05-05 Thread Borislav Petkov
On Tue, May 05, 2015 at 02:45:06AM +0200, Luis R. Rodriguez wrote: > Thanks since Boris took this already I'll let him amend unless he wishes for > me to send a new version. Haven't. I'm waiting for v2. -- Regards/Gruss, Boris. ECO tip #101: Trim your mails when you reply. -- -- To unsubscr

Re: [PATCH v2] drm: fix a memleak on mutex failure path

2015-05-05 Thread Daniel Vetter
On Tue, Apr 28, 2015 at 10:25:46AM +0300, Jani Nikula wrote: > On Mon, 27 Apr 2015, gr...@linuxhacker.ru wrote: > > From: Oleg Drokin > > > > Need to free just allocated ctx allocation if we cannot > > get our config mutex. > > > > This one has been flagged by kbuild bot all the way back in August

Re: [PATCH tip/core/rcu 2/2] rcu: Tighten up affinity and check for sysidle

2015-05-05 Thread Paul E. McKenney
On Mon, May 04, 2015 at 06:10:31PM -0400, Sasha Levin wrote: > On 03/03/2015 12:50 PM, Paul E. McKenney wrote: > > From: "Paul E. McKenney" > > > > If the RCU grace-period kthread invoking rcu_sysidle_check_cpu() > > happens to be running on the tick_do_timer_cpu initially, > > then rcu_bind_gp_k

Re: [PATCH 0/2] Reintroduce picky __compound_tail_refcounted()

2015-05-05 Thread Kirill A. Shutemov
On Tue, Apr 28, 2015 at 07:24:56PM +0300, Kirill A. Shutemov wrote: > Hi Andrew, > > My patch 8d63d99a5dfb which was merged during 4.1 merge window caused > regression: > > page:ea0010a15040 count:0 mapcount:1 mapping: (null) index:0x0 > flags: 0x80008014(referenced|dirty

Re: [PATCH v4 2/6] x86: document WC MTRR effects on PAT / non-PAT pages

2015-05-05 Thread Luis R. Rodriguez
On Thu, Apr 30, 2015 at 03:01:12PM -0700, Randy Dunlap wrote: > On 04/29/15 14:44, Luis R. Rodriguez wrote: > > From: "Luis R. Rodriguez" > > > > > --- > > Documentation/x86/mtrr.txt | 18 +++--- > > Documentation/x86/pat.txt | 40 > >

Re: [Celinux-dev] Invitation and RFC: Linux Plumbers Device Tree track proposed

2015-05-05 Thread Geert Uytterhoeven
Hi Rob On Tue, May 5, 2015 at 1:20 AM, Rob Herring wrote: > On Fri, May 1, 2015 at 4:22 PM, Rob Landley wrote: >> On 04/11/2015 02:20 PM, Rowand, Frank wrote: >>> In recent years there have been proposed tools to aid in the creation of >>> valid >>> device trees and in debugging device tree iss

Re: [PATCH v4 2/6] x86: document WC MTRR effects on PAT / non-PAT pages

2015-05-05 Thread Luis R. Rodriguez
On Mon, May 04, 2015 at 02:23:03PM +0200, Borislav Petkov wrote: > On Wed, Apr 29, 2015 at 02:44:07PM -0700, Luis R. Rodriguez wrote: > > From: "Luis R. Rodriguez" > > > > As part of the effort to phase out MTRR use document > > write-combining MTRR effects on pages with different > > non-PAT pag

Re: [PATCH] cypress_m8: please add vendor/product id to support Prior Scientific OptiScan2

2015-05-05 Thread Johan Hovold
On Mon, May 04, 2015 at 11:45:11AM -0400, Ian Stakenvicius wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > The microscope automation controllers from Prior Scientific, > specifically the OptiScan2 controller (the only one I have access to at > present) use a Cypress CY7C64013-SXC fo

[PATCH] KVM: remove pointless cpu hotplug messages

2015-05-05 Thread Heiko Carstens
On cpu hotplug only KVM emits an unconditional message that its notifier has been called. It certainly can be assumed that calling cpu hotplug notifiers work, therefore there is no added value if KVM prints a message. If an error happens on cpu online KVM will still emit a warning. So let's remov

Re: [PATCH v4 2/6] x86: document WC MTRR effects on PAT / non-PAT pages

2015-05-05 Thread Luis R. Rodriguez
On Tue, May 05, 2015 at 09:22:14AM +0200, Borislav Petkov wrote: > On Tue, May 05, 2015 at 02:45:06AM +0200, Luis R. Rodriguez wrote: > > Thanks since Boris took this already I'll let him amend unless he wishes for > > me to send a new version. > > Haven't. I'm waiting for v2. OK thanks, it'll be

Re: [PATCH v4 2/6] x86: document WC MTRR effects on PAT / non-PAT pages

2015-05-05 Thread Borislav Petkov
On Tue, May 05, 2015 at 09:46:34AM +0200, Luis R. Rodriguez wrote: > If so since they depend on ioremap_uc() should it go through Boris as he's > taking that in? Let's slow down a bit first, ok? First let's have all the x86 changes ready, in and tested. Drivers can convert to them in a following s

[PATCH v5 2/6] x86: document WC MTRR effects on PAT / non-PAT pages

2015-05-05 Thread Luis R. Rodriguez
From: "Luis R. Rodriguez" As part of the effort to phase out MTRR use document write-combining MTRR effects on pages with different non-PAT page attributes flags and different PAT entry values. Extend arch_phys_wc_add() documentation to clarify power of two sizes / boundary requirements as we pha

Re: [PATCH v2 4/5] ARM: dts: sun9i: Add A80 PRCM clocks and reset control nodes

2015-05-05 Thread Maxime Ripard
On Mon, May 04, 2015 at 11:25:18PM +0800, Chen-Yu Tsai wrote: > On Mon, May 4, 2015 at 9:05 PM, Maxime Ripard > wrote: > > On Fri, May 01, 2015 at 12:10:05AM +0800, Chen-Yu Tsai wrote: > >> This adds the PRCM clocks and reset controls to the A80 dtsi. > >> > >> The list of apbs clock gates is inco

[PATCH 1/1] HID: prodikeys, remove unused variable

2015-05-05 Thread Jiri Slaby
'key' is set but never used in the first loop. So remove the set. And indent the re-set of pm->last_key properly. Signed-off-by: Jiri Slaby --- drivers/hid/hid-prodikeys.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/hid/hid-prodikeys.c b/drivers/hid/hid-prodike

Re: [PATCH 3.19 000/177] 3.19.7-stable review

2015-05-05 Thread Markos Chandras
On 05/04/2015 01:07 AM, Guenter Roeck wrote: > On 05/02/2015 12:00 PM, Greg Kroah-Hartman wrote: >> This is the start of the stable review cycle for the 3.19.7 release. >> There are 177 patches in this series, all will be posted as a response >> to this one. If anyone has any issues with these bei

Re: [PATCH] mfd: twl4030-power: Fix pmic for boards that need AC charger disabled

2015-05-05 Thread Lee Jones
On Mon, 04 May 2015, Tony Lindgren wrote: > * Tony Lindgren [150330 10:41]: > > I noticed the PMIC configuration on 37xx-evm won't actually shut down > > the voltages during off-idle. Turns out 37xx-evm needs the AC charger > > state transitions disabled like we are doing for SDP and LDP in the >

Re: [PATCH v2 0/3] leds: blink resolution improvements

2015-05-05 Thread Jacek Anaszewski
On 05/04/2015 07:20 PM, Stas Sergeev wrote: 04.05.2015 18:22, Jacek Anaszewski пишет: On 05/04/2015 02:12 PM, Stas Sergeev wrote: Only under that condition: --- if (led_cdev->blink_delay_on || led_cdev->blink_delay_off) { led_cdev->delayed_set_value = brightness; schedule_work

Ahoy

2015-05-05 Thread Ideal buss
Já jsem Vás kontaktovat ohledne výdelecnou podnik pro nás oba. v prípade zájmu, mužete mi dostat na muj e-mail níže pro více informací. E-mail: jg.ch...@gmail.com -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org Mo

Re: [PATCH 01/10] mfd/extcon: max77693: Remove unused extern declarations and max77693_dev members

2015-05-05 Thread Lee Jones
On Wed, 29 Apr 2015, Krzysztof Kozlowski wrote: > Clean up the max77693 private header file by removing: > 1. Left-overs from previous way of interrupt handling (driver uses >regmap_irq_chip). > 2. Unused members of struct 'max77693_dev' related to interrupts in >extcon driver. > > Signed

Re: [PATCH 1/4] video: backlight: da9052: Constify platform_device_id

2015-05-05 Thread Lee Jones
On Sat, 02 May 2015, Krzysztof Kozlowski wrote: > The platform_device_id is not modified by the driver and core uses it as > const. > > Signed-off-by: Krzysztof Kozlowski > --- > drivers/video/backlight/da9052_bl.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Applied, thanks. > dif

Re: [PATCH 3/4] video: fbdev: mxsfb: Constify platform_device_id

2015-05-05 Thread Lee Jones
On Sat, 02 May 2015, Krzysztof Kozlowski wrote: > The platform_device_id is not modified by the driver and core uses it as > const. > > Signed-off-by: Krzysztof Kozlowski > --- > drivers/video/fbdev/mxsfb.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Applied, thanks. > diff --git

Re: [PATCH 2/4] video: fbdev: imxfb: Constify platform_device_id

2015-05-05 Thread Lee Jones
On Sat, 02 May 2015, Krzysztof Kozlowski wrote: > The platform_device_id is not modified by the driver and core uses it as > const. > > Signed-off-by: Krzysztof Kozlowski > --- > drivers/video/fbdev/imxfb.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Applied, thanks. > diff --git

Re: [PATCH 4/4] video: fbdev: s3c-fb: Constify platform_device_id

2015-05-05 Thread Lee Jones
On Sat, 02 May 2015, Krzysztof Kozlowski wrote: > The platform_device_id is not modified by the driver and core uses it as > const. > > Signed-off-by: Krzysztof Kozlowski > --- > drivers/video/fbdev/s3c-fb.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Applied, thanks. > diff --git

Re: [PATCH v2 2/5] clk: sunxi: support the cpus (cpu special) clock on the Allwinner A80

2015-05-05 Thread Maxime Ripard
On Mon, May 04, 2015 at 11:22:33PM +0800, Chen-Yu Tsai wrote: > Hi, > > On Mon, May 4, 2015 at 8:51 PM, Maxime Ripard > wrote: > > Hi, > > > > On Fri, May 01, 2015 at 12:10:03AM +0800, Chen-Yu Tsai wrote: > >> The "cpus" clock is the clock for the embedded processor in the A80. > >> It is also pa

Re: [PATCH 5/7] mmc: host: sdhci-esdhc-imx: fix broken email address

2015-05-05 Thread Ulf Hansson
On 20 April 2015 at 15:51, Wolfram Sang wrote: > My Pengutronix address is not valid anymore, redirect people to the > Pengutronix > kernel team. > > Reported-by: Harald Geyer > Signed-off-by: Wolfram Sang > Acked-by: Robert Schwebel Thanks, applied. Kind regards Uffe > --- > These patches

Re: [PATCH 03/79] ovl: rearrange ovl_follow_link to it doesn't need to call ->put_link

2015-05-05 Thread NeilBrown
On Tue, 05 May 2015 15:12:28 +0800 "Hillf Danton" wrote: > > > > From: NeilBrown > > > > ovl_follow_link current calls ->put_link on an error path. > > However ->put_link is about to change in a way that it will be > > impossible to call it from ovl_follow_link. > > > > So rearrange the code

Re: [PATCH 2/2] x86/quark: Add Quark embedded SRAM self-test

2015-05-05 Thread Paul Bolle
On Mon, 2015-05-04 at 03:17 +0100, Bryan O'Donoghue wrote: > --- a/arch/x86/Kconfig.debug > +++ b/arch/x86/Kconfig.debug > +config DEBUG_ESRAM_SELFTEST > + bool "Embedded SRAM self test" > + default n > + depends on INTEL_ESRAM > + ---help--- > + This option enables automate

RE: [PATCH V3 3/3] mfd: da9063: MFD support for OnKey driver

2015-05-05 Thread Opensource [Steve Twiss]
On 04 May 2015 08:47, Geert Uytterhoeven wrote: > On Thu, Apr 30, 2015 at 1:26 PM, S Twiss > wrote: > > Add MFD support for the DA9063 OnKey driver > > Thanks for your patch! > > > +static int da9063_clear_fault_log(struct da9063 *da9063) > > +{ > > + int ret = 0; > > + int faul

Re: [PATCH 1/6] mmc: davinci: Constify platform_device_id

2015-05-05 Thread Ulf Hansson
On 1 May 2015 at 17:49, Krzysztof Kozlowski wrote: > The platform_device_id is not modified by the driver and core uses it as > const. > > Signed-off-by: Krzysztof Kozlowski Thanks, applied all patches (1->6). The last one I updated the prefix in commit message header to "sdhci". Kind regards U

Re: [PATCH v3 1/6] cpufreq: poowernv: Handle throttling due to Pmax capping at chip level

2015-05-05 Thread Preeti U Murthy
On 05/05/2015 11:36 AM, Shilpasri G Bhat wrote: > Hi Preeti, > > On 05/05/2015 09:21 AM, Preeti U Murthy wrote: >> Hi Shilpa, >> >> On 05/04/2015 02:24 PM, Shilpasri G Bhat wrote: >>> The On-Chip-Controller(OCC) can throttle cpu frequency by reducing the >>> max allowed frequency for that chip if

Re: Patch breaks suspend

2015-05-05 Thread Marian Marinov
On 05/05/2015 02:37 AM, Rafael J. Wysocki wrote: > On Saturday, May 02, 2015 11:27:32 PM Marian Marinov wrote: >> Hi guys, >> I have Lenovo T520 with one SSD and one SATA drive. >> >> I tried to upgrade to Linux 4.0 and found that after suspend and resume I >> can't access the second (SATA) drive.

[tip:timers/core] tick-broadcast: Fix the printing of broadcast masks

2015-05-05 Thread tip-bot for Preeti U Murthy
Commit-ID: 1ef09cd713c90781b683a0b4e0a874803c172b1d Gitweb: http://git.kernel.org/tip/1ef09cd713c90781b683a0b4e0a874803c172b1d Author: Preeti U Murthy AuthorDate: Tue, 28 Apr 2015 14:15:20 +0530 Committer: Thomas Gleixner CommitDate: Tue, 5 May 2015 10:35:58 +0200 tick-broadcast: Fix t

[tip:timers/core] clocksource: integrator: Fix of_io_request_and_map error check

2015-05-05 Thread tip-bot for Maxime Ripard
Commit-ID: bd580e7ed4add8ce9b2c1dd1911f8fb9d444128b Gitweb: http://git.kernel.org/tip/bd580e7ed4add8ce9b2c1dd1911f8fb9d444128b Author: Maxime Ripard AuthorDate: Sat, 2 May 2015 17:03:24 +0200 Committer: Thomas Gleixner CommitDate: Tue, 5 May 2015 10:35:58 +0200 clocksource: integrator:

[tip:timers/core] clocksource: asm9260: Fix of_io_request_and_map error check

2015-05-05 Thread tip-bot for Maxime Ripard
Commit-ID: ff569fcd7123d9a9176d59174a27bab9a4fad328 Gitweb: http://git.kernel.org/tip/ff569fcd7123d9a9176d59174a27bab9a4fad328 Author: Maxime Ripard AuthorDate: Sat, 2 May 2015 17:03:23 +0200 Committer: Thomas Gleixner CommitDate: Tue, 5 May 2015 10:35:58 +0200 clocksource: asm9260: Fi

[tip:timers/core] clocksource: sun5i: Fix of_io_request_and_map error check

2015-05-05 Thread tip-bot for Maxime Ripard
Commit-ID: 9fa8cc0a85c774b75218ba5f385792be387c190b Gitweb: http://git.kernel.org/tip/9fa8cc0a85c774b75218ba5f385792be387c190b Author: Maxime Ripard AuthorDate: Sat, 2 May 2015 17:03:25 +0200 Committer: Thomas Gleixner CommitDate: Tue, 5 May 2015 10:35:58 +0200 clocksource: sun5i: Fix

Re: [PATCH v3 4/6] cpufreq: powernv: Call throttle_check() on receiving OCC_THROTTLE

2015-05-05 Thread Preeti U Murthy
On 05/05/2015 12:03 PM, Shilpasri G Bhat wrote: > Hi Preeti, > > On 05/05/2015 09:30 AM, Preeti U Murthy wrote: >> Hi Shilpa, >> >> On 05/04/2015 02:24 PM, Shilpasri G Bhat wrote: >>> Re-evaluate the chip's throttled state on recieving OCC_THROTTLE >>> notification by executing *throttle_check() o

[tip:timers/core] timer: Use timer->base for flag checks

2015-05-05 Thread tip-bot for Joonwoo Park
Commit-ID: 781978e6e156101209f62b9ebc8783b70ef248de Gitweb: http://git.kernel.org/tip/781978e6e156101209f62b9ebc8783b70ef248de Author: Joonwoo Park AuthorDate: Mon, 27 Apr 2015 19:21:49 -0700 Committer: Thomas Gleixner CommitDate: Tue, 5 May 2015 10:40:43 +0200 timer: Use timer->base f

Re: [PATCH v2] CMA: page_isolation: check buddy before access it

2015-05-05 Thread Vlastimil Babka
On 05/05/2015 05:22 AM, Hui Zhu wrote: Change pfn_present to pfn_valid_within according to the review of Laura. I got a issue: [ 214.294917] Unable to handle kernel NULL pointer dereference at virtual address 082a [ 214.303013] pgd = cc97 [ 214.305721] [082a] *pgd= [ 214

Re: [PATCH 1/2] x86/quark: Add Quark embedded SRAM support

2015-05-05 Thread Paul Bolle
On Mon, 2015-05-04 at 03:17 +0100, Bryan O'Donoghue wrote: > --- a/arch/x86/platform/intel-quark/Makefile > +++ b/arch/x86/platform/intel-quark/Makefile > obj-$(CONFIG_INTEL_IMR) += imr.o (Your change to drivers/platform/x86/Kconfig now makes it possible that imr.o will be part of a module. More

[tip:irq/core] genirq: MSI: Constify irq_domain_ops

2015-05-05 Thread tip-bot for Krzysztof Kozlowski
Commit-ID: 01364028bdbb095dc6524986261fe1777ad04347 Gitweb: http://git.kernel.org/tip/01364028bdbb095dc6524986261fe1777ad04347 Author: Krzysztof Kozlowski AuthorDate: Mon, 27 Apr 2015 21:54:23 +0900 Committer: Thomas Gleixner CommitDate: Tue, 5 May 2015 10:45:58 +0200 genirq: MSI: Cons

Re: [PATCH 1/7] staging: fsl-mc: MC bus IRQ support

2015-05-05 Thread Dan Carpenter
On Mon, May 04, 2015 at 10:09:08PM +, Jose Rivera wrote: > > > + WARN_ON((int16_t)irq_count < 0); > > > > This code is doing "WARN_ON(test_bit(15, (unsigned long *)&irq_count));". > > That seems like nonsense. Anyway, just delete the WARN_ON(). > > > I disagree. This WARN_ON is check

[tip:irq/core] irqchip: Constify irq_domain_ops

2015-05-05 Thread tip-bot for Krzysztof Kozlowski
Commit-ID: 9600973656c697d742e31d202e6212216ea45a3e Gitweb: http://git.kernel.org/tip/9600973656c697d742e31d202e6212216ea45a3e Author: Krzysztof Kozlowski AuthorDate: Mon, 27 Apr 2015 21:54:24 +0900 Committer: Thomas Gleixner CommitDate: Tue, 5 May 2015 10:45:58 +0200 irqchip: Constify

[tip:irq/core] genirq: Fix unnecessary automatic type conversion

2015-05-05 Thread tip-bot for Nicholas Mc Guire
Commit-ID: 5e9662fa511794e1e72baf8eee21238962140480 Gitweb: http://git.kernel.org/tip/5e9662fa511794e1e72baf8eee21238962140480 Author: Nicholas Mc Guire AuthorDate: Sun, 3 May 2015 10:48:50 +0200 Committer: Thomas Gleixner CommitDate: Tue, 5 May 2015 10:45:58 +0200 genirq: Fix unnecess

[tip:irq/core] genirq: Fix type inconsistency

2015-05-05 Thread tip-bot for Nicholas Mc Guire
Commit-ID: 7df0b278385df3c8d0606c620e6ab1e9eea3d9cd Gitweb: http://git.kernel.org/tip/7df0b278385df3c8d0606c620e6ab1e9eea3d9cd Author: Nicholas Mc Guire AuthorDate: Sun, 3 May 2015 10:49:11 +0200 Committer: Thomas Gleixner CommitDate: Tue, 5 May 2015 10:45:58 +0200 genirq: Fix type inc

[tip:irq/core] irqchip: vf610: Fix of_io_request_and_map error check

2015-05-05 Thread tip-bot for Maxime Ripard
Commit-ID: dbf07cf0c846c3a0d3f97976931cb4ae78f730e2 Gitweb: http://git.kernel.org/tip/dbf07cf0c846c3a0d3f97976931cb4ae78f730e2 Author: Maxime Ripard AuthorDate: Sat, 2 May 2015 17:03:26 +0200 Committer: Thomas Gleixner CommitDate: Tue, 5 May 2015 10:45:59 +0200 irqchip: vf610: Fix of_i

[tip:irq/core] irqchip: irqc: Remove platform data support

2015-05-05 Thread tip-bot for Geert Uytterhoeven
Commit-ID: f31105347cc56c13d552b844ada04418769d875d Gitweb: http://git.kernel.org/tip/f31105347cc56c13d552b844ada04418769d875d Author: Geert Uytterhoeven AuthorDate: Tue, 28 Apr 2015 12:17:50 +0200 Committer: Thomas Gleixner CommitDate: Tue, 5 May 2015 10:45:59 +0200 irqchip: irqc: Rem

Re: [PATCH 4/7] staging: fsl-mc: Upgraded MC bus driver to match MC fw 7.0.0

2015-05-05 Thread Dan Carpenter
On Mon, May 04, 2015 at 11:58:13PM +, Jose Rivera wrote: > > > > On Tue, Apr 28, 2015 at 12:39:07PM -0500, J. German Rivera wrote: > > > - Migrated MC bus driver to use DPRC flib 0.6. > > > > What does this mean? What is a flib? > > > The DPRC flib is the API to manipulate DPRC objects. >

Re: [PATCH V3 3/3] mfd: da9063: MFD support for OnKey driver

2015-05-05 Thread Geert Uytterhoeven
Hi Steve, On Tue, May 5, 2015 at 10:36 AM, Opensource [Steve Twiss] wrote: > On 04 May 2015 08:47, Geert Uytterhoeven wrote: >> On Thu, Apr 30, 2015 at 1:26 PM, S Twiss >> wrote: >> > Add MFD support for the DA9063 OnKey driver >> > +static int da9063_clear_fault_log(struct da9063 *da9063) >> >

Re: [PATCH] drivers: dma: amba-pl08x: Supress spaces in indentation

2015-05-05 Thread Dan Carpenter
On Mon, May 04, 2015 at 09:32:27PM -0400, Leonardo Carreras wrote: > Removed checkpatch reported spaces in indentation. > > Signed-off-by: Leonardo Carreras > --- > drivers/dma/amba-pl08x.c |2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/dma/amba-pl08x.c b/dr

Re: [PATCH 4/4] sched: cpufreq_cfs: pelt-based cpu frequency scaling

2015-05-05 Thread Peter Zijlstra
On Mon, May 04, 2015 at 03:10:41PM -0700, Michael Turquette wrote: > This policy is implemented using the cpufreq governor interface for two > main reasons: > > 1) re-using the cpufreq machine drivers without using the governor > interface is hard. > > 2) using the cpufreq interface allows us to

Re: [PATCH 4/4] sched: cpufreq_cfs: pelt-based cpu frequency scaling

2015-05-05 Thread Peter Zijlstra
On Mon, May 04, 2015 at 03:10:41PM -0700, Michael Turquette wrote: > For those that are very curious, there were recently two previous > postings of these patches to the public eas-dev mailing list. Of > interest in those threads is the discussion around using a utilization > threadhold versus pure

[PATCH RFC] checkpatch: flag split arithmetic operations with CHECK

2015-05-05 Thread Nicholas Mc Guire
is against 4.0-rc2 (localversion-next is -next-20150505) scripts/checkpatch.pl | 13 + 1 file changed, 13 insertions(+) diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index 89b1df4..051ea99 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl @@ -2577,6 +2577

Re: [PATCH 4/4] sched: cpufreq_cfs: pelt-based cpu frequency scaling

2015-05-05 Thread Peter Zijlstra
*groan* do _NOT_ cross-post with moderated lists, like this eas drivel. Also, you typoed 'linaro-kernel@..' getting me even more noise for every reply. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo

[tip:x86/urgent] x86/spinlocks: Fix regression in spinlock contention detection

2015-05-05 Thread tip-bot for Tahsin Erdogan
Commit-ID: e8a4a2696fecb398b0288c43c0e0dbb91e265bb2 Gitweb: http://git.kernel.org/tip/e8a4a2696fecb398b0288c43c0e0dbb91e265bb2 Author: Tahsin Erdogan AuthorDate: Mon, 4 May 2015 21:15:31 -0700 Committer: Thomas Gleixner CommitDate: Tue, 5 May 2015 11:01:38 +0200 x86/spinlocks: Fix regr

Re: [RESEND PATCH 1/8] mfd: cros ec: Remove parent field

2015-05-05 Thread Javier Martinez Canillas
Hello Lee, On 04/29/2015 12:37 PM, Lee Jones wrote: > On Thu, 23 Apr 2015, Gwendal Grignou wrote: > >> Be consistent, use cros_ec instead of "cros ec" or "cros-ec". > > What is this in reference to? > I think Gwendal meant that I should be consistent in general and was not referring to this pat

Re: [RFC v1 07/11] net/mlx4: Cache irq_desc->affinity instead of irq_desc

2015-05-05 Thread Amir Vadai
On Mon, May 4, 2015 at 5:00 PM, Jiang Liu wrote: > On 2015/5/4 20:10, Amir Vadai wrote: >> On Mon, May 4, 2015 at 6:15 AM, Jiang Liu wrote: >>> The field 'affinity' in irq_desc won't change once the irq_desc data >>> structure is created. So cache irq_desc->affinity instead of irq_desc. >>> This

Re: [PATCH v3] scsi: stex: Remove use of struct timeval

2015-05-05 Thread Arnd Bergmann
On Tuesday 05 May 2015 12:34:27 Tina Ruchandani wrote: > Function stex_gettime uses 'struct timeval' whose tv_sec value > will overflow on 32-bit systems in year 2038 and beyond. This patch > replaces the use of struct timeval and do_gettimeofday with > ktime_get_real_seconds, which returns a 64-bi

Re: [RESEND PATCH] xen: vcpu_info would be reset to wrong place on canceled suspend on PVOPS VM which has multi-cpu

2015-05-05 Thread David Vrabel
On 04/05/15 03:56, Ouyang Zhaowei (Charles) wrote: > The hypervisor continues assuming that vcpu_info is stored in per-cpu data > which was set up by xen_vcpu_setup(), > while on canceled suspend, the call to xen_hvm_init_shared_info() will now > make the guest think that vcpu_info > is in the sh

Re: [PATCH 04/79] ext4: split inode_operations for encrypted symlinks off the rest

2015-05-05 Thread Jan Kara
On Tue 05-05-15 06:21:38, Al Viro wrote: > From: Al Viro > > Signed-off-by: Al Viro Looks good. You can add: Reviewed-by: Jan Kara Honza > --- > fs/ext4/ext4.h| 1 + > fs/ext4/inode.c | 10 -- > fs/ext4/namei.c

Re: [patch v2 for-4.0] mm, thp: really limit transparent hugepage allocation to local node

2015-05-05 Thread Vlastimil Babka
On 04/21/2015 09:31 AM, Aneesh Kumar K.V wrote: Vlastimil Babka writes: On 25.2.2015 22:24, David Rientjes wrote: alloc_pages_preferred_node() variant, change the exact_node() variant to pass __GFP_THISNODE, and audit and adjust all callers accordingly. Sounds like that should be done as

Re: [PATCH 10/13] x86/microcode/intel: Move mc arg last in get_matching_{microcode|sig}

2015-05-05 Thread Borislav Petkov
On Tue, Feb 24, 2015 at 05:24:07PM +0100, Quentin Casasnovas wrote: > Why not rename the function to is_microcode_matching() while at it? :) Even better, see below. :-) --- From: Borislav Petkov Date: Tue, 5 May 2015 11:10:44 +0200 Subject: [PATCH] x86/microcode/intel: Rename get_matching_microc

Re: [PATCH v3 1/3] iio: adc: add support for Berlin

2015-05-05 Thread Antoine Tenart
Jonathan, On Mon, May 04, 2015 at 05:21:11PM +0100, Jonathan Cameron wrote: > On 04/05/15 10:06, Antoine Tenart wrote: [...] > Also, I'm travelling and without internet so can't look it up directly. > So.. On the basis I'll forget to check later.. What is the status > of the two series you say

[tip:x86/apic] irq_remapping/vt-d: Init all MSI entries not just the first one

2015-05-05 Thread tip-bot for Thomas Gleixner
Commit-ID: 9d4c0313f24a05e5252e7106636bf3c5b6318f5d Gitweb: http://git.kernel.org/tip/9d4c0313f24a05e5252e7106636bf3c5b6318f5d Author: Thomas Gleixner AuthorDate: Mon, 4 May 2015 10:47:40 +0800 Committer: Thomas Gleixner CommitDate: Tue, 5 May 2015 11:14:48 +0200 irq_remapping/vt-d: In

Re: [PATCH] x86/spinlocks: Fix regression in spinlock contention detection

2015-05-05 Thread Peter Zijlstra
On Mon, May 04, 2015 at 09:15:31PM -0700, Tahsin Erdogan wrote: > A spinlock is regarded as contended when there is at least one waiter. > Currently, the code that checks whether there are any waiters rely on > tail value being greater than head. However, this is not true if tail > reaches the max

Re: [PATCH 06/79] ext2: use simple_follow_link()

2015-05-05 Thread Jan Kara
On Tue 05-05-15 06:21:40, Al Viro wrote: > From: Al Viro > > Signed-off-by: Al Viro Looks good. You can add: Reviewed-by: Jan Kara Honza > --- > fs/ext2/inode.c | 1 + > fs/ext2/namei.c | 3 ++- > fs/ext2/symlink.c | 10

Re: [RFC v1 07/11] net/mlx4: Cache irq_desc->affinity instead of irq_desc

2015-05-05 Thread Amir Vadai
On Mon, May 4, 2015 at 6:10 PM, Thomas Gleixner wrote: > On Mon, 4 May 2015, Amir Vadai wrote: > >> On Mon, May 4, 2015 at 6:15 AM, Jiang Liu wrote: >> > The field 'affinity' in irq_desc won't change once the irq_desc data >> > structure is created. So cache irq_desc->affinity instead of irq_desc

RE: [PATCH V3 3/3] mfd: da9063: MFD support for OnKey driver

2015-05-05 Thread Opensource [Steve Twiss]
On 05 May 2015 09:52 Geert Uytterhoeven wrote: > On Tue, May 5, 2015 at 10:36 AM, Opensource [Steve Twiss] > wrote: > > On 04 May 2015 08:47, Geert Uytterhoeven wrote: > >> On Thu, Apr 30, 2015 at 1:26 PM, S Twiss > >> wrote: > >> > Add MFD support for the DA9063 OnKey driver > >> > +static int

Re: [PATCH 05/79] libfs: simple_follow_link()

2015-05-05 Thread Jan Kara
On Tue 05-05-15 06:21:39, Al Viro wrote: > From: Al Viro > > let "fast" symlinks store the pointer to the body into ->i_link and > use simple_follow_link for ->follow_link() > > Signed-off-by: Al Viro Looks good. You can add: Reviewed-by: Jan Kara

Re: [PATCH 08/79] ext3: switch to simple_follow_link()

2015-05-05 Thread Jan Kara
On Tue 05-05-15 06:21:42, Al Viro wrote: > From: Al Viro > > Signed-off-by: Al Viro Looks good. You can add: Reviewed-by: Jan Kara Honza > --- > fs/ext3/inode.c | 1 + > fs/ext3/namei.c | 3 ++- > fs/ext3/symlink.c | 10

Re: [PATCH 07/79] befs: switch to simple_follow_link()

2015-05-05 Thread Jan Kara
On Tue 05-05-15 06:21:41, Al Viro wrote: > From: Al Viro > > Signed-off-by: Al Viro Looks good. You can add: Reviewed-by: Jan Kara Honza > --- > fs/befs/linuxvfs.c | 24 +--- > 1 file changed, 5 insertions(

Re: [RESEND PATCH 3/8] mfd: cros_ec: Instantiate sub-devices from device tree

2015-05-05 Thread Javier Martinez Canillas
Hello Lee, On 04/29/2015 12:39 PM, Lee Jones wrote: > On Mon, 06 Apr 2015, Javier Martinez Canillas wrote: > >> From: Todd Broch >> >> If the EC device tree node has sub-nodes, try to instantiate them as >> MFD sub-devices. We can configure the EC features provided by the board. >> >> Signed-

Re: [PATCH 09/79] ext4: switch to simple_follow_link()

2015-05-05 Thread Jan Kara
On Tue 05-05-15 06:21:43, Al Viro wrote: > From: Al Viro > > for fast symlinks only, of course... > > Signed-off-by: Al Viro Looks good. You can add: Reviewed-by: Jan Kara Honza > --- > fs/ext4/inode.c | 1 + > fs/ext4/name

Re: [PATCH v3 4/4] PM: submit bio in a sane way in cases without bio_chain

2015-05-05 Thread Pavel Machek
On Thu 2015-04-30 18:47:17, Pavel Machek wrote: > Hi! > > > >From af56dde07c34b203f5c40c8864bfd55697b0aad0 Mon Sep 17 00:00:00 2001 > > From: Christoph Hellwig > > Date: Fri, 24 Apr 2015 11:26:00 +0200 > > Subject: suspend: sane block I/O handling > > > > stop abusing struct page functionality a

Re: [PATCH] USB: usbmon: Remove timeval usage for timestamp

2015-05-05 Thread Arnd Bergmann
On Tuesday 05 May 2015 11:44:33 Tina Ruchandani wrote: > 'struct timeval' uses 32-bits for its seconds field and will overflow in > the year 2038 and beyond. This patch replaces the usage of 'struct timeval' > in mon_get_timestamp() with timespec64 which uses a 64-bit seconds field > and is y2038-s

Re: [PATCH v3 7/8] ASoC: wm8998: Initial WM8998 codec driver

2015-05-05 Thread Richard Fitzgerald
On Mon, May 04, 2015 at 12:39:43PM +0100, Mark Brown wrote: > On Fri, May 01, 2015 at 04:15:18PM +0100, Richard Fitzgerald wrote: > > > + switch (event) { > > + case SND_SOC_DAPM_PRE_PMU: > > + val = snd_soc_read(codec, ARIZONA_ASRC_RATE1); > > + val &= ARIZONA_ASRC_RATE1_M

Re: [PATCH 11/79] shmem: switch to simple_follow_link()

2015-05-05 Thread Jan Kara
On Tue 05-05-15 06:21:45, Al Viro wrote: > From: Al Viro > > Signed-off-by: Al Viro Looks good. You can add: Reviewed-by: Jan Kara Honza > --- > mm/shmem.c | 9 ++--- > 1 file changed, 2 insertions(+), 7 deletions(-) > >

[PATCH 01/12] net: axienet: Support for RGMII

2015-05-05 Thread Michal Simek
From: Srikanth Thokala This patch adds support for the RGMII. The h/w configuration parameter C_PHY_TYPE, which represents the interface configured in the design, is used to differentiate various interfaces supported by AXI Ethernet. Signed-off-by: Srikanth Thokala Signed-off-by: Michal Simek

Re: [PATCH 12/79] debugfs: switch to simple_follow_link()

2015-05-05 Thread Jan Kara
On Tue 05-05-15 06:21:46, Al Viro wrote: > From: Al Viro > > Signed-off-by: Al Viro Looks good. You can add: Reviewed-by: Jan Kara Honza > --- > fs/debugfs/file.c | 12 > fs/debugfs/inode.c | 6 +++--- >

[PATCH 02/12] net: axienet: Handle 0 packet receive gracefully

2015-05-05 Thread Michal Simek
From: Peter Crosthwaite The AXI-DMA rx-delay interrupt can sometimes be triggered when there are 0 outstanding packets received. This is due to the fact that the receive function will greedily consume as many packets as possible on interrupt. So if two packets (with a very particular timing) arri

[PATCH 11/12] net: axienet: Removed _of_ prefix in probe and remove functions

2015-05-05 Thread Michal Simek
From: Srikanth Thokala Synchronize names with other drivers. Signed-off-by: Srikanth Thokala Signed-off-by: Michal Simek --- drivers/net/ethernet/xilinx/xilinx_axienet_main.c | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/drivers/net/ethernet/xilinx/xilinx

[PATCH 10/12] net: axienet: Use of_property_* calls

2015-05-05 Thread Michal Simek
From: Srikanth Thokala Use of_property_* calls Signed-off-by: Srikanth Thokala Signed-off-by: Michal Simek --- drivers/net/ethernet/xilinx/xilinx_axienet_main.c | 35 ++- 1 file changed, 15 insertions(+), 20 deletions(-) diff --git a/drivers/net/ethernet/xilinx/xilinx_ax

[PATCH 03/12] net: axienet: Service completion interrupts ASAP

2015-05-05 Thread Michal Simek
From: Peter Crosthwaite The packet completion interrupts for TX and RX should be serviced before the packets are consumed. This ensures against the degenerate case when a new completion interrupt is raised after the handler has exited but before the interrupts are cleared. In this case its possib

[PATCH 09/12] net: axienet: Use devm_* calls

2015-05-05 Thread Michal Simek
From: Srikanth Thokala use devm_* calls Signed-off-by: Srikanth Thokala Signed-off-by: Michal Simek --- drivers/net/ethernet/xilinx/xilinx_axienet_main.c | 54 +++ 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/drivers/net/ethernet/xilinx/xilinx_axienet_m

  1   2   3   4   5   6   7   8   9   10   >