[PATCH v2] arm64: dts: add all hi6220 i2c nodes

2015-11-25 Thread Xinwei Kong
This patch adds all I2C nodes for the Hi6220 SoC. This hi6220 Soc use this I2C IP of Synopsys Designware for HiKey board. Signed-off-by: Xinwei Kong --- arch/arm64/boot/dts/hisilicon/hi6220.dtsi | 37 +++ 1 file changed, 37 insertions(+) diff --git

Re: [GIT PULL 0/7] perf/core improvements and fixes

2015-11-25 Thread Ingo Molnar
* Jiri Olsa wrote: > I can't make that failure on 88 cpus server, I assume you can > reproduce this fairly easily? Yeah, when it triggers it reproduces fairly easily - but it seems to be dependent on build timings. I don't use a large server for this test, just a single socket system with

Re: block-rbd: One function call less in rbd_dev_probe_parent() after error detection

2015-11-25 Thread SF Markus Elfring
>> I interpreted the eventual passing of a null pointer to the rbd_dev_destroy() >> function as an indication for further source code adjustments. > > If all error paths could be adjusted so that NULL pointers are never passed > in, > destroy functions wouldn't need to have a NULL check, would

[PATCH v5 04/11] drm/dsi: Add a helper to get bits per pixel of MIPI DSI pixel format

2015-11-25 Thread Chris Zhong
From: Liu Ying Signed-off-by: Liu Ying Acked-by: Thierry Reding Signed-off-by: Chris Zhong --- Changes in v5: None Changes in v4: None Changes in v3: None Changes in v2: None include/drm/drm_mipi_dsi.h | 14 ++ 1 file changed, 14 insertions(+) diff --git

[PATCH v5 08/11] drm: rockchip: Support Synopsys DesignWare MIPI DSI host controller

2015-11-25 Thread Chris Zhong
Add support for Synopsys DesignWare MIPI DSI host controller which is embedded in the rk3288 SoCs. Signed-off-by: Chris Zhong --- Changes in v5: None Changes in v4: None Changes in v3: None Changes in v2: None drivers/gpu/drm/rockchip/Kconfig| 10 +

[PATCH v5 03/11] drm/rockchip: return a true clock rate to adjusted_mode

2015-11-25 Thread Chris Zhong
Since the mipi dsi driver need to use the clock of vop to make the calculation of Blanking. But sometimes the clock driver can not set a accurate clock_rate for vop, get it by clk_round_rate before mode_set, so we can get the true value. Signed-off-by: Chris Zhong Acked-by: Mark Yao ---

[PATCH v5 06/11] Documentation: dt-bindings: Add bindings for DW MIPI DSI

2015-11-25 Thread Chris Zhong
From: Liu Ying This patch adds device tree bindings for Synopsys DesignWare MIPI DSI host controller DRM bridge driver. Signed-off-by: Liu Ying Signed-off-by: Chris Zhong Acked-by: Rob Herring --- Changes in v5: None Changes in v4: - remove the cfg clk - remove gpr property from example,

[PATCH v5 10/11] ARM: dts: rockchip: add rk3288 mipi_dsi nodes

2015-11-25 Thread Chris Zhong
Add a mipi_dsi node, and also add mipi_dsi endpoints to vopb and vopl output port nodes. Signed-off-by: Chris Zhong --- Changes in v5: - modify the clk name to SCLK_MIPIDSI_24M Changes in v4: None Changes in v3: None Changes in v2: None arch/arm/boot/dts/rk3288.dtsi | 39

Re: [PATCH v2 1/4] init: create cmdline param to disable readonly

2015-11-25 Thread Ingo Molnar
* Kees Cook wrote: > It may be useful to debug writes to the readonly sections of memory, > so provide a cmdline "rodata=off" to allow for this. > > Suggested-by: H. Peter Anvin > Signed-off-by: Kees Cook > --- > Documentation/kernel-parameters.txt | 4 > init/main.c

[PATCH v5 09/11] Documentation: dt-bindings: Add bindings for rk3288 DW MIPI DSI driver

2015-11-25 Thread Chris Zhong
add device tree bindings for rk3288 specific Synopsys DW MIPI DSI driver Signed-off-by: Chris Zhong Acked-by: Rob Herring --- Changes in v5: None Changes in v4: None Changes in v3: - move dw_mipi_dsi_rockchip.txt to bindings/display/rockchip/ Changes in v2: None

[PATCH v5 02/11] clk: rockchip: add mipidsi clocks on rk3288

2015-11-25 Thread Chris Zhong
sclk_mipidsi_24m is the gating of mipi dsi phy. Signed-off-by: Chris Zhong Acked-by: Stephen Boyd --- Changes in v5: - modify the mipidsi clk name to SCLK_MIPIDSI_24M Changes in v4: None Changes in v3: None Changes in v2: None drivers/clk/rockchip/clk-rk3288.c | 2 +- 1 file changed, 1

[PATCH v5 01/11] clk: rockchip: add id for mipidsi sclk on rk3288

2015-11-25 Thread Chris Zhong
Adds a new id for the sclk supplying the mipidsi on rk3288 socs. Signed-off-by: Chris Zhong --- Changes in v5: - change the mipidsi clk to SCLK_MIPIDSI_24M Changes in v4: None Changes in v3: None Changes in v2: - add the mipi clk id in a single patch include/dt-bindings/clock/rk3288-cru.h |

[PATCH v5 05/11] drm: bridge: allow some funcs to be optional

2015-11-25 Thread Chris Zhong
Check the validity of post_disable/pre_enable in bridge->funcs before call them. Signed-off-by: Chris Zhong --- Changes in v5: None Changes in v4: None Changes in v3: None Changes in v2: None drivers/gpu/drm/drm_bridge.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git

[PATCH v5 11/11] ARM: dts: rockchip: add support mipi panel tv080wum-nl0 for rk3288-evb

2015-11-25 Thread Chris Zhong
This tv080wum-nl0 panel is a mipi panel, it can use in MIPI_TX socket of rk3288 evb board. Signed-off-by: Chris Zhong --- Changes in v5: - add a blank line befor lcd_en Changes in v4: None Changes in v3: None Changes in v2: None arch/arm/boot/dts/rk3288-evb.dtsi | 20 +++- 1

[PATCH v5 07/11] drm/bridge: Add Synopsys DesignWare MIPI DSI host controller driver

2015-11-25 Thread Chris Zhong
add Synopsys DesignWare MIPI DSI host controller driver support. Signed-off-by: Chris Zhong Signed-off-by: Liu Ying --- Changes in v5: Adviced by Thierry - use hyphens instead of underscore - use encoder in drm_bridge - reformatting the dptdin table - use readx_poll_timeout to check register -

[PATCH v5 0/11] Add mipi dsi support for rk3288

2015-11-25 Thread Chris Zhong
The rk3288 MIPI DSI is a Synopsys DesignWare MIPI DSI host controller IP. This series adds support for a Synopsys DesignWare MIPI DSI host controller DRM bridge driver and a rockchip MIPI DSI specific DRM driver. This series also includes a DRM panel driver for BOE TV080WUM-NL0 panel. This panel

Re: [PATCH v2] USB: serial: cp210x: Add tx_empty()

2015-11-25 Thread Johan Hovold
On Thu, Nov 26, 2015 at 08:35:12AM +0100, Johan Hovold wrote: > On Wed, Nov 25, 2015 at 10:26:12PM +0200, Andy Shevchenko wrote: > > On Wed, Nov 25, 2015 at 12:28 AM, Konstantin Shkolnyy > > wrote: > > > Added tx_empty callback needed for generic wait-until-sent support. > > > Without this

[PATCH] block: Always check queue limits for cloned requests

2015-11-25 Thread Hannes Reinecke
When a cloned request is retried on other queues it always needs to be checked against the queue limits of that queue. Otherwise the calculations for nr_phys_segments might be wrong, leading to a crash in scsi_init_sgtable(). To clarify this the patch renames blk_rq_check_limits() to

Re: [PATCH V3 net-next 1/5] net:hns: Add support of Hip06 SoC to the Hislicon Network Subsystem

2015-11-25 Thread Salil Mehta
On 11/22/2015 9:19 AM, Yuval Mintz wrote: +void hns_rcbv2_int_ctrl_hw(struct hnae_queue *q, u32 flag, u32 mask) +{ + u32 int_mask_en = !!mask; + + if (flag & RCB_INT_FLAG_TX) + dsaf_write_dev(q, RCB_RING_INTMSK_TXWL_REG, int_mask_en); + + if (flag &

Re: [PATCH] pwm: berlin: Add PM support

2015-11-25 Thread Jisheng Zhang
On Wed, 25 Nov 2015 16:16:27 +0100 Thierry Reding wrote: > On Wed, Nov 25, 2015 at 04:30:19PM +0800, Jisheng Zhang wrote: > > On Tue, 24 Nov 2015 17:23:06 +0100 Thierry Reding wrote: > > > On Tue, Nov 24, 2015 at 01:43:05PM +0800, Jisheng Zhang wrote: > > > > This patch adds S2R support for

Re: [PATCH 2/3] perf callchain: Stop resolving callchains after invalid address

2015-11-25 Thread Ingo Molnar
* Namhyung Kim wrote: > Unwinding optimized binaries using frame pointer gives garbage. Check > callchain address and stop if it's under vm.mmap_min_addr sysctl value. > > Before: > $ perf report --stdio --no-children -g callee > ... > >1.37% perf[kernel.vmlinux][k]

Re: [PATCH v2 3/3] zram: pass gfp from zcomp frontend to backend

2015-11-25 Thread Sergey Senozhatsky
[sorry, ended up screwing up Message-Id in In-Reply-To! resending] -- Minchan Kim wrote: [..] > > Aha, I see. I don't mind to send it to -stable (with __GFP_HIGHMEM fix > > up). Hello Minchan, Sorry for not replying sooner. >

Re: [PATCH 1/2] perf: Refactor vmlinux_path_init

2015-11-25 Thread Jiri Olsa
On Wed, Nov 25, 2015 at 05:32:45PM +0100, Ekaterina Tumanova wrote: > Refactor vmlinux_path_init function to ease subsequent additions of > new vmlinux locations. > > Signed-off-by: Ekaterina Tumanova > Acked-by: Alexander Yarygin Acked-by: Jiri Olsa thanks, jirka -- To unsubscribe from this

Re: [PATCH v2] USB: serial: cp210x: Add tx_empty()

2015-11-25 Thread Johan Hovold
On Wed, Nov 25, 2015 at 10:26:12PM +0200, Andy Shevchenko wrote: > On Wed, Nov 25, 2015 at 12:28 AM, Konstantin Shkolnyy > wrote: > > Added tx_empty callback needed for generic wait-until-sent support. > > Without this function, when the port is closed usbserial can't know that > > there are

Re: [PATCH 2/2] perf: add the path to vmlinux.debug

2015-11-25 Thread Jiri Olsa
On Wed, Nov 25, 2015 at 05:32:46PM +0100, Ekaterina Tumanova wrote: > Currently when debuginfo is separated to vmlinux.debug, it's contents > get ignored. Let's change that and add it to the vmlinux_path list. > > Signed-off-by: Ekaterina Tumanova > Acked-by: Alexander Yarygin Acked-by: Jiri

Re: [PATCH v3 2/5] arcmsr: fixes not release allocated resource

2015-11-25 Thread Ching Huang
On Wed, 2015-11-25 at 14:55 +0100, Tomas Henzl wrote: > On 25.11.2015 12:41, Ching Huang wrote: > > From: Ching Huang > > > > Releasing allocated resource if get configuration data failed. > > > > Signed-of-by: Ching Huang > > > > --- > > > > diff -uprN a/drivers/scsi/arcmsr/arcmsr_hba.c > >

Re: [PATCH V3 net-next 2/5] net:hns: Add Hip06 "RSS(Receive Side Scaling)" support to HNS Driver

2015-11-25 Thread Salil Mehta
On 11/22/2015 9:30 AM, Yuval Mintz wrote: static void hns_ppe_init_hw(struct hns_ppe_cb *ppe_cb) { ... + /* Set default RSS key and indrection table*/ + const u32 rss_key[HNS_PPEV2_RSS_KEY_NUM] = { + 0x6d5a56da, 0x255b0ec2, + 0x4167253d, 0x43a38fb0,

[PATCH 1/1] AHCI: Fix softreset failed issue of Port Multiplier

2015-11-25 Thread Xiangliang Yu
Current code doesn't update port value of Port Multiplier(PM) when sending FIS of softreset to device, command will fail if FBS is enabled. There are two ways to fix the issue: the first is to disable FBS before sending softreset command to PM device and the second is to update port value of PM

Re: [PATCH v2 3/3] zram: pass gfp from zcomp frontend to backend

2015-11-25 Thread Sergey Senozhatsky
Minchan Kim wrote: [..] > > Aha, I see. I don't mind to send it to -stable (with __GFP_HIGHMEM fix > > up). Hello Minchan, Sorry for not replying sooner. > Sure. > Can I add your acked-by for [2/3] and [3/3]? > > And I will keep order and add stable mark in [2/3]. yes. a) + __GFP_HIGHMEM

[PATCH V5 net-next 1/5] net:hns: Add support of Hip06 SoC to the Hislicon Network Subsystem

2015-11-25 Thread Salil Mehta
This patchset adds support of Hisilicon Hip06 SoC to the existing HNS ethernet driver. The changes in the driver are mainly due to changes in the DMA descriptor provided by the Hip06 ethernet hardware. These changes need to co-exist with already present Hip05 DMA descriptor and its operating

[PATCH V5 net-next 3/5] net:hns: Add Hip06 "TSO(TCP Segment Offload)" support HNS Driver

2015-11-25 Thread Salil Mehta
This patch adds the support of "TSO (TCP Segment Offload)" feature provided by the Hip06 ethernet hardware to the HNS ethernet driver. Enabling this feature would help offload the TCP Segmentation process to the Hip06 ethernet hardware. This eventually would help in saving precious cpu cycles.

Re: [PATCH] ASoC: rsnd: fix a possible NULL dereference

2015-11-25 Thread LABBE Corentin
On Wed, Nov 25, 2015 at 11:46:45PM +, Kuninori Morimoto wrote: > > Hi LABBE > > Thank you for your patch > > > of_match_device could return NULL, and so cause a NULL pointer > > dereference later. > > Even if the probability of this case is very low, fixing it made > > static analyzers

[PATCH V5 net-next 2/5] net:hns: Add Hip06 "RSS(Receive Side Scaling)" support to HNS Driver

2015-11-25 Thread Salil Mehta
This patch adds the support of "RSS (Receive Side Scaling)" feature provided by the Hip06 ethernet hardware to the HNS ethernet driver. This feature helps in distributing the different flows (mapped as hash by hardware using Toeplitz Hash) to different Queues asssociated with the processor cores.

[PATCH V5 net-next 5/5] net:hns: Add the init code to disable Hip06 "Hardware VLAN assist"

2015-11-25 Thread Salil Mehta
This patch adds the initializzation code to disable the hardware vlan support for VLAN Tag stripping by default for now. Proper support of "hardware VLAN assitance" feature would soon come in the next coming patches. Signed-off-by: Salil Mehta --- PATCH V5: - Minor merge/reject change resolved

[PATCH V5 net-next 4/5] net:hns: Add support of ethtool TSO set option for Hip06 in HNS

2015-11-25 Thread Salil Mehta
From: Salil This patch adds the support of ethtool TSO option to support Hip06 SoC to HNS Signed-off-by: Salil Mehta Signed-off-by: lisheng --- PATCH V5: - No change over the previous patch PATCH V4: This fixes the comments given by Sergei Shtylyov over the PATCH V3: Link:

[PATCH V5 net-next 0/5] net:hns: Add support of Hip06 SoC to the Hislicon Network Subsystem

2015-11-25 Thread Salil Mehta
This PATCH V5 address the review comments by Yuval Mintz . This rework of comments are basically related to: 1) styling of the code, 2) RSS default Key initiailization related code 3) redundant code removal PATCH V4: This addresses the review comment provided by Sergei Shtylyov. The

RE: [PATCH 4/5] mtd: spi-nor: fsl-quadspi: add support for layerscape

2015-11-25 Thread Yao Yuan
Hi Allen, Yes, I will. In fact, I have already send the patch. This patch will add the new compatible entries in qspi driver for the ls1021a platform. Thanks for your review. Best Regards, Yuan Yao -Original Message- From: Han Xu [mailto:han...@freescale.com] Sent: Wednesday,

Re: [PATCH v5 00/10] xen-block: multi hardware-queues/rings support

2015-11-25 Thread Bob Liu
On 11/26/2015 10:57 AM, Konrad Rzeszutek Wilk wrote: > On Thu, Nov 26, 2015 at 10:28:10AM +0800, Bob Liu wrote: >> >> On 11/26/2015 06:12 AM, Konrad Rzeszutek Wilk wrote: >>> On Wed, Nov 25, 2015 at 03:56:03PM -0500, Konrad Rzeszutek Wilk wrote: On Wed, Nov 25, 2015 at 02:25:07PM -0500,

Re: [PATCH 3/3] staging: lustre: Less function calls in class_register_type() after error detection

2015-11-25 Thread SF Markus Elfring
Am 25.11.2015 um 17:39 schrieb Greg Kroah-Hartman: > On Thu, Nov 05, 2015 at 01:20:33PM +0100, SF Markus Elfring wrote: >> From: Markus Elfring >> Date: Thu, 5 Nov 2015 12:48:58 +0100 >> >> The functions "kfree" and "kobject_put" were called in a few cases by the >> function "class_register_type"

[PATCH 2/3] perf callchain: Stop resolving callchains after invalid address

2015-11-25 Thread Namhyung Kim
Unwinding optimized binaries using frame pointer gives garbage. Check callchain address and stop if it's under vm.mmap_min_addr sysctl value. Before: $ perf report --stdio --no-children -g callee ... 1.37% perf[kernel.vmlinux][k] smp_call_function_single |

Re: [PATCH v3 0/4] Allow customizable random offset to mmap_base address.

2015-11-25 Thread Michael Ellerman
On Tue, 2015-11-24 at 16:39 -0800, Andrew Morton wrote: > On Wed, 18 Nov 2015 15:20:04 -0800 Daniel Cashman > wrote: > > Address Space Layout Randomization (ASLR) provides a barrier to > > exploitation of user-space processes in the presence of security > > vulnerabilities by making it more

[PATCH 1/3] perf top: Fix freeze on --call-graph flat/folded

2015-11-25 Thread Namhyung Kim
The callchain rbtree is rebuilt periodically, so it needs to reinitialize the root everytime. Otherwise it can be stuck in the rbtree insertion with stale pointers. Signed-off-by: Namhyung Kim --- tools/perf/util/callchain.c | 1 + 1 file changed, 1 insertion(+) diff --git

[PATCH 3/3] perf callchain: Honor hide_unresolved

2015-11-25 Thread Namhyung Kim
If user requested to hide unresolved entries, skip unresolved callchains as well as hist entries. Signed-off-by: Namhyung Kim --- tools/perf/builtin-report.c | 7 +++ tools/perf/util/machine.c | 5 + tools/perf/util/symbol.h| 3 ++- 3 files changed, 10 insertions(+), 5

Re: + arc-convert-to-dma_map_ops.patch added to -mm tree

2015-11-25 Thread Michael Ellerman
On Tue, 2015-11-24 at 17:09 +0530, Vineet Gupta wrote: > Hi Michael, > On Tuesday 24 November 2015 04:31 PM, Michael Ellerman wrote: > > On Tue, 2015-11-24 at 09:46 +, Vineet Gupta wrote: > > > > On Tuesday 24 November 2015 01:20 PM, h...@lst.de wrote: > > > > > > Hi Vineet, > > > > > > > > >

Re: [PATCH v4 06/13] drm/bridge: Add Synopsys DesignWare MIPI DSI host controller driver

2015-11-25 Thread Chris Zhong
Hi Thierry Thanks for your feedback. On 11/21/2015 12:07 AM, Thierry Reding wrote: On Fri, Nov 20, 2015 at 04:15:32PM +0800, Chris Zhong wrote: add Synopsys DesignWare MIPI DSI host controller driver support. Signed-off-by: Chris Zhong --- Changes in v4: eliminate some warnning Changes

[PATCH v2 2/9] Documentation: dt-bindings: leds: backlight: add TI LMU backlight binding information

2015-11-25 Thread Milo Kim
LM3532, LM3631, LM3632, LM3633, LM3695 and LM3697 use common dt-bindings for describing backlight device. Cc: Rob Herring Cc: devicet...@vger.kernel.org Cc: Lee Jones Cc: Jacek Anaszewski Cc: Mark Brown Cc: linux-l...@vger.kernel.org Cc: linux-kernel@vger.kernel.org Signed-off-by: Milo Kim

RE: [PATCH] mtd: spi-nor: fsl-quadspi: add support for ls1021a

2015-11-25 Thread Yao Yuan
Ok. Thanks. -Original Message- From: Han Xu [mailto:han...@freescale.com] Sent: Wednesday, November 25, 2015 2:15 PM To: Yuan Yao-B46683 Cc: dw...@infradead.org; computersforpe...@gmail.com; linux-kernel@vger.kernel.org; linux-...@lists.infradead.org Subject: Re: [PATCH] mtd: spi-nor:

[PATCH v2 1/9] Documentation: dt-bindings: mfd: add TI LMU device binding information

2015-11-25 Thread Milo Kim
This patch describes overall binding for TI LMU MFD devices. Cc: Rob Herring Cc: devicet...@vger.kernel.org Cc: Lee Jones Cc: Jacek Anaszewski Cc: Mark Brown Cc: linux-l...@vger.kernel.org Cc: linux-kernel@vger.kernel.org Signed-off-by: Milo Kim ---

[PATCH v2 7/9] backlight: add TI LMU backlight driver

2015-11-25 Thread Milo Kim
This is consolidated driver which supports backlight devices below. LM3532, LM3631, LM3632, LM3633, LM3695 and LM3697. Structure - It consists of two parts - core and data. Core part supports features below. - Backlight subsystem control - Channel configuration from DT

[PATCH v2 4/9] Documentation: dt-bindings: regulator: add LM363x regulator binding information

2015-11-25 Thread Milo Kim
This binding describes LM3631 and LM3632 regulator properties. Cc: Rob Herring Cc: devicet...@vger.kernel.org Cc: Lee Jones Cc: Jacek Anaszewski Cc: Mark Brown Cc: linux-l...@vger.kernel.org Cc: linux-kernel@vger.kernel.org Signed-off-by: Milo Kim ---

[PATCH v2 5/9] mfd: add TI LMU driver

2015-11-25 Thread Milo Kim
TI LMU (Lighting Management Unit) driver supports lighting devices below. LM3532, LM3631, LM3632, LM3633, LM3695 and LM3697. LMU devices have common features. - I2C interface for accessing device registers - Hardware enable pin control - Backlight brightness control - Notifier for

[PATCH v2 9/9] regulator: add LM363X driver

2015-11-25 Thread Milo Kim
LM363X regulator driver supports LM3631 and LM3632. LM3631 has 5 regulators. LM3632 provides 3 regulators. One boost output and LDOs are used for the display module. Boost voltage is configurable but always on. Supported operations for LDOs are enabled/disabled and voltage change. Two LDOs of

[PATCH v2 8/9] leds: add LM3633 driver

2015-11-25 Thread Milo Kim
LM3633 LED driver supports generic LED functions and pattern generation. Pattern is generated through the sysfs. ABI documentation is also added. Device creation from device tree LED channel name, LED string usage and max current settings are configured inside

[PATCH v2 3/9] Documentation: dt-bindings: leds: add LM3633 LED binding information

2015-11-25 Thread Milo Kim
LM3633 LED device is one of TI LMU device list. Cc: Rob Herring Cc: devicet...@vger.kernel.org Cc: Lee Jones Cc: Jacek Anaszewski Cc: Mark Brown Cc: linux-l...@vger.kernel.org Cc: linux-kernel@vger.kernel.org Signed-off-by: Milo Kim --- .../devicetree/bindings/leds/leds-lm3633.txt |

[PATCH v2 6/9] mfd: add TI LMU hardware fault monitoring driver

2015-11-25 Thread Milo Kim
LM3633 and LM3697 are TI LMU MFD device. Those devices have hardware monitoring feature which detects open or short circuit case. Debugfs --- Two files are created. open_fault: check light output channel is open or not. short_fault: check light output channel is shorted or not.

[PATCH v2 0/9] Support TI LMU devices

2015-11-25 Thread Milo Kim
TI Lighting Management Unit drivers support lighting devices below. Enable pin Backlight HW fault monitoring LEDs Regulators -- - --- LM3532 o o xx x LM3631 o

Re: [PATCH 2/2] powerpc: tracing: don't trace hcalls on offline CPUs

2015-11-25 Thread Michael Ellerman
On Tue, 2015-11-24 at 21:23 +0300, Denis Kirjanov wrote: > ./drmgr -c cpu -a -r gives the following warning: > > [ 2327.035563] RCU used illegally from offline CPU! > rcu_scheduler_active = 1, debug_locks = 1 > [ 2327.035564] no locks held by swapper/12/0. > [ 2327.035565] stack backtrace: > [

Re: [PATCH] target: xen-scsiback: Return proper -Exx instead of -1.

2015-11-25 Thread Juergen Gross
On 25/11/15 20:24, Konrad Rzeszutek Wilk wrote: > We could return EINVAL but EBUSY (or EALREADY?)is more appropiate. > > CC: jgr...@suse.com > Signed-off-by: Konrad Rzeszutek Wilk While it doesn't really matter it's cleaner. Reviewed-by: Juergen Gross > --- > drivers/xen/xen-scsiback.c | 2

Re: [PATCH] staging/dgap: move duplicated code from the dgap_cm.* functions

2015-11-25 Thread Sudip Mukherjee
On Wed, Nov 25, 2015 at 07:10:30PM +0600, Alexander Kuleshov wrote: > The dgap driver contains three functions: dgap_cmdb(), dgap_cmdw() > and dgap_cmdw_exit which are contain duplicated code which waits > if necessary before updating the pointer to limit outstanding > commands. This patch

RE: [PATCH] KVM: x86: Add lowest-priority support for vt-d posted-interrupts

2015-11-25 Thread Wu, Feng
> -Original Message- > From: Radim Krčmář [mailto:rkrc...@redhat.com] > Sent: Wednesday, November 25, 2015 11:43 PM > To: Paolo Bonzini > Cc: Wu, Feng ; k...@vger.kernel.org; linux- > ker...@vger.kernel.org > Subject: Re: [PATCH] KVM: x86: Add lowest-priority support for vt-d posted- >

Salve

2015-11-25 Thread hi
Salve tv, orologio, bici, gultar, iphone, prodotti Samsung, tv, dj la spedizione è gratuita si te: poazzlo .com

Re: checkpatch: GIT_COMMIT_ID rule catches 'cherry picked from commit ' lines

2015-11-25 Thread Joe Perches
On Wed, 2015-11-25 at 18:15 -0800, Shawn N wrote: > Hello, > > The checkpatch.pl GIT_COMMIT_ID rule appears to be designed to enforce > a minimum description when citing patches: 'commit <12+ chars of sha1> > (\"\")'. One (unintended?) consequence of this rule is > that unmodified 'cherry picked

[PATCH 5/6] clk: qcom: gdsc: Do not check for disabled status on votable gdscs

2015-11-25 Thread Rajendra Nayak
Some gdscs might be controlled via voting registers and might not really disable when the kernel intends to disable them (due to other votes keeping them enabled) Mark these gdscs with a flag for we do not check/wait on a disable status for these gdscs within the kernel disable callback.

[PATCH 3/6] clk: qcom: gdsc: Add GDSCs in msm8996 GCC

2015-11-25 Thread Rajendra Nayak
Add all data for the GDSCs which are part of msm8996 GCC block Signed-off-by: Rajendra Nayak --- arch/arm64/boot/dts/qcom/msm8996.dtsi| 1 + drivers/clk/qcom/gcc-msm8996.c | 88 include/dt-bindings/clock/qcom,gcc-msm8996.h | 11 3 files

[PATCH 1/6] clk: qcom: gdsc: Add support for hierarchical power domains

2015-11-25 Thread Rajendra Nayak
Some qcom SoCs' can have hierarchical power domains. Let the gdsc structs specify the parents (if any) and the driver add genpd subdomains for them. Signed-off-by: Rajendra Nayak --- drivers/clk/qcom/common.c | 14 +- drivers/clk/qcom/gdsc.c | 27 +--

[PATCH 2/6] clk: qcom: gdsc: Add support for gdscs with gds hw controller

2015-11-25 Thread Rajendra Nayak
Some gdsc power domains can have a gds_hw_controller block inside to help ensure all slave devices within the power domain are idle before the gdsc is actually switched off. This is mainly useful in power domains which host a MMU, in which case its necessary to make sure there are no outstanding

[PATCH v2] net: Generalise wq_has_sleeper helper

2015-11-25 Thread Herbert Xu
On Wed, Nov 25, 2015 at 11:37:29AM -0500, David Miller wrote: > > > Would be easier to refer to the comment that now adorns > > waitqueue_active(). > > Yeah, that might be a good idea. Herbert can you adjust this? Sure, here is an updated patch. Note that this patch is based on net-next where

[PATCH 6/6] clk: qcom: mmcc8974: Use gdscs .parent and remove genpd calls

2015-11-25 Thread Rajendra Nayak
With gdsc driver capable of handling hierarchical power domains, specify oxili_gdsc as parent of oxilicx_gdsc. Remove all direct calls to genpd from the mmcc clock driver. The adding and removing of subdomains is now handled from within the gdsc driver. Signed-off-by: Rajendra Nayak ---

[PATCH 4/6] clk: qcom: gdsc: Add mmcc gdscs for msm8996 family

2015-11-25 Thread Rajendra Nayak
Add all gdsc data which are part of mmcc on msm8996 family Signed-off-by: Rajendra Nayak --- arch/arm64/boot/dts/qcom/msm8996.dtsi | 1 + drivers/clk/qcom/mmcc-msm8996.c | 154 ++ include/dt-bindings/clock/qcom,mmcc-msm8996.h | 17 +++ 3 files

[PATCH 0/6] Add support for MSM8996 GDSCs

2015-11-25 Thread Rajendra Nayak
This series adds support for GDSCs' which are part of gcc and mmcc in QCOM msm8996 SoC. Series applies on top of the patches[1] which adds support for MSM8996 clocks. There are many more cases of gdscs within gdscs (hierarchical power domains) in msm8996 (msm8974 has one such instance which is

arm64: dts: qcom: Add apq8096 dragonboard dts skeletons

2015-11-25 Thread Rajendra Nayak
Add new dtsi and dts files for the apq8096 dragonboards with just a serial device used as debug console Signed-off-by: Rajendra Nayak --- Patch applies on top of Stephens' patches to add msm8996 dtsi https://lkml.org/lkml/2015/11/17/955 arch/arm64/boot/dts/qcom/Makefile | 2 +-

Re: [PATCH 03/14] DEVICETREE: Add PIC32 clock binding documentation

2015-11-25 Thread Joshua Henderson
Hi Rob, On 11/22/2015 2:31 PM, Rob Herring wrote: > On Fri, Nov 20, 2015 at 05:17:15PM -0700, Joshua Henderson wrote: >> From: Purna Chandra Mandal >> >> Document the devicetree bindings for the clock driver found on Microchip >> PIC32 class devices. >> >> Signed-off-by: Purna Chandra Mandal >>

Re: [PATCH v2 2/2] ARM: Replace calls to __aeabi_{u}idiv with udiv/sdiv instructions

2015-11-25 Thread Nicolas Pitre
On Thu, 26 Nov 2015, Måns Rullgård wrote: > Russell King - ARM Linux writes: > > > On Thu, Nov 26, 2015 at 12:50:08AM +, Måns Rullgård wrote: > >> If not calling the function saves an I-cache miss, the benefit can be > >> substantial. No, I have no proof of this being a problem, but it's >

Re: [PATCH 7/7] powerpc: fix a problematic usage of WARN()

2015-11-25 Thread Michael Ellerman
On Wed, 2015-11-25 at 21:12 +0800, Geliang Tang wrote: > WARN() takes a condition and a format string. The condition was > omitted. So I added it. > > Signed-off-by: Geliang Tang > --- > arch/powerpc/kernel/setup_64.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git

linux-next: Tree for Nov 26

2015-11-25 Thread Stephen Rothwell
Hi all, Reminder: there will be no linux-next release next week (Nov 30 - Dec 4). Changes since 20151124: The net-next tree gained a conflict against the net tree. The drm-panel tree lost its build failure. Non-merge commits (relative to Linus' tree): 2829 3498 files changed, 107354

Re: [PATCH 12/14] DEVICETREE: Add bindings for PIC32 SDHC host controller

2015-11-25 Thread Joshua Henderson
Hi Rob, On 11/22/2015 2:57 PM, Rob Herring wrote: > On Fri, Nov 20, 2015 at 05:17:24PM -0700, Joshua Henderson wrote: >> From: Andrei Pistirica >> >> Document the devicetree bindings for the SDHC peripheral found on >> Microchip PIC32 class devices. >> >> Signed-off-by: Andrei Pistirica >>

Re: [PATCH v2 4/5] PCI: iproc: Add iProc PCIe MSI support

2015-11-25 Thread Ray Jui
Hi Marc, On 11/25/2015 5:52 PM, Ray Jui wrote: Hi Marc, [...] +/* reserve memory for MSI posted writes */ +msi->msi_cpu = dma_alloc_coherent(pcie->dev, + msi->nr_msi_region * MSI_MEM_REGION_SIZE, + >msi_dma, GFP_KERNEL); Same here. Also,

Re: [PATCH] mm/vmstat: retrieve more accurate vmstat value

2015-11-25 Thread vinayak menon
On Thu, Nov 26, 2015 at 7:26 AM, Joonsoo Kim wrote: > On Wed, Nov 25, 2015 at 01:00:22PM +0100, Michal Hocko wrote: >> On Tue 24-11-15 15:22:03, Joonsoo Kim wrote: >> > When I tested compaction in low memory condition, I found that >> > my benchmark is stuck in congestion_wait() at

RE: [PATCH v9] PCI: Xilinx-NWL-PCIe: Added support for Xilinx NWL PCIe Host Controller

2015-11-25 Thread Bharat Kumar Gogada
> Subject: Re: [PATCH v9] PCI: Xilinx-NWL-PCIe: Added support for Xilinx NWL > PCIe Host Controller > > On Wed, 25 Nov 2015 05:40:49 + > Bharat Kumar Gogada wrote: > > > > On Thu, 19 Nov 2015 11:05:23 +0530 > > > Bharat Kumar Gogada wrote: > > > > > > > Adding PCIe Root Port driver for

Re: [PATCH 01/14] DEVICETREE: Add bindings for PIC32 interrupt controller

2015-11-25 Thread Joshua Henderson
Hi Rob, On 11/22/2015 2:14 PM, Rob Herring wrote: > On Fri, Nov 20, 2015 at 05:17:13PM -0700, Joshua Henderson wrote: >> From: Cristian Birsan >> >> Document the devicetree bindings for the interrupt controller on Microchip >> PIC32 class devices. This also adds a header defining associated

Re: [PATCH 12/14] DEVICETREE: Add bindings for PIC32 SDHC host controller

2015-11-25 Thread Joshua Henderson
Hi Sergei, On 11/21/2015 8:19 AM, Sergei Shtylyov wrote: > Hello. > > On 11/21/2015 3:17 AM, Joshua Henderson wrote: > >> From: Andrei Pistirica >> >> Document the devicetree bindings for the SDHC peripheral found on >> Microchip PIC32 class devices. >> >> Signed-off-by: Andrei Pistirica >>

Re: [PATCH 5/5] arm: boot: store ATAGs structure into DT "/chosen/linux,atags" entry

2015-11-25 Thread Frank Rowand
On 11/25/2015 1:03 PM, Tony Lindgren wrote: > * Arnd Bergmann [151125 11:50]: >> On Wednesday 25 November 2015 10:16:44 Tony Lindgren wrote: >>> * Pali Rohár [151123 06:46]: On Sunday 22 November 2015 07:51:46 Pavel Machek wrote: > On Wed 2015-11-11 17:10:46, Frank Rowand wrote: >>

Re: severe regression in alx ethernet driver

2015-11-25 Thread David Miller
From: Francois Romieu Date: Wed, 25 Nov 2015 23:47:08 +0100 > Jarod Wilson : > [...] >> They do at least have a signed-off-by in the patches attached to the bug, >> so I'm working on touching up the descriptions and formatting, regression >> testing them on my laptop that has an alx-driven

Re: [PATCH 03/14] DEVICETREE: Add PIC32 clock binding documentation

2015-11-25 Thread Joshua Henderson
Hi Arnd, On 11/21/2015 1:49 PM, Arnd Bergmann wrote: > On Friday 20 November 2015 17:17:15 Joshua Henderson wrote: >> +/* PIC32 specific clks */ >> +pic32_clktree { >> + #address-cells = <1>; >> + #size-cells = <1>; >> + reg = <0x1f801200 0x200>; >> + compatible =

[PATCH v3] perf probe: Adjust dso->long_name for offline module

2015-11-25 Thread Wang Nan
Something unexpected may happen if copy statically linked perf to a production environment: # ./perf probe -m ./mymodule.ko my_func [mymodule] with build id 326ab42550ef3d24944f53c817533728367effeb not found, continuing without symbols Failed to find symbol my_func in

Re: [RFC PATCH V2 0/3] IXGBE/VFIO: Add live migration support for SRIOV NIC

2015-11-25 Thread Alexander Duyck
On Wed, Nov 25, 2015 at 7:15 PM, Dong, Eddie wrote: >> On Wed, Nov 25, 2015 at 12:21 AM, Lan Tianyu wrote: >> > On 2015年11月25日 13:30, Alexander Duyck wrote: >> >> No, what I am getting at is that you can't go around and modify the >> >> configuration space for every possible device out there.

Re: Improve spinlock performance by moving work to one core

2015-11-25 Thread Ling Ma
Hi Longman, All compared data is from the below operation in spinlock-test.patch: +#if ORG_QUEUED_SPINLOCK + org_queued_spin_lock((struct qspinlock *)>list_lock); + refill_fn(); + org_queued_spin_unlock((struct qspinlock *)>list_lock); +#else + new_spin_lock((struct

[GIT PULL] security: updated fixes for 4.4

2015-11-25 Thread James Morris
Please pull this updated set, which now includes a fix for SELinux policy processing (regression introduced by fa1aa143ac4a), as well as the previously posted fix for the user-triggerable oops in the Keys code. --- The following changes since commit 6ffeba9607343f15303a399bc402a538800d89d9:

Re: [PATCH 3/3] nvme: change the interface between nvme and lightnvm

2015-11-25 Thread Wenwei Tao
You are right. Reset it to zero is not necessary. 2015-11-25 23:13 GMT+08:00 Matias Bjørling : > On 11/25/2015 01:42 PM, Wenwei Tao wrote: >> >> When nvme devices were removed, we need to handle the targets >> build upon them properly: remove the existing targets, block >> creations of new ones.

Re: [PATCH] scsi: use sector_div instead of do_div

2015-11-25 Thread Martin K. Petersen
> "Arnd" == Arnd Bergmann writes: Arnd> do_div is the wrong way to divide a sector_t, as it is less Arnd> efficient when sector_t is 32-bit wide. With the upcoming do_div Arnd> optimizations, the kernel starts warning about this: Applied. -- Martin K. Petersen Oracle Linux

Re: [PATCH] perf probe: Adjust dso->long_name for offline module

2015-11-25 Thread Wangnan (F)
On 2015/11/26 3:35, Arnaldo Carvalho de Melo wrote: Em Wed, Nov 25, 2015 at 11:30:59AM +, Wang Nan escreveu: If libelf unable to open debuginfo for an offline module but the ko has symtab, something unexpected may happen. # rm -rf ~/.debug/ # mv

[PATCH v2] perf probe: Adjust dso->long_name for offline module

2015-11-25 Thread Wang Nan
Something unexpected may happen if copy statically linked perf to a production environment: # ./perf probe -m ./mymodule.ko my_func [mymodule] with build id 326ab42550ef3d24944f53c817533728367effeb not found, continuing without symbols Failed to find symbol my_func in

Re: [PATCH 1/1] arm64: dts: add all hi6220 i2c nodes

2015-11-25 Thread Xinwei Kong
hi Shawn, On 2015/11/25 20:24, Shawn Guo wrote: > On Wed, Nov 25, 2015 at 05:49:02PM +0800, Xinwei Kong wrote: >> This patch adds all I2C nodes for the Hi6220 SoC. This hi6220 Soc >> use this I2C IP of Synopsys Designware for HiKey board. >> >> Signed-off-by: Xinwei Kong >> Signed-off-by: Chen

RE: [RFC PATCH V2 0/3] IXGBE/VFIO: Add live migration support for SRIOV NIC

2015-11-25 Thread Dong, Eddie
> On Wed, Nov 25, 2015 at 12:21 AM, Lan Tianyu wrote: > > On 2015年11月25日 13:30, Alexander Duyck wrote: > >> No, what I am getting at is that you can't go around and modify the > >> configuration space for every possible device out there. This > >> solution won't scale. > > > > > > PCI config

Re: [PATCH v2] module: keep percpu symbols in module's symtab

2015-11-25 Thread Rusty Russell
Miroslav Benes writes: > Currently, percpu symbols from .data..percpu ELF section of a module are > not copied over and stored in final symtab array of struct module. > Consequently such symbol cannot be returned via kallsyms API (for > example kallsyms_lookup_name). This can be especially

Re: [PATCH 3/5] dt-bindings: rockchip-thermal: Support the RK3228/RK3399 SoCs compatible

2015-11-25 Thread Caesar Wang
在 2015年11月25日 22:56, Heiko Stübner 写道: Am Mittwoch, 25. November 2015, 15:59:35 schrieb Caesar Wang: This patchset attempts to new compatible for thermal founding on RK3228/RK3399 SoCs. Signed-off-by: Caesar Wang --- Documentation/devicetree/bindings/thermal/rockchip-thermal.txt | 2 ++

Re: [PATCH v5 00/10] xen-block: multi hardware-queues/rings support

2015-11-25 Thread Konrad Rzeszutek Wilk
On Thu, Nov 26, 2015 at 10:28:10AM +0800, Bob Liu wrote: > > On 11/26/2015 06:12 AM, Konrad Rzeszutek Wilk wrote: > > On Wed, Nov 25, 2015 at 03:56:03PM -0500, Konrad Rzeszutek Wilk wrote: > >> On Wed, Nov 25, 2015 at 02:25:07PM -0500, Konrad Rzeszutek Wilk wrote: > xen/blkback: separate

[PATCH] mmc: core: fix __mmc_switch timeout caused by preempt

2015-11-25 Thread Chaotian Jing
there is a time window between __mmc_send_status() and time_afer(), on some eMMC chip, the timeout_ms is only 10ms, if this thread was scheduled out during this period, then, even card has already changes to transfer state by the result of CMD13, this part of code also treat it to timeout error.

Re: [PATCH v8 2/2] arm64: dts: mt8173: Add nor flash node

2015-11-25 Thread bayi cheng
On Thu, 2015-11-26 at 09:20 +0800, Daniel Kurtz wrote: > Hi Bayi, Matthias, > > Sorry for the late review, one comment below... > > On Wed, Nov 18, 2015 at 11:30 AM, Bayi Cheng wrote: > > Add Mediatek nor flash node > > > > Signed-off-by: Bayi Cheng > > Acked-by: Brian Norris > > --- > >

[PATCH V1] ARM: dts: imx6: Change the clock name for spba clock

2015-11-25 Thread Shengjiu Wang
Audio IP need the spba clock, but original clock name "dma" is not accurate, so change it to name "spba". The audio driver has been using the new name "spba", the binding document has been updated. Signed-off-by: Shengjiu Wang --- arch/arm/boot/dts/imx6qdl.dtsi | 6 +++---

  1   2   3   4   5   6   7   8   9   10   >