Re: [PATCH 1/7] ARM: dts: qcom: Add PM8841 functions device nodes

2015-04-08 Thread Ivan T. Ivanov
On Wed, 2015-04-01 at 14:54 -0500, Kumar Gala wrote: > On Apr 1, 2015, at 10:05 AM, Ivan T. Ivanov iva...@linaro.org> wrote: > > > Add configuration nodes for multi purpose pins and > > thermal sensor devices. Thermal sensor will report > > PMIC die temperature. > > > > Signed-off-by: Ivan T. Iv

Re: [PATCH 2/3] Btrfs: unify subvol= and subvolid= mounting

2015-04-08 Thread Omar Sandoval
On Wed, Apr 08, 2015 at 02:06:14PM +0800, Qu Wenruo wrote: > > > Original Message > Subject: [PATCH 2/3] Btrfs: unify subvol= and subvolid= mounting > From: Omar Sandoval > To: Chris Mason , Josef Bacik , David Sterba > , > Date: 2015年04月08日 13:34 > > >Currently, mounting a

RE: [PATCH v3 1/4] drm/layerscape: Add Freescale DCU DRM driver

2015-04-08 Thread jianwei.w...@freescale.com
Hi Stefan, > -Original Message- > From: Stefan Agner [mailto:ste...@agner.ch] > Sent: Tuesday, April 07, 2015 8:12 PM > To: Wang Jianwei-B52261 > Cc: Wood Scott-B07421; airl...@linux.ie; dri-de...@lists.freedesktop.org; > devicet...@vger.kernel.org; Xiubo Li; Wang Huan-B18965; linux- > ke

Re: [PATCH] x86/asm/entry/64: Add forgotten CFI annotation

2015-04-08 Thread Ingo Molnar
* Denys Vlasenko wrote: > Signed-off-by: Denys Vlasenko > CC: Linus Torvalds > CC: Steven Rostedt > CC: Ingo Molnar > CC: Borislav Petkov > CC: "H. Peter Anvin" > CC: Andy Lutomirski > CC: Oleg Nesterov > CC: Frederic Weisbecker > CC: Alexei Starovoitov > CC: Will Drewry > CC: Kees Co

Re: [PATCHv2 1/2] timekeeping: Provide new API to get the current time resolution

2015-04-08 Thread Richard Weinberger
Am 08.04.2015 um 00:30 schrieb Richard Weinberger: > Am 07.04.2015 um 13:12 schrieb Harald Geyer: >> This patch series introduces a new function >> u32 ktime_get_resolution_ns(void) >> which allows to clean up some driver code. >> >> In particular the IIO subsystem has a function to provide timesta

Re: [PATCH] tpm: unified PPI interface for TPM 1.x/2.0 devices

2015-04-08 Thread Jarkko Sakkinen
On Wed, Apr 01, 2015 at 12:19:25PM -0600, Jason Gunthorpe wrote: > On Wed, Apr 01, 2015 at 03:28:52PM +0300, Jarkko Sakkinen wrote: > > Added PPI interface to the character device. PPI interface is also kept > > in the pdev for backwards compatibility. > > Could you look at just completely moving

Re: patch "drivers: thermal: st: remove several sparse warnings" added to thermal-soc tree

2015-04-08 Thread Lee Jones
On Tue, 07 Apr 2015, Eduardo Valentin wrote: > > This is a simple automated notification to let you know that > I've just added the patch titled > > drivers: thermal: st: remove several sparse warnings > > to my thermal-soc git tree which can be found at > > git://git.kernel.org/pub/s

Re: [PATCH] x86, aperture: Check for GART before accessing GART registers

2015-04-08 Thread Borislav Petkov
On Tue, Apr 07, 2015 at 03:34:19PM -0500, Aravind Gopalakrishnan wrote: > On 4/7/2015 9:57 AM, Borislav Petkov wrote: > >On Tue, Apr 07, 2015 at 09:46:26AM -0500, Aravind Gopalakrishnan wrote: > >>Okay. I'll do that and correct the typos Ingo pointed out earlier and > >>resend. > >Btw, I think you

[PATCH 0/2][RFC] mmc: cast to avoid unexpected error

2015-04-08 Thread Kuninori Morimoto
Hi Ulf These 2 patches adds cast to avoid unexpected error. It tries copy to u64 without cast. The data will be 0xfff... if 1st bit was 1. These are reported by coverity tool, but I couldn't test it. So, I added [RFC] on these patches. I'm happy if someone tests it, or can get deep review. Kunino

Re: [PATCH] brcmsmac: Move each system tracepoints to their own header

2015-04-08 Thread Arend van Spriel
On 04/07/15 18:11, Steven Rostedt wrote: Every tracing file must have its own TRACE_SYSTEM defined. The brcmsmac tracepoint header broke this and added in the middle of the file: #undef TRACE_SYSTEM #define TRACE_SYSTEM brcmsmac #undef TRACE_SYSTEM #define TRACE_SYSTEM brcmsmac_tx #

Re: [PATCH] irq: Remove unnecessary warning with affinity_hint

2015-04-08 Thread Seiichi Ikarashi
Hi, On 2015-04-08 15:28, Ingo Molnar wrote: > > * Seiichi Ikarashi wrote: > >> Hi, >> >> If you turn off a PCI device whose driver has set affinity_hint, >> you will get warning message which does _not_ explain the reason >> why it appeared from the user's point of view. >> >> # echo 0 > /sys

[PATCH 1/2][RFC] mmc: cast u8 to unsigned long long to avoid unexpected error

2015-04-08 Thread Kuninori Morimoto
From: Kuninori Morimoto card->ext_csd.enhanced_area_offset is defined as "unsigned long long", and, ext_csd[] is defined as u8. unsigned long long data might have strange data if first bit of ext_csd[] was 1. this patch cast it to (unsigned long long) ex) u8 data8; u64 data64;

[PATCH 2/2][RFC] mmc: cast unsigned int to typeof(sector_t) to avoid unexpected error

2015-04-08 Thread Kuninori Morimoto
From: Kuninori Morimoto card->csd.capacity is defined as "unsigned int", and, sector_t is defined as "u64" or "unsigned long" (depends on CONFIG_LBDAF) sector_t data might have strange data if first bit of unsigned int was 1. this patch cast it to typeof(sector_t) ex) if sector_t was u64

Re: [PATCH 2/3] Btrfs: unify subvol= and subvolid= mounting

2015-04-08 Thread Qu Wenruo
Original Message Subject: Re: [PATCH 2/3] Btrfs: unify subvol= and subvolid= mounting From: Omar Sandoval To: Qu Wenruo Date: 2015年04月08日 15:17 On Wed, Apr 08, 2015 at 02:06:14PM +0800, Qu Wenruo wrote: Original Message Subject: [PATCH 2/3] Btrfs: uni

Re: [PATCH v3 7/7] vhost: feature to set the vring endianness

2015-04-08 Thread Greg Kurz
On Tue, 7 Apr 2015 17:01:31 +0200 Cornelia Huck wrote: > On Tue, 07 Apr 2015 14:19:31 +0200 > Greg Kurz wrote: > > > This patch brings cross-endian support to vhost when used to implement > > legacy virtio devices. Since it is a relatively rare situation, the > > feature availability is control

Re: [PATCH] irq: Remove unnecessary warning with affinity_hint

2015-04-08 Thread Ingo Molnar
* Seiichi Ikarashi wrote: > Hi, > > On 2015-04-08 15:28, Ingo Molnar wrote: > > > > * Seiichi Ikarashi wrote: > > > >> Hi, > >> > >> If you turn off a PCI device whose driver has set affinity_hint, > >> you will get warning message which does _not_ explain the reason > >> why it appeared fro

[tip:x86/asm] x86/asm/entry/64: Move opportunistic sysret code to syscall code path

2015-04-08 Thread tip-bot for Denys Vlasenko
Commit-ID: fffbb5dcfd29f8831e41b4dd2ab938bd36d35283 Gitweb: http://git.kernel.org/tip/fffbb5dcfd29f8831e41b4dd2ab938bd36d35283 Author: Denys Vlasenko AuthorDate: Thu, 2 Apr 2015 18:46:59 +0200 Committer: Ingo Molnar CommitDate: Wed, 8 Apr 2015 09:02:12 +0200 x86/asm/entry/64: Move oppo

[tip:x86/asm] x86/asm/entry/irq: Simplify interrupt dispatch table (IDT) layout

2015-04-08 Thread tip-bot for Denys Vlasenko
Commit-ID: 3304c9c37bef30ebd2ef71d986e6568372ce80f8 Gitweb: http://git.kernel.org/tip/3304c9c37bef30ebd2ef71d986e6568372ce80f8 Author: Denys Vlasenko AuthorDate: Fri, 3 Apr 2015 21:49:13 +0200 Committer: Ingo Molnar CommitDate: Wed, 8 Apr 2015 09:02:13 +0200 x86/asm/entry/irq: Simplify

[tip:x86/asm] x86/asm/entry/64: Add forgotten CFI annotation

2015-04-08 Thread tip-bot for Denys Vlasenko
Commit-ID: 8b3607b5b8c591d8bf045911cb7c90ecaa6e7b73 Gitweb: http://git.kernel.org/tip/8b3607b5b8c591d8bf045911cb7c90ecaa6e7b73 Author: Denys Vlasenko AuthorDate: Tue, 7 Apr 2015 18:42:47 +0200 Committer: Ingo Molnar CommitDate: Wed, 8 Apr 2015 09:18:36 +0200 x86/asm/entry/64: Add forgo

Re: [PATCH v6 4/4] clk: dt: Introduce binding for always-on clock support

2015-04-08 Thread Maxime Ripard
Hi Lee, On Tue, Apr 07, 2015 at 07:43:59PM +0100, Lee Jones wrote: > Signed-off-by: Lee Jones > --- > .../devicetree/bindings/clock/clock-bindings.txt | 38 > ++ > 1 file changed, 38 insertions(+) > > diff --git a/Documentation/devicetree/bindings/clock/clock-bindings.txt

Re: [PATCH] iwlwifi: Move each system tracepoints to their own header

2015-04-08 Thread Johannes Berg
On Tue, 2015-04-07 at 12:13 -0400, Steven Rostedt wrote: > Every tracing file must have its own TRACE_SYSTEM defined. > The iwlwifi tracepoint header broke this and added in the middle > of the file: [...] > Unfortunately, this broke new code in the ftrace infrastructure. > Moving each of these TRA

[tip:x86/asm] x86, selftests: Add sigreturn selftest

2015-04-08 Thread tip-bot for Andy Lutomirski
Commit-ID: 3f705dfdf85a6416f5f12e52b7610144a99cbedc Gitweb: http://git.kernel.org/tip/3f705dfdf85a6416f5f12e52b7610144a99cbedc Author: Andy Lutomirski AuthorDate: Mon, 6 Apr 2015 23:11:06 -0700 Committer: Ingo Molnar CommitDate: Wed, 8 Apr 2015 08:22:02 +0200 x86, selftests: Add sigret

[PATCH, resend] kerneldoc: Convert error messages to GNU error message format

2015-04-08 Thread Bart Van Assche
Editors like emacs and vi recognize a number of error message formats. The format used by the kerneldoc tool is not recognized by emacs. Change the kerneldoc error message format to the GNU style such that the emacs prev-error and next-error commands can be used to navigate through kerneldoc error

Re: [PATCH 1/6] ARM: dts :exynos5422-odroidxu3 Add pwm-fan node to the Odroid-XU3 board.

2015-04-08 Thread Lukasz Majewski
Hi Anand, > Add pwm-fan node to the OdroidXU3 board. > > Tested on OdroidXU3 board. > > Signed-off-by: Anand Moon > --- > arch/arm/boot/dts/exynos5422-odroidxu3.dts | 16 > 1 file changed, 16 insertions(+) > > diff --git a/arch/arm/boot/dts/exynos5422-odroidxu3.dts > b/arch/a

Re: [PATCH 2/6] ARM: dts exynos5420 update the cooling cells for core cpu0

2015-04-08 Thread Lukasz Majewski
Hi Anand, > update the cooling level for cpu0 to avoid following message. > > root@odroidxu3:~# dmesg | grep ther > [0.241511] /thermal-zones/cpu-thermal/cooling-maps/map0: >could not get #cooling-cells for /cpus/cpu@0 > > Signed-off-by: Anand Moon > --- > arch/arm/

RE: [PATCH v3 1/4] drm/layerscape: Add Freescale DCU DRM driver

2015-04-08 Thread Stefan Agner
On 2015-04-08 09:17, jianwei.w...@freescale.com wrote: > Hi Stefan, > >> -Original Message- >> From: Stefan Agner [mailto:ste...@agner.ch] >> Sent: Tuesday, April 07, 2015 8:12 PM >> To: Wang Jianwei-B52261 >> Cc: Wood Scott-B07421; airl...@linux.ie; dri-de...@lists.freedesktop.org; >> dev

Re: [PATCH] powerpc/PCI: Add IORESOURCE_MEM_64 for 64-bit resource in of parsing

2015-04-08 Thread Benjamin Herrenschmidt
On Tue, 2015-04-07 at 22:39 -0700, Yinghai Lu wrote: > On Tue, Apr 7, 2015 at 8:49 PM, Benjamin Herrenschmidt > wrote: > > On Tue, 2015-04-07 at 17:24 -0700, Yinghai Lu wrote: > >> For device resource PREF bit setting under bridge 64-bit pref resource, > >> we need to make sure only set PREF for 6

Re: [PATCH 3/6] ARM:dts exynos5422 Update the thermal sensor for tmu_cpu0

2015-04-08 Thread Lukasz Majewski
Hi Anand, > Move the registration of thermal sensors for tmu_cpu0 from > exynos5420.dtsi to exynos5-cpu-thermal.dtsi, to avoid duplicate > registration of the sensors. > > Tested on OdroidXU3 board. > > Signed-off-by: Anand Moon > --- > arch/arm/boot/dts/exynos5-cpu-thermal.dtsi | 58 > +++

Re: [PATCH v3 0/9] Add sd/emmc support for stih407 family silicon

2015-04-08 Thread Ulf Hansson
On 30 March 2015 at 16:39, Peter Griffin wrote: > Hi, > > This series adds sd/emmc support to the sdhci-st.c driver for stih407 > family silicon. The changes mainly involve configuring some extra glue > registers in the flashSS which configure the Arasan controller. > > This series also adds suppo

Re: [PATCH 4/6] ARM: dts: OdroidXU3: Enable TMU at Exynos5422 base.

2015-04-08 Thread Lukasz Majewski
Hi Anand, > This commit enables TMU IP block on the Exynos5422 OdroidXU3 > device. > > Tested on OdroidXU3 board. > > Signed-off-by: Anand Moon > --- > arch/arm/boot/dts/exynos5422-odroidxu3.dts | 25 > + 1 file changed, 25 insertions(+) > > diff --git a/arch/arm/boot/d

Re: [PATCH 2/3] drm:msm: Initial Add Writeback Support

2015-04-08 Thread Daniel Vetter
On Tue, Apr 07, 2015 at 03:55:45PM -, jil...@codeaurora.org wrote: > > On Thu, Apr 02, 2015 at 10:29:52AM -0400, Rob Clark wrote: > >> So, from a quick look, it seems like there is a lot of potential to > >> split the v4l part out into some drm helpers.. it looks pretty > >> generic(ish), or at

Re: [PATCH] irq: Remove unnecessary warning with affinity_hint

2015-04-08 Thread Seiichi Ikarashi
On 2015-04-08 16:39, Ingo Molnar wrote: > > * Seiichi Ikarashi wrote: > >> Hi, >> >> On 2015-04-08 15:28, Ingo Molnar wrote: >>> >>> * Seiichi Ikarashi wrote: >>> Hi, If you turn off a PCI device whose driver has set affinity_hint, you will get warning message which does _no

Re: [PATCH v2 07/17] soc: tegra: pmc: Add generic PM domain support

2015-04-08 Thread Thierry Reding
On Mon, Apr 06, 2015 at 03:37:37PM -0700, Kevin Hilman wrote: > Hi Vince, > > Vince Hsu writes: [...] > > +static int tegra_pmc_powergate_power_off(struct generic_pm_domain *domain) > > +{ > > + struct tegra_powergate *powergate = to_powergate(domain); > > + struct tegra_pmc *pmc = powergate-

Re: [PATCH v9 23/30] PCI/mvebu: Use pci_common_init_dev() to simplify code

2015-04-08 Thread Gregory CLEMENT
Hi Yijing, On 03/04/2015 11:25, Yijing Wang wrote: > Mvebu_pcie_scan_bus() is not necessary, we could use > pci_common_init_dev() instead of pci_common_init(), > and pass the device pointer as the parent. Then > pci_scan_root_bus() will be called to scan the pci busses. > 2 months ago, Thomas Pe

Re: [alsa-devel] Audio Jack Out does not work

2015-04-08 Thread Dan Carpenter
On Wed, Apr 08, 2015 at 09:57:13AM +0800, Raymond Yau wrote: > This patch only change the name of control, you will also need pulseaudio > patch if you are using pulseaudio > > http://cgit.freedesktop.org/pulseaudio/pulseaudio/commit/src/modules/alsa/mixer?id=aec811798cd883a454b9b5cd82c77831906bbd

Re: [PATCH v9 03/30] PCI: Save domain in pci_host_bridge

2015-04-08 Thread Gregory CLEMENT
Hi Yijing, On 03/04/2015 11:25, Yijing Wang wrote: > Save domain in pci_host_bridge, so we could get domain > from pci_host_bridge, and at the end of series, we could > clean up the arch specific pci_domain_nr(). For arm, > we pass -1 as the domain number, we would update the > domain number in co

[PATCH v2 2/2] ARM: at91/dt: add support for kizboxmini

2015-04-08 Thread Gaël PORTAY
Add DT file for Kizbox mini board. This board is based on Atmel's AT91SAM9G25 SoC. Signed-off-by: Gaël PORTAY --- arch/arm/boot/dts/Makefile| 1 + arch/arm/boot/dts/at91-kizboxmini.dts | 129 ++ 2 files changed, 130 insertions(+) create mode 100644

Re: [PATCH v2 03/17] IB/Verbs: Use management helper cap_ib_mad() for mad-check

2015-04-08 Thread Michael Wang
On 04/07/2015 07:26 PM, Jason Gunthorpe wrote: > On Tue, Apr 07, 2015 at 02:30:22PM +0200, Michael Wang wrote: > >> -if (rdma_node_get_transport(device->node_type) != RDMA_TRANSPORT_IB) >> -return; >> - >> if (device->node_type == RDMA_NODE_IB_SWITCH) { >> start =

Re: linux-next: manual merge of the kvm-arm tree with Linus' tree

2015-04-08 Thread Marc Zyngier
On Tue, 7 Apr 2015 17:20:15 +0100 Paolo Bonzini wrote: Hi Paolo, > On 18/03/2015 08:55, Christoffer Dall wrote: > > Hi Stephen, > > > > On Wed, Mar 18, 2015 at 02:41:11PM +1100, Stephen Rothwell wrote: > >> Hi all, > >> > >> Today's linux-next merge of the kvm-arm tree got a conflict in > >> vi

Re: [PATCH v6 4/4] clk: dt: Introduce binding for always-on clock support

2015-04-08 Thread Lee Jones
On Tue, 07 Apr 2015, Maxime Ripard wrote: > On Tue, Apr 07, 2015 at 07:43:59PM +0100, Lee Jones wrote: > > Signed-off-by: Lee Jones > > --- > > .../devicetree/bindings/clock/clock-bindings.txt | 38 > > ++ > > 1 file changed, 38 insertions(+) > > > > diff --git a/Documenta

Re: [PATCH v9 07/30] PCI: Add default bus resource in pci_host_bridge

2015-04-08 Thread Yijing Wang
>> diff --git a/include/linux/pci.h b/include/linux/pci.h >> index 1542df8..f189dfb 100644 >> --- a/include/linux/pci.h >> +++ b/include/linux/pci.h >> @@ -404,6 +404,8 @@ struct pci_host_bridge { >> int domain; >> struct device dev; >> struct pci_bus *bus;/* root bus */

[PATCH v2 0/2] ARM: at91/dt: add support for at91-kizboxmini

2015-04-08 Thread Gaël PORTAY
Hi, Here are two patches to bring support for a new hardware based on SAM9G25 SoC. The first one adds the PIN controller definition for PWM0. The second defines the new board. Changes since v1: - drop useless comments - move pwm0 pinctrl's node close to tcb0 - drop ek boards from compatible mach

Re: [PATCH] kvm: x86: fix x86 eflags fixed bit

2015-04-08 Thread Nadav Amit
Sorry for that - fixes 0efb04406de834d820f7ba150a00d1d3194aa8a6 ("KVM: x86: removing redundant eflags bits definitions”). Nadav Wanpeng Li wrote: > Guest can't be booted w/ ept=0, there is a message dumped as below: > > If you're running a guest on an Intel machine without unrestricted mode >

Re: [RESEND PATCH 4.0-rc5 v19 3/6] irqchip: gic: Introduce plumbing for IPI FIQ

2015-04-08 Thread Hillf Danton
> +/* > + * Fully acknowledge (both ack and eoi) any outstanding FIQ-based IPI, > + * otherwise do nothing. > + */ > +void gic_handle_fiq_ipi(void) > +{ > + struct gic_chip_data *gic = &gic_data[0]; > + void __iomem *cpu_base = gic_data_cpu_base(gic); > + unsigned long irqstat, irqnr; >

Re: Audio Jack Out does not work

2015-04-08 Thread Takashi Iwai
At Tue, 07 Apr 2015 21:07:06 -0400, Taylor Smock wrote: > > Yes; reverting the patch does fix the problem. What if you just adjust the new volume manually without reverting the patch? Run "alsamixer -c0" (or -c1, depending on the setup). Once after the setup, run "alsactl store" as root to save

Re: [PATCH v3 7/7] vhost: feature to set the vring endianness

2015-04-08 Thread Greg Kurz
On Tue, 7 Apr 2015 17:52:28 +0200 "Michael S. Tsirkin" wrote: > On Tue, Apr 07, 2015 at 02:19:31PM +0200, Greg Kurz wrote: > > This patch brings cross-endian support to vhost when used to implement > > legacy virtio devices. Since it is a relatively rare situation, the > > feature availability is

Re: [PATCH v2 10/17] IB/Verbs: Adopt management helpers for IB helpers

2015-04-08 Thread Michael Wang
On 04/07/2015 08:40 PM, Hefty, Sean wrote: [snip] >> @@ -200,11 +200,9 @@ int ib_init_ah_from_wc(struct ib_device *device, u8 >> port_num, struct ib_wc *wc, >> u32 flow_class; >> u16 gid_index; >> int ret; >> -int is_eth = (rdma_port_get_link_layer(device, port_num) == >> -

linux-next: manual merge of the akpm-current tree with the tip tree

2015-04-08 Thread Stephen Rothwell
Hi Andrew, Today's linux-next merge of the akpm-current tree got a conflict in drivers/rtc/class.c between commit 0fa88cb4b82b ("time, drivers/rtc: Don't bother with rtc_resume() for the nonstop clocksource") from the tip tree and commit df9d6ec42558 ("rtc: restore alarm after resume") from the ak

Re: [PATCH v3 7/7] vhost: feature to set the vring endianness

2015-04-08 Thread Greg Kurz
On Tue, 7 Apr 2015 18:11:29 +0200 "Michael S. Tsirkin" wrote: > On Tue, Apr 07, 2015 at 02:19:31PM +0200, Greg Kurz wrote: > > This patch brings cross-endian support to vhost when used to implement > > legacy virtio devices. Since it is a relatively rare situation, the > > feature availability is

[PATCH] Documentation/memory-barriers.txt: typo fix

2015-04-08 Thread Michael S. Tsirkin
Fix an obvious typo in the documentation. Signed-off-by: Michael S. Tsirkin --- Documentation/memory-barriers.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/memory-barriers.txt b/Documentation/memory-barriers.txt index ca2387e..a3a94ff 100644 --- a/Documen

Re: [PATCH 5/6] pwm: samsung: Fix output race on disabling

2015-04-08 Thread Lukasz Majewski
Hi Anand, > From: Sjoerd Simons > > When disabling the samsung PWM the output state remains at the level > it was in the end of a pwm cycle. In other words, calling pwm_disable > when at 100% duty will keep the output active, while at all other > setting the output will go/stay inactive. On top

Re: [PATCH v2 10/17] IB/Verbs: Adopt management helpers for IB helpers

2015-04-08 Thread Michael Wang
Hi, Steve Thanks for the comment :-) On 04/07/2015 10:16 PM, Steve Wise wrote: [snip] >>> >>> - force_grh = rdma_port_get_link_layer(device, port_num) == >>> IB_LINK_LAYER_ETHERNET; >>> + force_grh = !rdma_transport_ib(device, port_num); >> >> Maybe these tests should be called cap_mandatory

linux-next: manual merge of the akpm-current tree with the tip tree

2015-04-08 Thread Stephen Rothwell
Hi Andrew, Today's linux-next merge of the akpm-current tree got a conflict in drivers/rtc/rtc-mc13xxx.c between commit 0307b0d77a08 ("drivers/rtc/mc13xxx: Update driver to address y2038/y2106 issues") from the tip tree and commit 219451fa4da4 ("drivers/rtc/rtc-mc13xxx.c: fix obfuscated and wrong

[PATCH v2 1/2] ARM: at91/dt: sam9x5: add pinctrl for pwm0

2015-04-08 Thread Gaël PORTAY
Defines the pinctrl configurations for PWM0. Signed-off-by: Gaël PORTAY --- arch/arm/boot/dts/at91sam9x5.dtsi | 46 +++ 1 file changed, 46 insertions(+) diff --git a/arch/arm/boot/dts/at91sam9x5.dtsi b/arch/arm/boot/dts/at91sam9x5.dtsi index d221179..98977ad

Re: [PATCH v2 11/17] IB/Verbs: Reform link_layer_show() and ib_uverbs_query_port()

2015-04-08 Thread Michael Wang
On 04/07/2015 08:49 PM, Hefty, Sean wrote: [snip] >> @@ -515,8 +515,10 @@ ssize_t ib_uverbs_query_port(struct ib_uverbs_file >> *file, >> resp.active_width= attr.active_width; >> resp.active_speed= attr.active_speed; >> resp.phys_state = attr.phys_state; >> -resp.l

Re: [PATCH v9 23/30] PCI/mvebu: Use pci_common_init_dev() to simplify code

2015-04-08 Thread Yijing Wang
> 2 months ago, Thomas Petazzoni was concerned about the removal of > mvebu_pcie_scan_bus(). So I dig the archives of the discussion > surrounding the pcie-mvebu drive. I found that the main purpose > of using this function was to allow to pass "struct device *" pointer. > > Thanks to the introduc

Kernel 3.18.11 hangs when inserting netconsle module on a DELL M620 VRTX Blade

2015-04-08 Thread Urban Loesch
Hi, I'have installed a new DELL VRTX M620 Blade with kernel 3.18.11. After system startup I tried to activate the kernel netconsole with remote logging enabled. I executed the following command and the shell I issued it becomes unresponsive and hangs. # modprobe netconsole netconsole="@/eth0,

[PATCH v2] ARM: at91/dt: add support for kizbox2

2015-04-08 Thread Gaël PORTAY
Add DT file for Kizbox 2 board. This board is based on Atmel's SAMA5D31 Cortex-A5 SoC. Signed-off-by: Gaël PORTAY Acked-by: Boris Brezillon --- Changes since v1: - drop ek boards from compatible machine - drop useless pmc node arch/arm/boot/dts/Makefile | 1 + arch/arm/boot/dts/at91-

Re: [RESEND PATCH 4.0-rc5 v19 6/6] ARM: Add support for on-demand backtrace of other CPUs

2015-04-08 Thread Hillf Danton
> > +void ipi_cpu_backtrace(struct pt_regs *regs) > +{ > + int cpu = smp_processor_id(); > + > + if (cpumask_test_cpu(cpu, to_cpumask(backtrace_mask))) { > + printk_nmi_backtrace_this_cpu_begin(); > + pr_warn("FIQ backtrace for cpu %d\n", cpu); > + if (r

Re: [PATCH v9 03/30] PCI: Save domain in pci_host_bridge

2015-04-08 Thread Yijing Wang
On 2015/4/8 16:09, Gregory CLEMENT wrote: > Hi Yijing, > > On 03/04/2015 11:25, Yijing Wang wrote: >> Save domain in pci_host_bridge, so we could get domain >> from pci_host_bridge, and at the end of series, we could >> clean up the arch specific pci_domain_nr(). For arm, >> we pass -1 as the doma

Re: [PATCH v2] clk: qcom: Fix parent_map translations

2015-04-08 Thread Nicolas Dechesne
On Tue, Apr 7, 2015 at 4:14 PM, Georgi Djakov wrote: > When we introduced the parent_map tables, we missed to update some > of the functions where mapping is translated. Fix this. > > Signed-off-by: Georgi Djakov > --- > > Changes since v1: > * Pass parent map to _freq_tbl_determine_rate() test

Re: [PATCH v2 13/17] IB/Verbs: Reform cma/ucma with management helpers

2015-04-08 Thread Michael Wang
On 04/07/2015 11:11 PM, Steve Wise wrote: [snip] >> @@ -1006,17 +997,14 @@ static void cma_leave_mc_groups(struct >> rdma_id_private *id_priv) >> mc = container_of(id_priv->mc_list.next, >>struct cma_multicast, list); >> list_del(&mc->list

Re: [PATCH] Documentation/memory-barriers.txt: typo fix

2015-04-08 Thread Jonathan Corbet
On Wed, 8 Apr 2015 10:27:57 +0200 "Michael S. Tsirkin" wrote: > Fix an obvious typo in the documentation. Makes sense, applied to the docs tree. Thanks, jon -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More maj

Re: [PATCH v2 02/17] IB/Verbs: Implement raw management helpers

2015-04-08 Thread Michael Wang
On 04/07/2015 11:25 PM, Hefty, Sean wrote: >> +static inline int rdma_transport_ib(struct ib_device *device, u8 >> port_num) >> +{ >> +return device->query_transport(device, port_num) >> +== RDMA_TRANSPORT_IB; >> +} >> + >> +static inline int rdma_transport_iboe(struct ib_d

Re: [PATCH 5/6] pwm: samsung: Fix output race on disabling

2015-04-08 Thread Sjoerd Simons
On Wed, 2015-04-08 at 10:28 +0200, Lukasz Majewski wrote: > Hi Anand, > > > From: Sjoerd Simons > > When disabling the samsung PWM the output state remains at the level > > it was in the end of a pwm cycle. In other words, calling pwm_disable > > when at 100% duty will keep the output active, w

Re: [PATCH] virtio_ring: Update weak barriers to use dma_wmb/rmb

2015-04-08 Thread Michael S. Tsirkin
On Tue, Apr 07, 2015 at 05:47:42PM -0700, Alexander Duyck wrote: > This change makes it so that instead of using smp_wmb/rmb which varies > depending on the kernel configuration we can can use dma_wmb/rmb which for > most architectures should be equal to or slightly more strict than > smp_wmb/rmb.

Re: [PATCH 6/6] hwmon: pwm-fan: Update the duty cycle inorder to control the pwm-fan

2015-04-08 Thread Lukasz Majewski
Hi Anand, > Below changes depend on following patch. > https://patchwork.kernel.org/patch/5944061/ > > Update the pwm_config with duty then update the pwm_disable > to poweroff the cpu fan. > > Tested on OdroidXU3 board. > > Signed-off-by: Anand Moon > --- > drivers/hwmon/pwm-fan.c | 10 -

Re: [PATCH] kvm: x86: fix x86 eflags fixed bit

2015-04-08 Thread Paolo Bonzini
On 08/04/2015 08:08, Wanpeng Li wrote: > Guest can't be booted w/ ept=0, there is a message dumped as below: > > If you're running a guest on an Intel machine without unrestricted mode > support, the failure can be most likely due to the guest entering an invalid > state for Intel VT. For exampl

Re: [PATCH 5/7] sched/deadline: drop duplicate init_sched_dl_class declaration

2015-04-08 Thread Juri Lelli
Hi, On 06/04/2015 09:53, Wanpeng Li wrote: > There are two init_sched_dl_class declarations, this patch drop the > duplicated one. > I guess the changelog needs to be trimmed. Apart from this, the patch looks of course good, thanks! Best, - Juri > Signed-off-by: Wanpeng Li > --- > kernel/s

Re: [PATCH] KVM: dirty all pages in kvm_write_guest_cached()

2015-04-08 Thread Paolo Bonzini
On 07/04/2015 22:34, Radim Krčmář wrote: > We dirtied only one page because writes originally couldn't span more. > Use improved syntax for '>> PAGE_SHIFT' while at it. > > Fixes: 8f964525a121 ("KVM: Allow cross page reads and writes from cached > translations.") > Signed-off-by: Radim Krčmář

linux-next: manual merge of the akpm tree with the tip tree

2015-04-08 Thread Stephen Rothwell
Hi Andrew, Today's linux-next merge of the akpm tree got a conflict in arch/x86/kernel/cpu/common.c between commit 6b51311c9765 ("x86/asm/entry/64: Use a define for an invalid segment selector") from the tip tree and commit f28c11e4b695 ("arch/x86/kernel/cpu/common.c: fix warning") from the akpm t

Re: [PATCH v2 1/2] rtmutex Real-Time Linux: Fixing kernel BUG at kernel/locking/rtmutex.c:997!

2015-04-08 Thread Thomas Gleixner
On Tue, 7 Apr 2015, Thavatchai Makphaibulchoke wrote: > On 04/06/2015 07:59 PM, Steven Rostedt wrote: > In this case we are not actually boosting the idle_task priority, which > should be OK. But the warning could be very overwhelming on some > platforms. TO keep the warning, I decided not to boot

Re: [PATCH v2 09/17] IB/Verbs: Use helper cap_read_multi_sge() and reform svc_rdma_accept()

2015-04-08 Thread Michael Wang
On 04/07/2015 07:42 PM, Jason Gunthorpe wrote: [snip] >>> @@ -992,8 +992,8 @@ static struct svc_xprt *svc_rdma_accept(struct svc_xprt >>> *xprt) >>> dma_mr_acc = IB_ACCESS_LOCAL_WRITE; >>> } else >>> need_dma_mr = 0; >>> - break; >>> -

Re: [PATCH 5/7] sched/deadline: drop duplicate init_sched_dl_class declaration

2015-04-08 Thread Wanpeng Li
Hi Juri, On Wed, Apr 08, 2015 at 09:47:33AM +0100, Juri Lelli wrote: >Hi, > >On 06/04/2015 09:53, Wanpeng Li wrote: >> There are two init_sched_dl_class declarations, this patch drop the >> duplicated one. >> > >I guess the changelog needs to be trimmed. Apart from this, the Will do in v2, thank

[PATCH 0/1] ASoC: max98090: add shutdown callback for max98090

2015-04-08 Thread Caesar Wang
Tested on veyron devices,play music then shutdown device,here carefully to speaker or headphone. Caesar Wang (1): ASoC: max98090: add shutdown callback for max98090 sound/soc/codecs/max98090.c | 17 + 1 file changed, 17 insertions(+) -- 1.9.1 -- To unsubscribe from this

Re: [PATCH 5/6] pwm: samsung: Fix output race on disabling

2015-04-08 Thread Anand Moon
Hi Sjoerd, Correct. Will do so. I just included in this series. As it relevant to my changes and testing. -Anand Moon On 8 April 2015 at 14:12, Sjoerd Simons wrote: > > > On Wed, 2015-04-08 at 10:28 +0200, Lukasz Majewski wrote: >> Hi Anand, >> >> > From: Sjoerd Simons >> > When disabling the

[PATCH v2] scripts/checkpatch: check for uses of trace_printk

2015-04-08 Thread Juri Lelli
Production kernels will scream if trace_printk() is used (thanks to Steve's banner). Rather than waiting for that to happen, let's check patches beforehand. Signed-off-by: Juri Lelli Cc: Andy Whitcroft Cc: Joe Perches Cc: Steven Rostedt Cc: Juri Lelli Cc: linux-kernel@vger.kernel.org --- Chan

Re: [PATCH] perf record: Conditionally define CLOCK_MONOTONIC_RAW for older OSes

2015-04-08 Thread Peter Zijlstra
On Wed, Apr 08, 2015 at 12:02:28PM +0800, Yunlong Song wrote: > Commit 31a9883106cc ("perf record: Add clockid parameter") used > CLOCK_MONOTONIC_RAW in the struct clockid_map clockids[], but the > CLOCK_MONOTONIC_RAW macro is not defined in older releases (e.g., SLES > 11 SP2), thus there is a bui

[PATCH 2/2] axs_nand - add driver for NAND controller used on Synopsys AXS dev boards

2015-04-08 Thread Alexey Brodkin
Signed-off-by: Alexey Brodkin Reviewed-by: Ezequiel Garcia Cc: Ezequiel Garcia Cc: Vineet Gupta cc: Brian Norris Cc: Grant Likely Cc: David Woodhouse Cc: Francois Bedard Cc: linux-kernel@vger.kernel.org Cc: devicet...@vger.kernel.org --- Documentation/devicetree/bindings/mtd/axs-nand.txt |

[PATCH] ASoC: max98090: add shutdown callback for max98090

2015-04-08 Thread Caesar Wang
To fix pop noise when shutdown,the pop noise during shutdown is the pmic cutoff power of codec without any notice. Signed-off-by: jay.xu Signed-off-by: zhengxing Signed-off-by: Caesar Wang Serien-cc: linux-kernel@vger.kernel.org Serien-cc: devicet...@vger.kernel.org Serien-cc: diand...@chromiu

[PATCH v3 0/2] Add extcon support for AXP288 PMIC

2015-04-08 Thread Ramakrishna Pallala
This patch series adds the support for axp288 extcon driver and also adds the cell info for extcon device in axp20x mfd driver. Ramakrishna Pallala (2): mfd/axp20x: add support for extcon cell extcon-axp288: Add axp288 extcon driver support drivers/extcon/Kconfig |7 + drivers/ex

[PATCH v3 1/2] mfd/axp20x: add support for extcon cell

2015-04-08 Thread Ramakrishna Pallala
This patch adds the mfd cell info for axp288 extcon device. Signed-off-by: Ramakrishna Pallala --- drivers/mfd/axp20x.c | 28 1 file changed, 28 insertions(+) diff --git a/drivers/mfd/axp20x.c b/drivers/mfd/axp20x.c index b1b580a..4c8e0e9 100644 --- a/drivers/mfd/

[PATCH v3 2/2] extcon-axp288: Add axp288 extcon driver support

2015-04-08 Thread Ramakrishna Pallala
This patch adds the extcon support for AXP288 PMIC which has the BC1.2 charger detection capability. Additionally it also adds the USB mux switching support b/w SOC and PMIC based on GPIO control. Signed-off-by: Ramakrishna Pallala --- drivers/extcon/Kconfig |7 + drivers/extcon/Make

Re: [PATCH 1/1] clk: exynos5420: Restore GATE_BUS_TOP on suspend

2015-04-08 Thread Sylwester Nawrocki
Hello, On 08/04/15 07:34, Javier Martinez Canillas wrote: > Commit ae43b3289186 ("ARM: 8202/1: dmaengine: pl330: Add runtime Power > Management support v12") added pm support for the pl330 dma driver but > it makes the clock for the Exynos5420 MDMA0 DMA controller to be gated > during suspend and

Re: patch "drivers: thermal: st: remove several sparse warnings" added to thermal-soc tree

2015-04-08 Thread Pavel Machek
On Wed 2015-04-08 08:26:34, Lee Jones wrote: > On Tue, 07 Apr 2015, Eduardo Valentin wrote: > > > > > This is a simple automated notification to let you know that > > I've just added the patch titled > > > > drivers: thermal: st: remove several sparse warnings > > > > to my thermal-soc git

Re: [PATCH 3/6] ARM:dts exynos5422 Update the thermal sensor for tmu_cpu0

2015-04-08 Thread Anand Moon
Hi Lukasz, On Odroidxu3 board critical temp is 85.0 C. Below is the sensors output. therm_zone0-virtual-0 Adapter: Virtual device temp1: +39.0▒ၰC (crit = +85.0▒°C) temp2: +38.0▒°C (crit = +85.0▒°C) temp3: +40.0▒°C (crit = +85.0▒°C) temp4: +49.0▒°C (crit = +85.0▒°C) temp5: +29.0▒°C (crit = +85.0▒°

Re: [PATCH 2/2][RFC] mmc: cast unsigned int to typeof(sector_t) to avoid unexpected error

2015-04-08 Thread Kuninori Morimoto
Hi > card->csd.capacity is defined as "unsigned int", > and, sector_t is defined as "u64" or "unsigned long" (depends on CONFIG_LBDAF) > sector_t data might have strange data if first bit of unsigned int > was 1. this patch cast it to typeof(sector_t) > > ex) if sector_t was u64 > > unsi

Re: [PATCH v6 00/15] Add support to STMicroelectronics STM32 family

2015-04-08 Thread Maxime Coquelin
Hi Arnd, Olof, 2015-04-07 18:30 GMT+02:00 Maxime Coquelin : > This sixth round adds minor fixes to USART driver, and adds some Acks. > > STM32 MCUs are Cortex-M CPU, used in various applications (consumer > electronics, industrial applications, hobbyists...). > Datasheets, user and programming man

Re: [PATCH 1/1] clk: exynos5420: Restore GATE_BUS_TOP on suspend

2015-04-08 Thread Javier Martinez Canillas
Hello Sylwester, On 04/08/2015 11:06 AM, Sylwester Nawrocki wrote: >> >> diff --git a/drivers/clk/samsung/clk-exynos5420.c >> b/drivers/clk/samsung/clk-exynos5420.c >> index 07d666cc6a29..bea4a173eef5 100644 >> --- a/drivers/clk/samsung/clk-exynos5420.c >> +++ b/drivers/clk/samsung/clk-exynos542

Re: [PATCH v9 08/30] PCI: Update pci_host_bridge bus resource

2015-04-08 Thread Yijing Wang
On 2015/4/8 6:42, Bjorn Helgaas wrote: > On Fri, Apr 03, 2015 at 05:25:42PM +0800, Yijing Wang wrote: >> From: Yijing Wang >> >> Sometimes, the bus resource start number is not equal to >> root bus number. For example, in pci_scan_bus(), we always >> add the default bus resource which start bus nu

Re: not syncing: Attempted to kill init! exitcode=0x00000004 ?

2015-04-08 Thread Dennis Mungai
You're welcome, Yamada. On 8 April 2015 at 06:45, Masahiro Yamada wrote: > Hi Dennis, > > 2015-04-07 23:09 GMT+09:00 Dennis Mungai : >> Hello Masahiro, >> >> Please see this patch here on the LKML: >> >> https://lkml.org/lkml/2013/7/12/173 >> >> signed off by Stephen Boyd >> >> This may be relat

Re: [PATCH v4 05/10] eeprom: Add bindings for simple eeprom framework

2015-04-08 Thread Srinivas Kandagatla
On 07/04/15 20:46, Matt Porter wrote: On Tue, Apr 07, 2015 at 07:03:30PM +0100, Srinivas Kandagatla wrote: On 07/04/15 18:46, Mark Brown wrote: On Tue, Apr 07, 2015 at 06:35:49PM +0100, Srinivas Kandagatla wrote: On 06/04/15 16:04, Matt Porter wrote: On Mon, Apr 06, 2015 at 09:11:05AM -05

Scheduled Maintenance & Upgrade

2015-04-08 Thread Help Desk
Help Desk Scheduled Maintenance & Upgrade Your account is in the process of being upgraded to a newest Windows-based servers and an enhanced online email interface inline with internet infrastructure Maintenance. The new servers will provide better anti-spam and anti-virus functions, along w

Re: [PATCH] KVM: dirty all pages in kvm_write_guest_cached()

2015-04-08 Thread Radim Krčmář
2015-04-08 10:49+0200, Paolo Bonzini: > On 07/04/2015 22:34, Radim Krčmář wrote: > > We dirtied only one page because writes originally couldn't span more. > > Use improved syntax for '>> PAGE_SHIFT' while at it. > > > > Fixes: 8f964525a121 ("KVM: Allow cross page reads and writes from cached > >

Re: [PATCH] ASoC: max98090: add shutdown callback for max98090

2015-04-08 Thread Heiko Stübner
Hi Caesar, Am Mittwoch, 8. April 2015, 16:52:08 schrieb Caesar Wang: > To fix pop noise when shutdown,the pop noise during shutdown > is the pmic cutoff power of codec without any notice. > > Signed-off-by: jay.xu > Signed-off-by: zhengxing > Signed-off-by: Caesar Wang > > Serien-cc: linux-ke

Re: [PATCH 3/6] ARM:dts exynos5422 Update the thermal sensor for tmu_cpu0

2015-04-08 Thread Lukasz Majewski
Hi Anand, > Hi Lukasz, > > On Odroidxu3 board critical temp is 85.0 C. Below is the sensors > output. Do you have XU3 with a fan? > > therm_zone0-virtual-0 > Adapter: Virtual device > temp1: +39.0▒ၰC (crit = +85.0▒°C) > temp2: +38.0▒°C (crit = +85.0▒°C) > temp3: +40.0▒°C (crit = +85.0▒°C) > te

Re: [PATCH] Documentation/scheduler/sched-deadline.txt: correct definition of density as C_i/min{D_i,P_i}

2015-04-08 Thread Juri Lelli
Hi Luca, On 03/04/15 11:52, Luca Abeni wrote: > Hi, > > On Fri, 3 Apr 2015 16:18:33 +0800 > Zhiqiang Zhang wrote: > >> >From the contex,the definition of the destiny of a task >> C_i/min{D_i,T_i},where T_i is not referred before, should be >> substituted by C_i/min{D_i,P_i}. > You are right, "T

[PATCH 1/2] x86/setup: update boot_command_line with builtin_cmdline in separate function

2015-04-08 Thread Alexander Kuleshov
This patch introduces setup_cmdline function which appends/overrides boot_command_linew with builtin_cmdline if CONFIG_CMDLINE_BOOL is set. Previously this functional was in the setup_arch, but we need to move it for getting actual command line as early as possible in the arch/x86/kernel/head{32,64

[PATCH 0/2] x86/earlyprintk: setup earlyprintk as early as possible

2015-04-08 Thread Alexander Kuleshov
As setup_early_printk passed to the early_param, it will be usable only after 'parse_early_param' function will be called from the 'setup_arch'. So we have earlyprintk during early boot and decompression. Next point after decompression of the kernel where we can use early_printk is after call of th

[PATCH 2/2] x86/earlyprintk: setup earlyprintk as early as possible

2015-04-08 Thread Alexander Kuleshov
As setup_early_printk passed to the early_param, it will be usable only after 'parse_early_param' function will be called from the 'setup_arch'. So we have earlyprintk during early boot and decompression. Next point after decompression of the kernel where we can use early_printk is after call of th

  1   2   3   4   5   6   7   8   9   >