[PATCH v5 03/27] IB/Verbs: Reform IB-core mad/agent/user_mad

2015-04-20 Thread Michael Wang
Use raw management helpers to reform IB-core mad/agent/user_mad. Cc: Hal Rosenstock h...@dev.mellanox.co.il Cc: Steve Wise sw...@opengridcomputing.com Cc: Tom Talpey t...@talpey.com Cc: Jason Gunthorpe jguntho...@obsidianresearch.com Cc: Doug Ledford dledf...@redhat.com Cc: Ira Weiny

[PATCH v4 3/3] tracing: add trace event for memory-failure

2015-04-20 Thread Xie XiuQi
RAS user space tools like rasdaemon which base on trace event, could receive mce error event, but no memory recovery result event. So, I want to add this event to make this scenario complete. This patch add a event at ras group for memory-failure. The output like below: # tracer: nop # #

Re: [PATCH 3/3] btrfs: set FS_SUPPORTS_SEEK_HOLE flag.

2015-04-20 Thread David Howells
NeilBrown ne...@suse.de wrote: + .fs_flags = FS_REQUIRES_DEV | FS_BINARY_MOUNTDATA | + FS_SUPPORTS_SEEK_HOLE, I must be missing something: warthoggit merge linus/master Already up-to-date. warthogstg id

[PATCH v4 2/3] memory-failure: change type of action_result's param 3 to enum

2015-04-20 Thread Xie XiuQi
Change type of action_result's param 3 to enum for type consistency, and rename mf_outcome to mf_result for clearly. Signed-off-by: Xie XiuQi xiexi...@huawei.com --- include/linux/mm.h | 2 +- mm/memory-failure.c | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git

[PATCH v4 0/3] tracing: add trace event for memory-failure

2015-04-20 Thread Xie XiuQi
RAS user space tools like rasdaemon which base on trace event, could receive mce error event, but no memory recovery result event. So, I want to add this event to make this scenario complete. This patchset add a event at ras group for memory-failure. The output like below: # tracer: nop # #

Re: [PATCHv2] drm: fb_helper: prefer to use mode, which is not DRM_MODE_TYPE_USERDEF

2015-04-20 Thread Radek Dostál
Hi Chris, On 04/20/2015 11:09 AM, Chris Wilson wrote: The EDID modes should be earlier in the list, and so higher priority than the cmdline mode. The only instance I see that breaking down is if the mode gets created by drm_pick_cmdline_mode, i.e. indeed at the beginning the command line mode

Re: [PATCH V2 1/6] perf,core: allow invalid context events to be part of sw/hw groups

2015-04-20 Thread Mark Rutland
On Sat, Apr 18, 2015 at 01:47:06AM +0100, Andi Kleen wrote: ... which would give you arbitrary skew, because one counter is free-running and the other is not (when scheduling a context in or out we stop the PMU) Everyone just reads the counter and subtracts it from the last value

gcc doesn't warn about uninitialized variable use in switch/case with -O (was: Re: [PATCH] Staging: dgnc: Using temporary value for repeated dereferences)

2015-04-20 Thread Joe Perches
On Mon, 2015-04-20 at 11:33 +0300, Dan Carpenter wrote: You would hope that GCC would warn about the uninitialized variable but it doesn't. That's odd. So I filed this new gcc bugzilla: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65812) gcc 4.9.1 doesn't warn about uninitialized variable use

Re: [PATCHv2] drm: fb_helper: prefer to use mode, which is not DRM_MODE_TYPE_USERDEF

2015-04-20 Thread Radek Dostál
Hi Chris, On 04/20/2015 12:48 PM, Chris Wilson wrote: Unfortunately you can not do that. I already tried. At the time when drm_helper_probe_add_cmdline_mode is called EDID informations are not yet available. My understanding is that it should be. fb_helper.initial_config does a probe

Re: [PATCH 1/5] clocksource: st_lpc: Add LPC timer as a clocksource.

2015-04-20 Thread Peter Griffin
Hi Paul, On Fri, 17 Apr 2015, Paul Bolle wrote: On Fri, 2015-04-17 at 11:50 +0100, Peter Griffin wrote: --- a/drivers/clocksource/Kconfig +++ b/drivers/clocksource/Kconfig +config CLKSRC_ST_LPC_CLOCK + bool + depends on ARCH_STI + select CLKSRC_OF if OF + help +

Re: [alsa-devel] [PATCH 1/2] extcon: arizona: Add support for select accessory detect mode when headphone detection

2015-04-20 Thread Charles Keepax
On Mon, Apr 20, 2015 at 10:45:14AM +0900, Inha Song wrote: Hi, Thanks for your comments, On Fri, 17 Apr 2015 10:00:47 +0100 Charles Keepax ckee...@opensource.wolfsonmicro.com wrote: On Fri, Apr 17, 2015 at 05:32:58PM +0900, Inha Song wrote: This patch add support for select

[PATCH v5 00/27] IB/Verbs: IB Management Helpers

2015-04-20 Thread Michael Wang
Since v4: * Thanks for the comments from Hal, Sean, Tom, Or Gerlitz, Jason, Roland, Ira and Steve :-) Please remind me if anything missed :-P * Fix logical issue inside 3#, 14# * Refine 3#, 4#, 5# with label 'free' * Rework 10# to stop using port 1 when port already assigned There

[PATCH v5 13/27] IB/Verbs: Reserve legacy transport type in 'dev_addr'

2015-04-20 Thread Michael Wang
Reserve the legacy transport type for the 'transport' member of 'struct rdma_dev_addr' until we make sure this is no longer needed. Cc: Hal Rosenstock h...@dev.mellanox.co.il Cc: Steve Wise sw...@opengridcomputing.com Cc: Tom Talpey t...@talpey.com Cc: Jason Gunthorpe

[PATCH v5 16/27] IB/Verbs: Use management helper cap_ib_mad()

2015-04-20 Thread Michael Wang
Introduce helper cap_ib_mad() to help us check if the port of an IB device support Infiniband Management Datagrams. Cc: Hal Rosenstock h...@dev.mellanox.co.il Cc: Steve Wise sw...@opengridcomputing.com Cc: Tom Talpey t...@talpey.com Cc: Jason Gunthorpe jguntho...@obsidianresearch.com Cc: Doug

[PATCH v5 14/27] IB/Verbs: Reform cma_acquire_dev()

2015-04-20 Thread Michael Wang
Reform cma_acquire_dev() with management helpers, introduce cma_validate_port() to make the code more clean. Cc: Hal Rosenstock h...@dev.mellanox.co.il Cc: Steve Wise sw...@opengridcomputing.com Cc: Tom Talpey t...@talpey.com Cc: Jason Gunthorpe jguntho...@obsidianresearch.com Cc: Doug Ledford

[PATCH v5 15/27] IB/Verbs: Reform rest part in IB-core cma

2015-04-20 Thread Michael Wang
Use raw management helpers to reform rest part in IB-core cma. Cc: Hal Rosenstock h...@dev.mellanox.co.il Cc: Steve Wise sw...@opengridcomputing.com Cc: Tom Talpey t...@talpey.com Cc: Jason Gunthorpe jguntho...@obsidianresearch.com Cc: Doug Ledford dledf...@redhat.com Cc: Ira Weiny

Re: [PATCH] Bluetooth: Pre-initialize variables in read_local_oob_ext_data_complete()

2015-04-20 Thread Geert Uytterhoeven
Hi Marcel, On Fri, Apr 17, 2015 at 10:38 PM, Marcel Holtmann mar...@holtmann.org wrote: net/bluetooth/mgmt.c: In function ‘read_local_oob_ext_data_complete’: net/bluetooth/mgmt.c:6474: warning: ‘r256’ may be used uninitialized in this function net/bluetooth/mgmt.c:6474: warning: ‘h256’ may

Re: [PATCH] Staging: i2o: fixed various code style issues in i2o_block.c

2015-04-20 Thread Alan Cox
On Sat, 2015-04-18 at 22:12 +0200, Yorick Rommers wrote: From: Yorick yorick-romm...@hotmail.com This is a patch that fixes errors regarding whitespaces and split strings. Wouldn't worry. The i2o layer is in staging because it is about to be dropped from the kernel unless someone steps up to

Re: [PATCH 2/3] fscache/cachefiles: optionally use SEEK_DATA instead of -bmap.

2015-04-20 Thread Christoph Hellwig
On Mon, Apr 20, 2015 at 04:27:00PM +1000, NeilBrown wrote: A worthwhile goal, but I certainly wouldn't consider pursuing it until what I have submitted so far as been accepted - let's not reject good while waiting for perfect. It's still broken. You add conditional flag for the almost right

Re: [PATCH 5/5] Drivers: hv: vmbus: Implement the protocol for tearing down vmbus state

2015-04-20 Thread Vitaly Kuznetsov
Vitaly Kuznetsov vkuzn...@redhat.com writes: K. Y. Srinivasan k...@microsoft.com writes: Implement the protocol for tearing down the monitor state established with the host. Signed-off-by: K. Y. Srinivasan k...@microsoft.com Unfortunatelly this patch leads to the following crash:

Re: [PATCHv2] drm: fb_helper: prefer to use mode, which is not DRM_MODE_TYPE_USERDEF

2015-04-20 Thread Radek Dostál
Hi Chris, On 04/20/2015 11:58 AM, Chris Wilson wrote: Hmm, so that should be before the clock comparison as well to fix your example. Not as neat. indeed that is required. The other idea I was considering was not adding the GTF cmdline mode if the probed modes already contain one of a

[PATCH v2] clk: Show clock rate and error value when fail to set clock rate

2015-04-20 Thread Chanwoo Choi
This patch shows the current clock rate nad error value when clk_set_rate() fail to set the clock rate because log messgae means only the clock rate. Cc: Mike Turquette mturque...@linaro.org Cc: Stephen Boyd sb...@codeaurora.org Cc: Sylwester Nawrocki s.nawro...@samsung.com Signed-off-by: Chanwoo

Re: On register r/w macros/procedures of drivers/media/pci

2015-04-20 Thread Andrey Utkin
On Mon, Apr 20, 2015 at 2:18 PM, Krzysztof Hałasa khal...@piap.pl wrote: Andrey Utkin andrey.ut...@corp.bluecherry.net writes: I am starting a work on driver for techwell tw5864 media grabberencoder. If this is tw6864 then I have a driver mostly completed. Actually I'm using tw6869 but I

Re: [PATCH 02/21] ND NFIT-Defined/NVIDIMM Subsystem

2015-04-20 Thread Ingo Molnar
* Dan Williams dan.j.willi...@intel.com wrote: Maintainer information and documenation for drivers/block/nd/ Cc: Andy Lutomirski l...@amacapital.net Cc: Boaz Harrosh b...@plexistor.com Cc: H. Peter Anvin h...@zytor.com Cc: Jens Axboe ax...@fb.com Cc: Ingo Molnar mi...@kernel.org Cc:

[PATCH v2 2/7] ARM: dts: qcom: Add PM8941 functions device nodes

2015-04-20 Thread Ivan T. Ivanov
Add configuration nodes for following devices: * GPIO block, with 36 pins * MPP block, with 8 pins * Current ADC (IADC) * Volatage ADC (VADC), with multiple inputs * Thermal sensor device, which is using on chip VADC channel report PMIC die temperature * Power key device, which is responsible

Re: [PATCH v8 01/17] h8300: Assembly headers.

2015-04-20 Thread Tobias Klauser
On 2015-04-20 at 08:13:17 +0200, Yoshinori Sato ys...@users.sourceforge.jp wrote: [...] diff --git a/arch/h8300/include/asm/elf.h b/arch/h8300/include/asm/elf.h new file mode 100644 index 000..09031d0 --- /dev/null +++ b/arch/h8300/include/asm/elf.h @@ -0,0 +1,101 @@ +#ifndef

Re: [PATCH v2 1/5] mmc: dt-bindings: add Mediatek MMC bindings

2015-04-20 Thread Sascha Hauer
Hi Chaotian, On Tue, Mar 17, 2015 at 11:13:51AM +0800, Chaotian Jing wrote: Document the device-tree binding of Mediatek MMC host Signed-off-by: Chaotian Jing chaotian.j...@mediatek.com --- Documentation/devicetree/bindings/mmc/mtk-sd.txt | 33 1 file changed,

[PATCH v5 02/27] IB/Verbs: Implement raw management helpers

2015-04-20 Thread Michael Wang
Add raw helpers: rdma_tech_ib rdma_tech_iboe rdma_tech_iwarp rdma_ib_or_iboe (transition, clean up later) To help us detect which technology the port supported. Cc: Hal Rosenstock h...@dev.mellanox.co.il Cc: Steve Wise sw...@opengridcomputing.com Cc: Tom Talpey

[PATCH v5 27/27] IB/Verbs: Cleanup rdma_node_get_transport()

2015-04-20 Thread Michael Wang
We have get rid of all the scene using legacy rdma_node_get_transport(), now clean it up. Cc: Hal Rosenstock h...@dev.mellanox.co.il Cc: Steve Wise sw...@opengridcomputing.com Cc: Tom Talpey t...@talpey.com Cc: Jason Gunthorpe jguntho...@obsidianresearch.com Cc: Doug Ledford dledf...@redhat.com

[PATCH v5 26/27] IB/Verbs: Clean up rdma_ib_or_iboe()

2015-04-20 Thread Michael Wang
We have finished introducing the cap_XX(), and raw helper rdma_ib_or_iboe() is no longer necessary, thus clean it up. Cc: Hal Rosenstock h...@dev.mellanox.co.il Cc: Steve Wise sw...@opengridcomputing.com Cc: Tom Talpey t...@talpey.com Cc: Jason Gunthorpe jguntho...@obsidianresearch.com Cc: Doug

Re: [RFC 1/4] fs: Add generic file system event notifications

2015-04-20 Thread Beata Michalska
Hi, On 04/18/2015 12:44 AM, Andreas Dilger wrote: On Apr 17, 2015, at 5:31 AM, Jan Kara j...@suse.cz wrote: On Wed 15-04-15 09:15:44, Beata Michalska wrote: Introduce configurable generic interface for file system-wide event notifications to provide file systems with a common way of

[PATCH v2] clk: mediatek: Export CPU mux clocks for CPU frequency control

2015-04-20 Thread pi-cheng.chen
This patch adds CPU mux clocks which are used by Mediatek cpufreq driver for intermediate clock source switching. It is based on v11 of common clock support for Mediatek MT8135 and MT8173[1] [1] http://lists.infradead.org/pipermail/linux-arm-kernel/2015-April/335967.html Changes in v2: - Remove

Re: [PATCH 3/3] btrfs: set FS_SUPPORTS_SEEK_HOLE flag.

2015-04-20 Thread NeilBrown
On Mon, 20 Apr 2015 09:47:42 +0100 David Howells dhowe...@redhat.com wrote: NeilBrown ne...@suse.de wrote: + .fs_flags = FS_REQUIRES_DEV | FS_BINARY_MOUNTDATA | + FS_SUPPORTS_SEEK_HOLE, I must be missing something: warthoggit merge linus/master

Re: [PATCH] arm64: annotate psci invoke functions as notrace

2015-04-20 Thread Mark Rutland
-static noinline int __invoke_psci_fn_hvc(u64 function_id, u64 arg0, u64 arg1, +static noinline notrace int __invoke_psci_fn_hvc(u64 function_id, u64 arg0, u64 arg1, u64 arg2) [...] -static noinline int __invoke_psci_fn_smc(u64

Re: [PATCH 3.10 31/34] kernel.h: define u8, s8, u32, etc. limits

2015-04-20 Thread Konstantin Khlebnikov
On Fri, Apr 17, 2015 at 4:29 PM, Greg Kroah-Hartman gre...@linuxfoundation.org wrote: 3.10-stable review patch. If anyone has any objections, please let me know. -- From: Alex Elder alex.el...@linaro.org commit 89a0714106aac7309c7dfa0f004b39e1e89d2942 upstream. Create

[Patch v2 2/3] firmware: dmi_scan: add SBMIOS entry and DMI tables

2015-04-20 Thread Ivan Khoronzhuk
Some utils, like dmidecode and smbios, need to access SMBIOS entry table area in order to get information like SMBIOS version, size, etc. Currently it's done via /dev/mem. But for situation when /dev/mem usage is disabled, the utils have to use dmi sysfs instead, which doesn't represent SMBIOS

[Patch v2 3/3] Documentation: ABI: sysfs-firmware-dmi: add -entries suffix to file name

2015-04-20 Thread Ivan Khoronzhuk
The dmi-sysfs module adds DMI table structures entries under /sys/firmware/dmi/entries only, so rename documentation file to sysfs-firmware-dmi-entries as more appropriate. Without renaming it's confusing to differ this from sysfs-firmware-dmi-tables that adds raw DMI table and actually adds dmi

Re: qemu:arm test failure due to commit 8053871d0f7f (smp: Fix smp_call_function_single_async() locking)

2015-04-20 Thread Geert Uytterhoeven
On Sun, Apr 19, 2015 at 4:08 PM, Guenter Roeck li...@roeck-us.net wrote: On 04/19/2015 02:31 AM, Ingo Molnar wrote: * Linus Torvalds torva...@linux-foundation.org wrote: On Sun, Apr 19, 2015 at 4:48 AM, Linus Torvalds torva...@linux-foundation.org wrote: Does that smaller patch work

Re: [PATCH 1/1] x86: replace cpu_up hard-coded mdelay with variable

2015-04-20 Thread Ingo Molnar
* Len Brown l...@kernel.org wrote: +config X86_INIT_MDELAY + int Milliseconds to wait to de-assert INIT upon CPU startup if SMP + range 0 10 + default 10 + ---help--- + This allows you to specify how long the BSP will delay + between asserting INIT and

Re: [PATCH v3 2/2] [media] uvcvideo: Remain runtime-suspended at sleeps

2015-04-20 Thread Tomeu Vizoso
On 17 April 2015 at 19:32, Alan Stern st...@rowland.harvard.edu wrote: On Fri, 17 Apr 2015, Tomeu Vizoso wrote: When the system goes to sleep and afterwards resumes, a significant amount of time is spent suspending and resuming devices that were already runtime-suspended. By setting the

Re: [RFC][PATCH v2 00/13] USB: OTG/DRD Core functionality

2015-04-20 Thread Roger Quadros
Hi Peter, On 20/04/15 06:05, Peter Chen wrote: On Tue, Apr 14, 2015 at 01:41:47PM +0300, Roger Quadros wrote: This is an attempt to centralize OTG/Dual-role functionality in the kernel. As of now I've got Dual-role functionality working pretty reliably on dra7-evm. xhci side of things for

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

2015-04-20 Thread Ivan T. Ivanov
Add configuration nodes for multi purpose pins and thermal sensor devices. Thermal sensor will report PMIC die temperature. Signed-off-by: Ivan T. Ivanov ivan.iva...@linaro.org --- arch/arm/boot/dts/qcom-pm8841.dtsi | 18 ++ 1 file changed, 18 insertions(+) diff --git

Re: [PATCH v8 01/17] h8300: Assembly headers.

2015-04-20 Thread Richard Weinberger
On Mon, Apr 20, 2015 at 9:47 AM, Stephen Rothwell s...@canb.auug.org.au wrote: Hi Richard, On Mon, 20 Apr 2015 09:17:30 +0200 Richard Weinberger richard.weinber...@gmail.com wrote: *tons removed* Please edit quoted text in your replies down to the essentials. That one was so large that

Re: [PATCH] Staging: i2o: fixed various code style issues in i2o_block.c

2015-04-20 Thread Dan Carpenter
On Sat, Apr 18, 2015 at 10:12:14PM +0200, Yorick Rommers wrote: From: Yorick yorick-romm...@hotmail.com Don't include a From: unless you are sending a patch someone else wrote. Otherwise we prefer to get it from your email From. Also you forgot your last name. @@ -488,8 +488,8 @@ static int

Re: [PATCH] Staging: dgnc: fixed code style issue

2015-04-20 Thread Dan Carpenter
On Sun, Apr 19, 2015 at 09:18:23PM +0200, Yorick Rommers wrote: A patch for a line being too long (80) in dgnc_mgmt.c, fixed by making a temporary value for dgnc_Board[brd], and removing an unnecessary typecast. Signed-off-by: Yorick Rommers yorick-romm...@hotmail.com ---

Re: [PATCH 02/21] ND NFIT-Defined/NVIDIMM Subsystem

2015-04-20 Thread Dan Williams
On Mon, Apr 20, 2015 at 12:06 AM, Ingo Molnar mi...@kernel.org wrote: * Dan Williams dan.j.willi...@intel.com wrote: Maintainer information and documenation for drivers/block/nd/ Cc: Andy Lutomirski l...@amacapital.net Cc: Boaz Harrosh b...@plexistor.com Cc: H. Peter Anvin h...@zytor.com

[PATCH] ARM: at91/dt: kizbox: update and rename to at91-kizbox

2015-04-20 Thread Gaël PORTAY
Sort nodes, rename to match Atmel naming convention and update the features below: - command-line, - use proper serial uart, - rename leds and gpio-keys, - update to pwm-leds and - fix gpio-key level. Signed-off-by: Gaël PORTAY g.por...@overkiz.com --- arch/arm/boot/dts/Makefile|

Re: [PATCH 5/5] Drivers: hv: vmbus: Implement the protocol for tearing down vmbus state

2015-04-20 Thread Vitaly Kuznetsov
K. Y. Srinivasan k...@microsoft.com writes: Implement the protocol for tearing down the monitor state established with the host. Signed-off-by: K. Y. Srinivasan k...@microsoft.com Unfortunatelly this patch leads to the following crash: pre-udev:/# modprobe hv_vmbus modprobe hv_vmbus [

Re: [PATCHv2] drm: fb_helper: prefer to use mode, which is not DRM_MODE_TYPE_USERDEF

2015-04-20 Thread Chris Wilson
On Mon, Apr 20, 2015 at 10:46:08AM +0100, Chris Wilson wrote: On Mon, Apr 20, 2015 at 11:36:04AM +0200, Radek Dostál wrote: Hi Chris, On 04/20/2015 11:09 AM, Chris Wilson wrote: The EDID modes should be earlier in the list, and so higher priority than the cmdline mode. The only

[Patch v2 0/3] firmware: dmi_scan: add SBMIOS entry point and DMI tables

2015-04-20 Thread Ivan Khoronzhuk
This series adds SMBIOS entry point table and DMI table under /sys/firmware/dmi/tables in order to use as an alternative to utilities reading them from /dev/mem. Based on linux next + 2 patches that have not been sent by Jean Dalvere yet. They can be changed, but, anyway, the series should be

Re: [PATCH 4/7] sched/deadline: reschedule if stop task slip in after pull operations

2015-04-20 Thread Juri Lelli
Hi, On 06/04/2015 09:53, Wanpeng Li wrote: pull_dl_task can drop (and re-acquire) rq-lock, this means a stop task can slip in, in which case we need to reschedule. This patch add the reschedule when the scenario occurs. Ok, I guess it can happen. Doesn't RT have the same problem? It seems

[PATCH 3/7] i2c: pca-platform: fix broken email address

2015-04-20 Thread Wolfram Sang
My Pengutronix address is not valid anymore, redirect people to the Pengutronix kernel team. Reported-by: Harald Geyer har...@ccbib.org Signed-off-by: Wolfram Sang w...@the-dreams.de Acked-by: Robert Schwebel r.schwe...@pengutronix.de --- These patches shall go via the individual subsystem trees.

[PATCH 4/7] input: keyboard: lm8333: fix broken email address

2015-04-20 Thread Wolfram Sang
My Pengutronix address is not valid anymore, redirect people to the Pengutronix kernel team. Reported-by: Harald Geyer har...@ccbib.org Signed-off-by: Wolfram Sang w...@the-dreams.de Acked-by: Robert Schwebel r.schwe...@pengutronix.de --- These patches shall go via the individual subsystem trees.

[PATCH 6/7] watchdog: pnx4008_wdt: fix broken email address

2015-04-20 Thread Wolfram Sang
My Pengutronix address is not valid anymore, redirect people to the Pengutronix kernel team. Reported-by: Harald Geyer har...@ccbib.org Signed-off-by: Wolfram Sang w...@the-dreams.de Acked-by: Robert Schwebel r.schwe...@pengutronix.de --- These patches shall go via the individual subsystem trees.

Re: [PATCH v5 19/27] IB/Verbs: Use management helper cap_iw_cm()

2015-04-20 Thread Steve Wise
On 4/20/2015 3:40 AM, Michael Wang wrote: Introduce helper cap_iw_cm() to help us check if the port of an IB device support IWARP Communication Manager. Cc: Hal Rosenstock h...@dev.mellanox.co.il Cc: Steve Wise sw...@opengridcomputing.com Cc: Tom Talpey t...@talpey.com Cc: Jason Gunthorpe

[PATCH v4 3/4] iio: trigger: Introduce IIO hrtimer based trigger

2015-04-20 Thread Daniel Baluta
This patch registers a new IIO software trigger interrupt source based on high resolution timers. Notice that if configfs is enabled we create sampling_frequency attribute allowing users to change hrtimer period (1/sampling_frequency). The IIO hrtimer trigger has a long history, this patch is

Re: [PATCHSET 0/7] perf tools: Assorted cleanup for TUI (v1)

2015-04-20 Thread Arnaldo Carvalho de Melo
Em Sun, Apr 19, 2015 at 01:04:08PM +0900, Namhyung Kim escreveu: Hello, This patches are to cleanup TUI hists browser code for later work. I moved hist_entry_diff and hist_entry_tui under an union in order to reduce memory footprint of hist entry. Also split out hist browser functions to

[PATCH v4 4/4] iio: Documentation: Add IIO configfs documentation

2015-04-20 Thread Daniel Baluta
Signed-off-by: Daniel Baluta daniel.bal...@intel.com --- Documentation/iio/iio_configfs.txt | 67 ++ 1 file changed, 67 insertions(+) create mode 100644 Documentation/iio/iio_configfs.txt diff --git a/Documentation/iio/iio_configfs.txt

[PATCH v4 1/4] iio: core: Introduce IIO software triggers

2015-04-20 Thread Daniel Baluta
A software trigger associates an IIO device trigger with a software interrupt source (e.g: timer, sysfs). This patch adds the generic infrastructure for handling software triggers. Software interrupts sources are kept in a iio_trigger_types_list and registered separately when the associated

[PATCH v4 0/4] Add initial configfs support for IIO

2015-04-20 Thread Daniel Baluta
This patchset introduces IIO software triggers, offers a way of configuring them via configfs and adds the IIO hrtimer based interrupt source to be used with software triggers. The arhitecture is now split in 3 parts, to remove all IIO trigger specific parts from IIO configfs core: (1) IIO

[PATCH v4 2/4] iio: core: Introduce IIO configfs support

2015-04-20 Thread Daniel Baluta
This creates an IIO configfs subystem named iio, with a default triggers group. Triggers group is used for handling software triggers. To create a new software trigger one must create a directory inside the trigger directory. Software trigger name MUST follow the following convention: *

Re: [PATCH 3.10 31/34] kernel.h: define u8, s8, u32, etc. limits

2015-04-20 Thread Greg Kroah-Hartman
On Mon, Apr 20, 2015 at 12:43:30PM +0300, Konstantin Khlebnikov wrote: On Fri, Apr 17, 2015 at 4:29 PM, Greg Kroah-Hartman gre...@linuxfoundation.org wrote: 3.10-stable review patch. If anyone has any objections, please let me know. -- From: Alex Elder

Re: [PATCH 1/2] sched: lockless wake-queues

2015-04-20 Thread Peter Zijlstra
On Sun, Apr 19, 2015 at 12:17:39PM -0700, Davidlohr Bueso wrote: +void wake_q_add(struct wake_q_head *head, struct task_struct *task) +{ + struct wake_q_node *node = task-wake_q; + + /* + * Atomically grab the task, if -wake_q is !nil already it means + * its already

Re: [PATCH v6 2/3] sched/rt: Fix wrong SMP scheduler behavior for equal prio cases

2015-04-20 Thread Steven Rostedt
On Mon, 20 Apr 2015 16:22:47 +0800 Xunlei Pang xlp...@126.com wrote: static inline void enqueue_pushable_task(struct rq *rq, struct task_struct *p) { } @@ -1506,8 +1526,21 @@ static void put_prev_task_rt(struct rq *rq, struct task_struct *p) * The previous task needs to be made

[PATCH RESEND] Documentation: DT bindings: add doc for Altera's SoCFPGA platform

2015-04-20 Thread dinguyen
From: Dinh Nguyen dingu...@opensource.altera.com Document altr,socfpga-cyclone5, altr,socfpga-arria5, and altr,socfpga-arria10. Signed-off-by: Dinh Nguyen dingu...@opensource.altera.com --- Documentation/devicetree/bindings/arm/altera.txt | 14 ++ 1 file changed, 14 insertions(+)

Re: [PATCH 3.10 31/34] kernel.h: define u8, s8, u32, etc. limits

2015-04-20 Thread Alex Elder
On 04/20/2015 09:35 AM, Greg Kroah-Hartman wrote: On Mon, Apr 20, 2015 at 12:43:30PM +0300, Konstantin Khlebnikov wrote: On Fri, Apr 17, 2015 at 4:29 PM, Greg Kroah-Hartman gre...@linuxfoundation.org wrote: 3.10-stable review patch. If anyone has any objections, please let me know.

Re: Fwd: Re: [PATCH 2/2] ARM: mvebu: dts: Add dts file for DLink DNS-327L

2015-04-20 Thread Andrew
Gregory CLEMENT писал 20.04.2015 18:04: Hi Andrew, On 13/04/2015 16:32, Andrew wrote: Gregory CLEMENT писал 13.04.2015 17:16: Hi Andrew(s), On 12/04/2015 21:47, Andrew Lunn wrote: On Sun, Apr 12, 2015 at 06:41:31PM +0300, Andrew wrote: Andrew Lunn ?? 12.04.2015 17:58: Okay, got

[PATCH 7/7] watchdog: stmp3xxx_rtc_wdt: fix broken email address

2015-04-20 Thread Wolfram Sang
My Pengutronix address is not valid anymore, redirect people to the Pengutronix kernel team. Reported-by: Harald Geyer har...@ccbib.org Signed-off-by: Wolfram Sang w...@the-dreams.de Acked-by: Robert Schwebel r.schwe...@pengutronix.de --- These patches shall go via the individual subsystem trees.

Re: Linux 3.10.75

2015-04-20 Thread Greg KH
diff --git a/Makefile b/Makefile index d2a3930159ea..87909d8302ad 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ VERSION = 3 PATCHLEVEL = 10 -SUBLEVEL = 74 +SUBLEVEL = 75 EXTRAVERSION = NAME = TOSSUG Baby Fish diff --git a/drivers/acpi/processor_idle.c b/drivers/acpi/processor_idle.c

Re: [alsa-devel] [PATCH v2] ASoC: Add support for NAU8825 codec to ASoC

2015-04-20 Thread Lars-Peter Clausen
On 04/16/2015 11:56 AM, Chih-Chiang Chang wrote: The NAU88L25 is an ultra-low power high performance audio codec designed for smartphone, tablet PC, and other portable devices by Nuvoton, now add linux driver support for it. Signed-off-by: Chih-Chiang Chang ccchan...@nuvoton.com Looks pretty

Linux 3.10.75

2015-04-20 Thread Greg KH
I'm announcing the release of the 3.10.75 kernel. All users of the 3.10 kernel series must upgrade. The updated 3.10.y git tree can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-3.10.y and can be browsed at the normal kernel.org git web

Re: [PATCH 13/49] writeback: move bandwidth related fields from backing_dev_info into bdi_writeback

2015-04-20 Thread Jan Kara
On Mon 06-04-15 15:58:02, Tejun Heo wrote: Currently, a bdi (backing_dev_info) embeds single wb (bdi_writeback) and the role of the separation is unclear. For cgroup support for writeback IOs, a bdi will be updated to host multiple wb's where each wb serves writeback IOs of a different cgroup

Re: [PATCH v5 19/27] IB/Verbs: Use management helper cap_iw_cm()

2015-04-20 Thread Michael Wang
On 04/20/2015 04:00 PM, Steve Wise wrote: On 4/20/2015 3:40 AM, Michael Wang wrote: [snip] diff --git a/include/rdma/ib_verbs.h b/include/rdma/ib_verbs.h index 6805e3e..e4999f6 100644 --- a/include/rdma/ib_verbs.h +++ b/include/rdma/ib_verbs.h @@ -1818,6 +1818,21 @@ static inline int

Re: [PATCH] clk: ux500: ape[ate|trace]clk are scaleable

2015-04-20 Thread Ulf Hansson
On 20 April 2015 at 15:06, Linus Walleij linus.wall...@linaro.org wrote: The APEATCLK and APETRACECLK are actually scaleable so register them as scaleable clocks. Cc: Ulf Hansson ulf.hans...@linaro.org Signed-off-by: Linus Walleij linus.wall...@linaro.org Acked-by: Ulf Hansson

Re: [PATCH 1/2] cpufreq: mediatek: Add MT8173 cpufreq driver

2015-04-20 Thread Josh Cartwright
On Mon, Apr 20, 2015 at 05:27:26PM +0800, pi-cheng.chen wrote: This patch implements MT8173 specific cpufreq driver with OPP table defined in the driver code. Signed-off-by: pi-cheng.chen pi-cheng.c...@linaro.org --- drivers/cpufreq/Kconfig.arm | 6 + drivers/cpufreq/Makefile

Re: [PATCH 5/5] Drivers: hv: vmbus: Implement the protocol for tearing down vmbus state

2015-04-20 Thread Vitaly Kuznetsov
KY Srinivasan k...@microsoft.com writes: -Original Message- From: Vitaly Kuznetsov [mailto:vkuzn...@redhat.com] Sent: Monday, April 20, 2015 2:40 AM To: KY Srinivasan Cc: gre...@linuxfoundation.org; linux-kernel@vger.kernel.org; de...@linuxdriverproject.org; o...@aepfle.de;

RE: [PATCH 5/5] Drivers: hv: vmbus: Implement the protocol for tearing down vmbus state

2015-04-20 Thread KY Srinivasan
-Original Message- From: Vitaly Kuznetsov [mailto:vkuzn...@redhat.com] Sent: Monday, April 20, 2015 7:17 AM To: KY Srinivasan Cc: gre...@linuxfoundation.org; linux-kernel@vger.kernel.org; de...@linuxdriverproject.org; o...@aepfle.de; a...@canonical.com; jasow...@redhat.com

Re: [RFC PATCH] fs: use a sequence counter instead of file_lock in fd_install

2015-04-20 Thread Mateusz Guzik
On Mon, Apr 20, 2015 at 03:43:26PM +0200, Mateusz Guzik wrote: On Mon, Apr 20, 2015 at 03:06:33PM +0200, Mateusz Guzik wrote: On Sat, Apr 18, 2015 at 12:02:52AM +0100, Al Viro wrote: On Sat, Apr 18, 2015 at 12:16:48AM +0200, Mateusz Guzik wrote: I would say this makes the use of seq

Re: Fwd: Re: [PATCH 2/2] ARM: mvebu: dts: Add dts file for DLink DNS-327L

2015-04-20 Thread Gregory CLEMENT
On 20/04/2015 17:15, Andrew wrote: Gregory CLEMENT писал 20.04.2015 18:04: Hi Andrew, On 13/04/2015 16:32, Andrew wrote: Gregory CLEMENT писал 13.04.2015 17:16: Hi Andrew(s), On 12/04/2015 21:47, Andrew Lunn wrote: On Sun, Apr 12, 2015 at 06:41:31PM +0300, Andrew wrote: Andrew Lunn

[PATCH 1/7] ARM: mach-imx: devices: platform-sdhci-esdhc-imx: fix broken email address

2015-04-20 Thread Wolfram Sang
My Pengutronix address is not valid anymore, redirect people to the Pengutronix kernel team. Reported-by: Harald Geyer har...@ccbib.org Signed-off-by: Wolfram Sang w...@the-dreams.de Acked-by: Robert Schwebel r.schwe...@pengutronix.de --- These patches shall go via the individual subsystem trees.

Re: [RFC][PATCH v2 06/13] usb: hcd: Add hcd add/remove functions for OTG use

2015-04-20 Thread Alan Stern
On Mon, 20 Apr 2015, Roger Quadros wrote: I don't understand this. Why do you want to defer the add/remove if the device is OTG? Don't host controller drivers expect these things to execute synchronously? Sorry for the wrong information. We actually defer only the add as the OTG

Re: [PATCH] usb: ehci-msm: Don't ioremap configuration space exclusively

2015-04-20 Thread Alan Stern
On Mon, 20 Apr 2015, Ivan T. Ivanov wrote: Hi Alan, Perhaps I have to resend this patch with updated commit message? Are they any other obstacles? Instead of submitting this new patch, would it be okay to revert commit 70843f623b58? That would be simpler. Also, I'd like to get an

Re: [PATCHSET] printk, netconsole: implement reliable netconsole

2015-04-20 Thread Tejun Heo
Hello, Rob. On Sun, Apr 19, 2015 at 02:25:09AM -0500, Rob Landley wrote: If you have two machines plugged into a hub, and that's _all_ that's plugged in, packets should never get dropped. This was the original use case of netconsole was that the sender and the receiver were plugged into the

Re: [tpmdd-devel] [RFC PATCH 1/2] tee: generic TEE subsystem

2015-04-20 Thread Greg Kroah-Hartman
On Sun, Apr 19, 2015 at 11:08:00PM -0600, Jason Gunthorpe wrote: I still suspect the expected way to write a new mid layer is to create your own struct device and not rely on misc_device, Yes, that is the way. You can not use misc_device for anything other than creating the char node that your

Re: [PATCH 2/2] futex: lockless wakeups

2015-04-20 Thread Davidlohr Bueso
On Mon, 2015-04-20 at 08:18 +0200, Ingo Molnar wrote: Please write a small description we can cite to driver authors once the (inevitable) breakages appear, outlining this new behavior and its implications, so that we can fix any remaining bugs ASAP. I wouldn't call this new behavior, simply

Re: [PATCH 5/7] tools lib traceevent: Add alias field to struct format_field

2015-04-20 Thread Steven Rostedt
On Sat, Apr 18, 2015 at 05:50:18PM +0200, Jiri Olsa wrote: Introduce an 'alias' field to 'struct format_field' to be able to use alternative name for the field. It is initialized with same string pointer as 'name' field. The free logic checks the 'alias' pointer being reset by user and

Re: [PATCH v4 00/24] ILP32 for ARM64

2015-04-20 Thread Zhangjian (Bamvor)
On 2015/4/17 21:17, Arnd Bergmann wrote: On Friday 17 April 2015 10:01:56 Catalin Marinas wrote: On Thu, Apr 16, 2015 at 05:21:30PM +0200, Arnd Bergmann wrote: On Thursday 16 April 2015 14:31:34 Catalin Marinas wrote: On Thu, Apr 16, 2015 at 11:33:49AM +, Pinski, Andrew wrote: There

Re: [PATCH v6 1/3] lib/plist: Provide plist_add_head() for nodes with the same prio

2015-04-20 Thread Steven Rostedt
On Mon, 20 Apr 2015 16:22:46 +0800 Xunlei Pang xlp...@126.com wrote: From: Xunlei Pang pang.xun...@linaro.org If there're multiple nodes with the same prio as @node, currently plist_add() will add @node behind all of them. Now we need to add @node before all of these nodes for SMP RT

Re: [PATCH v6 1/3] lib/plist: Provide plist_add_head() for nodes with the same prio

2015-04-20 Thread Steven Rostedt
On Mon, 20 Apr 2015 16:22:46 +0800 Xunlei Pang xlp...@126.com wrote: +/** + * plist_add_tail - add @node to @head, after all existing same-prio nodes + * + * @node:The plist_node to be added to @head + * @head:The plist_head that @node is being added to + */ +static inline +void

[PATCH v2 0/5] KVM events analysis on powerpc with perf

2015-04-20 Thread Hemant Kumar
Hello! This patchset enables perf kvm stat record/report on powerpc, which can be used to analyze certain KVM events : KVM exits and hypervisor calls. The statistics can be shown individually for each running VM in the host and hence, can be useful in giving an idea of the performance of a VM on a

[PATCH v2 2/5] kvm/powerpc: Add exit reason for return code 0x0

2015-04-20 Thread Hemant Kumar
This patch adds an exit reason RETURN_TO_HOST for the return code 0x0. Signed-off-by: Hemant Kumar hem...@linux.vnet.ibm.com --- arch/powerpc/include/uapi/asm/trace_book3s.h | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/powerpc/include/uapi/asm/trace_book3s.h

Re: Fwd: Re: [PATCH 2/2] ARM: mvebu: dts: Add dts file for DLink DNS-327L

2015-04-20 Thread Gregory CLEMENT
Hi Andrew, On 13/04/2015 16:32, Andrew wrote: Gregory CLEMENT писал 13.04.2015 17:16: Hi Andrew(s), On 12/04/2015 21:47, Andrew Lunn wrote: On Sun, Apr 12, 2015 at 06:41:31PM +0300, Andrew wrote: Andrew Lunn ?? 12.04.2015 17:58: Okay, got it. I'll file a bug about this issue to

[PATCH v2 4/5] kvm/powerpc: Move HCALL reason codes to uapi

2015-04-20 Thread Hemant Kumar
For tools like perf to analyze the KVM events like hcalls, we need the hypervisor calls and their codes to be exported through uapi. This patch moves most of the pSeries hcall codes from arch/powerpc/include/asm/hvcall.h to arch/powerpc/include/uapi/asm/hcall_codes.h. It also moves the mapping

[PATCH v2 5/5] perf/kvm: HCALL events analysis

2015-04-20 Thread Hemant Kumar
This patch adds KVM hypervisor call analysis to perf for powerpc. - Trace hcall events : perf kvm stat record - Show the results : perf kvm stat report --event=hcall The results show the number of hypervisor calls from the guest grouped into their respective reasons displayed with the

[PATCH v5] slab: Correct size_index table before replacing the bootstrap kmem_cache_node.

2015-04-20 Thread Daniel Sanders
This patch moves the initialization of the size_index table slightly earlier so that the first few kmem_cache_node's can be safely allocated when KMALLOC_MIN_SIZE is large. There are currently two ways to generate indices into kmalloc_caches (via kmalloc_index() and via the size_index table in

[PATCH v2 3/5] perf/kvm: KVM exit events analysis

2015-04-20 Thread Hemant Kumar
From: Srikar Dronamraju sri...@linux.vnet.ibm.com This patch adds KVM exit event analysis support to perf for powerpc. - Trace KVM events : perf kvm stat record If many guests are running, we can track for a specific guest by using --pid as in : perf kvm stat record --pid pid - Show the

Re: [PATCH 1/3] regulator: max8973: get rid of extra variable for gpio validity

2015-04-20 Thread Mark Brown
On Mon, Apr 20, 2015 at 06:24:15PM +0530, Laxman Dewangan wrote: To find that dvs-gpio is valid or not, gpio API gpio_is_valid() can be directly used instead of intermediate variable. Removing the extra variable and using the gpio_is_valid(). This still looks like it's got the same issue with

[PATCH] spi: rb4xx: Fix set_cs logic.

2015-04-20 Thread Bert Vermeulen
As it turns out, the set_cs() enable parameter refers to the logic level on the CS pin, not the state of chip selection. This broke functionality of the LEDs behind the CPLD, or at least delayed the commands until another one came in to toggle CS. Signed-off-by: Bert Vermeulen b...@biot.com ---

Re: [PATCH 6/7] perf hists browser: Split popup menu actions

2015-04-20 Thread Arnaldo Carvalho de Melo
Em Sun, Apr 19, 2015 at 01:04:14PM +0900, Namhyung Kim escreveu: Currently perf_evsel__hists_browse() function spins on a huge loop and handles many key actions. Since it's hard to read and modify, let's split it out into small helper functions. The add_XXX_opt() functions are to register

[PATCH] frv: Remove unused inline function is_in_rom()

2015-04-20 Thread Tobias Klauser
The function is not used anywhere in the tree (anymore) and this is the last remaining instance, so remove it. Signed-off-by: Tobias Klauser tklau...@distanz.ch --- arch/frv/include/asm/sections.h | 6 -- 1 file changed, 6 deletions(-) diff --git a/arch/frv/include/asm/sections.h

<    7   8   9   10   11   12   13   14   15   >