[PATCH] rtlwifi: rtl8192de: ix spelling mistake: "althougth" -> "although"

2017-02-26 Thread Colin King
From: Colin Ian King trivial fix to spelling mistake in RT_TRACE message Signed-off-by: Colin Ian King --- drivers/net/wireless/realtek/rtlwifi/rtl8192de/phy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[PATCH v4] staging: xgifb: correct the multiple line dereference

2017-02-26 Thread Arushi Singhal
Error was reported by checkpatch.pl as "Avoid multiple line dereference".And If there is boolean operator then it is fixed by Splitting line at boolean operator to satisfy coding style. Signed-off-by: Arushi Singhal --- changes in v4 - changes done such that no

Re: [PATCH] lib: fix spelling mistake: "actualy" -> "actually"

2017-02-26 Thread David Miller
From: Colin King Date: Sun, 26 Feb 2017 12:10:12 + > From: Colin Ian King > > trivial fix to spelling mistake in pr_err message > > Signed-off-by: Colin Ian King Applied.

Re: [PATCH] rtlwifi: rtl8192de: ix spelling mistake: "althougth" -> "although"

2017-02-26 Thread Larry Finger
On 02/26/2017 09:19 AM, Colin King wrote: From: Colin Ian King trivial fix to spelling mistake in RT_TRACE message Signed-off-by: Colin Ian King Bad fix. It should be althougth => through. Please read the context. NACK. Larry ---

[PATCH v4 2/2] staging: ks7010: Unnecessary parentheses are removed.

2017-02-26 Thread Arushi Singhal
Unnecessary parentheses are removed as reported by checkpatch.pl to make coder nicer and to improve readability. Also coding style is improved.For example:- It's often nicer to read if &(foo[0]) is converted to foo like: memcpy(&(ap->bssid[0]), &(ap_info->bssid[0]), ETH_ALEN);

Re: [Outreachy kernel] [PATCH v4 1/2] staging: ks7010: Unnecessary parentheses are removed.

2017-02-26 Thread Julia Lawall
On Sun, 26 Feb 2017, Arushi Singhal wrote: > Unnecessary parentheses are removed as reported by checkpatch.pl > to make coder nicer and to improve readability. > Also coding style is improved.For example:- > It's often nicer to read if &(foo[0]) is converted to foo like: >

Winning Details

2017-02-26 Thread Peter Kyle King
New york.docx Description: MS-Word 2007 document

[PATCH v4 0/4] iio: accel: adxl345: Split driver into core and I2C then add SPI support

2017-02-26 Thread Eva Rachel Retuya
This patchset modifies the adxl345 to use regmap. In doing so, we can easily introduce SPI support and let regmap handle the rest. Recap of basic features: read_raw for x, y and z axes, scale. After applying this series, driver now supports the SPI protocol and enumeration of device via device

[PATCH v4 2/4] iio: accel: adxl345: Use I2C regmap instead of direct I2C access

2017-02-26 Thread Eva Rachel Retuya
Convert the driver to use regmap instead of I2C-specific functions. This is done in preparation for splitting this driver into core and I2C-specific code as well as introduction of SPI driver. Signed-off-by: Eva Rachel Retuya --- Changes from v3: * Keep intact I2C client

Re: [PATCH v2 04/17] clocksource: Add Owl timer

2017-02-26 Thread Andreas Färber
Am 25.02.2017 um 22:59 schrieb Daniel Lezcano: > On Sat, Feb 25, 2017 at 12:25:32AM +0100, Andreas Färber wrote: >> Am 24.02.2017 um 23:29 schrieb Daniel Lezcano: >>> On Fri, Feb 24, 2017 at 04:40:42AM +0100, Andreas Färber wrote: +static struct clock_event_device owl_clockevent = { +

Re: [PATCH v2] drm/msm/dsi: Fix the releasing of resources in error path in 'dsi_bus_clk_enable()'

2017-02-26 Thread Rob Clark
On Sun, Feb 26, 2017 at 7:10 AM, Christophe JAILLET wrote: > If a 'clk_prepare_enable()' fails, then we need to disable_unprepare the > clk already handled. > > With the current implemenatation, we try to do that on the clk that has > triggered the error, which is a

[PATCH v3] staging: xgifb: correct the multiple line dereference

2017-02-26 Thread Arushi Singhal
Error was reported by checkpatch.pl as "Avoid multiple line dereference".And If there is boolean operator then it is fixed by Splitting line at boolean operator to satisfy coding style. Signed-off-by: Arushi Singhal --- changes in v3 - changes done such that

Linux 4.10.1

2017-02-26 Thread Greg KH
I'm announcing the release of the 4.10.1 kernel. All users of the 4.10 kernel series must upgrade. The updated 4.10.y git tree can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-4.10.y and can be browsed at the normal kernel.org git web browser:

Re: Linux 4.10.1

2017-02-26 Thread Greg KH
diff --git a/Documentation/admin-guide/kernel-parameters.txt b/Documentation/admin-guide/kernel-parameters.txt index be7c0d9506b1..18eefa860f76 100644 --- a/Documentation/admin-guide/kernel-parameters.txt +++ b/Documentation/admin-guide/kernel-parameters.txt @@ -1201,6 +1201,10 @@

Re: [PATCH] net: s2io: fix typo argumnet argument

2017-02-26 Thread David Miller
From: Corentin Labbe Date: Sat, 25 Feb 2017 21:12:41 +0100 > This commit fix the typo argumnet/argument > > Signed-off-by: Corentin Labbe Applied.

Re: [PATCH] net: vxge: fix typo argumnet argument

2017-02-26 Thread David Miller
From: Corentin Labbe Date: Sat, 25 Feb 2017 21:08:57 +0100 > This commit fix the typo argumnet/argument > > Signed-off-by: Corentin Labbe Applied.

Re: [PATCH 1/1] Fixing coding guidelines in drivers/staging/android/ion/*

2017-02-26 Thread Greg Kroah-Hartman
On Sun, Feb 26, 2017 at 10:24:02PM +0530, pjambhlekar wrote: > Signed-off-by: pjambhlekar > --- > drivers/staging/android/ion/ion-ioctl.c| 2 +- > drivers/staging/android/ion/ion.c | 8 > drivers/staging/android/ion/ion_cma_heap.c | 3 +--

[PATCH v4 1/4] Documentation: dt-bindings: Document ADXL345 accelerometer binding

2017-02-26 Thread Eva Rachel Retuya
Add the device tree binding documentation for the ADXL345 3-axis digital accelerometer. Signed-off-by: Eva Rachel Retuya --- .../devicetree/bindings/iio/accel/adxl345.txt | 38 ++ 1 file changed, 38 insertions(+) create mode 100644

Re: [PATCH v1 2/2] coresight: add support for debug module

2017-02-26 Thread Leo Yan
On Fri, Feb 24, 2017 at 12:07:11PM -0700, Mathieu Poirier wrote: > On Thu, Feb 23, 2017 at 09:57:47AM +0800, Leo Yan wrote: [...] > > +/* bits definition for EDDEVID1 */ > > +#define EDDEVID1_PCSR_OFFSET_MASK GENMASK(3, 0) > > +#define EDDEVID1_PCSR_OFFSET_INS_SET (0x0) > > +#define

Re: [PATCH 0/8] ARM: sun8i: a33: Mali improvements

2017-02-26 Thread Emil Velikov
Hi Maxime, Thanks for the links. On 24 February 2017 at 00:19, Maxime Ripard wrote: > Hi, > > On Fri, Feb 17, 2017 at 08:39:33PM +, Emil Velikov wrote: >> As I feared things have taken a turn for the bitter end :-] >> >> It seems that this is a heated

Re: [PATCH v2] drm/msm/dsi: Fix the releasing of resources in error path in 'dsi_bus_clk_enable()'

2017-02-26 Thread walter harms
looks good to me. Reviewed-by: wha...@bfs.de Am 26.02.2017 13:10, schrieb Christophe JAILLET: > If a 'clk_prepare_enable()' fails, then we need to disable_unprepare the > clk already handled. > > With the current implemenatation, we try to do that on the clk that has > triggered the error,

[PATCH v2 3/4] fpga dt: bindings for Altera Partial Reconfiguration IP.

2017-02-26 Thread matthew . gerlach
From: Matthew Gerlach Device Tree bindings for Altera Partial Reconfiguration IP. v2: s/Reconfiguraion/Reconfiguration/ Signed-off-by: Matthew Gerlach ---

[PATCH v2 0/4] Altera Partial Reconfiguration IP

2017-02-26 Thread matthew . gerlach
From: Matthew Gerlach This set of patches implements a fpga-mgr driver for the Altera Partial Reconfiguration IP. The driver depends on a patch from Alan Tull that adds a config complete timeout. The driver code itself is divided into core functions and

[PATCH v2 2/4] fpga pr ip: Core driver support for Altera Partial Reconfiguration IP.

2017-02-26 Thread matthew . gerlach
From: Matthew Gerlach Adding the core functions necessary for a fpga-mgr driver for the Altera Partial IP component. It is intended for these functions to be used by the various bus implementations like the platform bus or the PCIe bus. Signed-off-by: Matthew

Re: [Outreachy kernel] [PATCH v4 2/2] staging: ks7010: Unnecessary parentheses are removed.

2017-02-26 Thread Julia Lawall
On Sun, 26 Feb 2017, Arushi Singhal wrote: > Unnecessary parentheses are removed as reported by checkpatch.pl > to make coder nicer and to improve readability. > Also coding style is improved.For example:- > It's often nicer to read if &(foo[0]) is converted to foo like: >

[PATCH v2] drm/msm/dsi: Fix the releasing of resources in error path in 'dsi_bus_clk_enable()'

2017-02-26 Thread Christophe JAILLET
If a 'clk_prepare_enable()' fails, then we need to disable_unprepare the clk already handled. With the current implemenatation, we try to do that on the clk that has triggered the error, which is a no-op and leave msm_host->bus_clks[0] untouched. Count forward in order to fix it and be more

Re: [PATCH v3 2/2] iio: stm32 trigger: Implement parent trigger feature

2017-02-26 Thread Benjamin Gaignard
2017-02-25 18:53 GMT+01:00 Jonathan Cameron : > On 24/02/17 14:48, Benjamin Gaignard wrote: >> Add validate_trigger function in iio_trigger_ops and >> dev_attr_parent_trigger into trigger attribute group to be able >> to accept triggers as parents. >> >> Introduce an IIO device

Re: [LSF/MM TOPIC] do we really need PG_error at all?

2017-02-26 Thread James Bottomley
[added linux-scsi and linux-block because this is part of our error handling as well] On Sun, 2017-02-26 at 09:42 -0500, Jeff Layton wrote: > Proposing this as a LSF/MM TOPIC, but it may turn out to be me just > not understanding the semantics here. > > As I was looking into -ENOSPC handling in

[PATCH] staging: bcm2835-audio: Fixed spacing around '&'

2017-02-26 Thread Narcisa Ana Maria Vasile
This was reported by checkpatch.pl Signed-off-by: Narcisa Ana Maria Vasile --- drivers/staging/bcm2835-audio/bcm2835-pcm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/bcm2835-audio/bcm2835-pcm.c

I915 dmesg warnings on Mac Mini, solo core edition

2017-02-26 Thread Enrico Mioso
Hello. I am not using this computer actively and can't report easily on the state of the screen. Still, I observed the following situation in the system's dmesg: running the stock Archlinux Kernel. This is an Apple MacMini system, booted via an EFI bootloader. Thank you very much, Enrico [

Re: [PATCH] lib: fix spelling mistake: "actualy" -> "actually"

2017-02-26 Thread Jiri Pirko
Sun, Feb 26, 2017 at 01:10:12PM CET, colin.k...@canonical.com wrote: >From: Colin Ian King > >trivial fix to spelling mistake in pr_err message > >Signed-off-by: Colin Ian King Acked-by: Jiri Pirko >--- >

[LSF/MM TOPIC] do we really need PG_error at all?

2017-02-26 Thread Jeff Layton
Proposing this as a LSF/MM TOPIC, but it may turn out to be me just not understanding the semantics here. As I was looking into -ENOSPC handling in cephfs, I noticed that PG_error is only ever tested in one place [1] __filemap_fdatawait_range, which does this: if

RE: FOR YOUR INFORMATION

2017-02-26 Thread Eddie Concepcion
From: Eddie Concepcion Sent: Sunday, February 26, 2017 9:11 AM To: Eddie Concepcion Subject: FOR YOUR INFORMATION Hi, You have received a donation of 1,000,000USD; reply to merlebutler...@gmail.com, for details.

[PATCH v2] staging: ks7010: remove code in comments.

2017-02-26 Thread Arushi Singhal
Commenting Code Is a Bad Idea. Comments are their to explain the code and how the code achieves its goal and as codes in the comments does not explain what the code is doing so there is no use of commenting them. So in this patch codes in the comments are removed. Signed-off-by: Arushi Singhal

[PATCH v2 1/4] fpga: add config complete timeout

2017-02-26 Thread matthew . gerlach
From: Alan Tull Adding timeout for maximum allowed time for FPGA to go to operating mode after a FPGA region has been programmed. Signed-off-by: Alan Tull --- drivers/fpga/fpga-region.c| 3 +++ include/linux/fpga/fpga-mgr.h | 3 +++

Re: [PATCH] drm/msm/dsi: Fix the releasing of resources in error path in 'dsi_bus_clk_enable()'

2017-02-26 Thread Rob Clark
On Sun, Feb 26, 2017 at 2:52 AM, Christophe JAILLET wrote: > If a 'clk_prepare_enable()' fails, then we need to disable_unprepare the > clk already handled. > > With the current implemenatation, we try to do that on the clk that has > triggered the error, which is a

[PATCH v4 3/4] iio: accel: adxl345: Split driver into core and I2C

2017-02-26 Thread Eva Rachel Retuya
Move I2C-specific code into its own file and rely on regmap to access registers. The core code provides access to x, y, z and scale readings. Signed-off-by: Eva Rachel Retuya --- Changes from v3: * Revert to explicit and separate I2C and SPI configuration * Add OF match

[PATCH v4 4/4] iio: accel: adxl345: Add SPI support

2017-02-26 Thread Eva Rachel Retuya
Add SPI driver that initializes SPI regmap for the adxl345 core driver. The driver supports the same functionality as I2C namely the x, y, z and scale readings. Signed-off-by: Eva Rachel Retuya --- Changes from v3: * Revert to explicit and separate I2C and SPI configuration

Re: [PATCH v2 04/17] clocksource: Add Owl timer

2017-02-26 Thread Daniel Lezcano
On Sun, Feb 26, 2017 at 03:40:49PM +0100, Andreas Färber wrote: > Am 25.02.2017 um 22:59 schrieb Daniel Lezcano: > > On Sat, Feb 25, 2017 at 12:25:32AM +0100, Andreas Färber wrote: > >> Am 24.02.2017 um 23:29 schrieb Daniel Lezcano: > >>> On Fri, Feb 24, 2017 at 04:40:42AM +0100, Andreas Färber

Re: [PATCH] [linux-next] bcache: Remove duplicate inclusion of blkdev.h

2017-02-26 Thread Coly Li
On 2017/2/26 下午2:02, Masanari Iida wrote: > This patch remove duplicate inclusion of blkdev.h in util.h. > Confirm compile successfully after remove the line. > > Signed-off-by: Masanari Iida > --- > drivers/md/bcache/util.h | 1 - > 1 file changed, 1 deletion(-) > >

Re: [PATCH v3 2/2] iio: stm32 trigger: Implement parent trigger feature

2017-02-26 Thread Benjamin Gaignard
2017-02-26 15:59 GMT+01:00 Benjamin Gaignard : > 2017-02-25 18:53 GMT+01:00 Jonathan Cameron : >> On 24/02/17 14:48, Benjamin Gaignard wrote: >>> Add validate_trigger function in iio_trigger_ops and >>> dev_attr_parent_trigger into trigger attribute

Re: [PATCH 4.10 00/21] 4.10.1-stable review

2017-02-26 Thread Greg Kroah-Hartman
On Fri, Feb 24, 2017 at 10:09:22AM -0800, kernelci.org bot wrote: > stable-rc boot: 191 boots: 2 failed, 181 passed with 8 offline > (v4.10-22-g0b3f6c4ba776) > > Full Boot Summary: > https://kernelci.org/boot/all/job/stable-rc/kernel/v4.10-22-g0b3f6c4ba776/ > Full Build Summary: >

Re: [PATCH 4.10 00/21] 4.10.1-stable review

2017-02-26 Thread Greg Kroah-Hartman
On Fri, Feb 24, 2017 at 11:20:10AM -0700, Shuah Khan wrote: > On 02/24/2017 01:39 AM, Greg Kroah-Hartman wrote: > > This is the start of the stable review cycle for the 4.10.1 release. > > There are 21 patches in this series, all will be posted as a response > > to this one. If anyone has any

Re: [PATCH 4.10 00/21] 4.10.1-stable review

2017-02-26 Thread Greg Kroah-Hartman
On Fri, Feb 24, 2017 at 08:24:17PM -0800, Guenter Roeck wrote: > On 02/24/2017 12:39 AM, Greg Kroah-Hartman wrote: > > This is the start of the stable review cycle for the 4.10.1 release. > > There are 21 patches in this series, all will be posted as a response > > to this one. If anyone has any

Re: [PATCH v2 1/3] module: verify address is read-only

2017-02-26 Thread Jessica Yu
+++ Eddie Kovsky [17/02/17 22:58 -0700]: Implement a mechanism to check if a module's address is in the rodata or ro_after_init sections. It mimics the exsiting functions that test if an address is inside a module's text section. It would be helpful to explain in the changelog the motivation

[PATCH] lib: fix spelling mistake: "actualy" -> "actually"

2017-02-26 Thread Colin King
From: Colin Ian King trivial fix to spelling mistake in pr_err message Signed-off-by: Colin Ian King --- lib/test_parman.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/test_parman.c b/lib/test_parman.c index

Re: [PATCH 00/10] fujitsu-laptop: renames and cleanups

2017-02-26 Thread Andy Shevchenko
On Sun, Feb 26, 2017 at 1:30 PM, Michał Kępień wrote: >> On Fri, Feb 17, 2017 at 6:17 AM, Jonathan Woithe wrote: >> > On Thu, Feb 16, 2017 at 07:53:19PM -0800, Darren Hart wrote: >> >> On Fri, Feb 17, 2017 at 01:38:04PM +1030, Jonathan Woithe wrote: >> >> >

Re: [PATCH v3] staging: xgifb: correct the multiple line dereference

2017-02-26 Thread Joe Perches
On Sun, 2017-02-26 at 21:23 +0530, Arushi Singhal wrote: > Error was reported by checkpatch.pl as "Avoid multiple line > dereference".And If there is boolean operator then it is > fixed by Splitting line at boolean operator to satisfy coding > style. [] > diff --git

[PATCH v2 4/4] fpga pr ip: Platform driver for Altera Partial Reconfiguration IP.

2017-02-26 Thread matthew . gerlach
From: Matthew Gerlach This adds a platform bus driver for a fpga-mgr driver that uses the Altera Partial Reconfiguration IP component. v2: s/altr,pr-ip-core/altr,pr-ip/ Signed-off-by: Matthew Gerlach ---

Re: [Outreachy kernel] [PATCH v4] staging: xgifb: correct the multiple line dereference

2017-02-26 Thread Julia Lawall
On Sun, 26 Feb 2017, Arushi Singhal wrote: > Error was reported by checkpatch.pl as "Avoid multiple line > dereference".And If there is boolean operator then it is > fixed by Splitting line at boolean operator to satisfy coding > style. Please improve the commit message. Capital letters should

[PATCH 0/1] Fixing coding guidelines in drivers/staging/android/ion

2017-02-26 Thread pjambhlekar
Coding guidelines are fixed by running checkpatch.pl pjambhlekar (1): Fixing coding guidelines in drivers/staging/android/ion/* drivers/staging/android/ion/ion-ioctl.c| 2 +- drivers/staging/android/ion/ion.c | 8 drivers/staging/android/ion/ion_cma_heap.c |

Re: [ieee802154_unregister_hw] bea5b158ff BUG: scheduling while atomic: swapper/1/0x00000002

2017-02-26 Thread Alexander Aring
Hi, On 02/26/2017 10:43 AM, Fengguang Wu wrote: > Greetings, > > FYI, this debug patch discloses an old-but-still-active bug in > ieee802154/fakelb. The attached reproduce-* script may help debug it. > fixed by: bdca1fd9a6df ("fakelb: fix schedule while atomic"). It should be send to stable.

Re: [GIT PULL] Kselftest update for 4.11-rc1

2017-02-26 Thread Mike Rapoport
On Sat, Feb 25, 2017 at 03:42:55PM -0800, Linus Torvalds wrote: > On Fri, Feb 24, 2017 at 1:09 PM, Shuah Khan wrote: > > > > Stephen saw a conflict during kselftest merge with next > [..] > > There was also a conflict with some of Andrew's new userfaultfd tests. > > I'm

Re: [PATCH 00/10] fujitsu-laptop: renames and cleanups

2017-02-26 Thread Michał Kępień
> On Fri, Feb 17, 2017 at 6:17 AM, Jonathan Woithe wrote: > > On Thu, Feb 16, 2017 at 07:53:19PM -0800, Darren Hart wrote: > >> On Fri, Feb 17, 2017 at 01:38:04PM +1030, Jonathan Woithe wrote: > >> > Do you want me to continue to use Acked-by, or should I switch to > >> >

Re: camera subdevice support was Re: [PATCH 1/4] v4l2: device_register_subdev_nodes: allow calling multiple times

2017-02-26 Thread Pavel Machek
Ahoj! :-) > > > > Ok, I got the camera sensor to work. No subdevices support, so I don't > > > > have focus (etc) working, but that's a start. I also had to remove > > > > video-bus-switch support; but I guess it will be easier to use > > > > video-multiplexer patches... > > > > > > > > I'll

[PATCH] KVM: nVMX: Fix pending events injection

2017-02-26 Thread Wanpeng Li
From: Wanpeng Li L2 fails to boot on a non-APICv box dues to 'commit 0ad3bed6c5ec ("kvm: nVMX: move nested events check to kvm_vcpu_running")' KVM internal error. Suberror: 3 extra data[0]: 80ef extra data[1]: 1 RAX= RBX=81f36140

Re: [Intel-wired-lan] [PATCH] e1000e: fix timing for 82579 Gigabit Ethernet controller

2017-02-26 Thread Neftin, Sasha
On 2/19/2017 14:55, Neftin, Sasha wrote: On 2/16/2017 20:42, Bernd Faust wrote: After an upgrade to Linux kernel v4.x the hardware timestamps of the 82579 Gigabit Ethernet Controller are different than expected. The values that are being read are almost four times as big as before the kernel

Re: Linux 4.9.13

2017-02-26 Thread Greg KH
diff --git a/Documentation/kernel-parameters.txt b/Documentation/kernel-parameters.txt index 922dec8fa07e..65b05ba6ef98 100644 --- a/Documentation/kernel-parameters.txt +++ b/Documentation/kernel-parameters.txt @@ -1391,6 +1391,10 @@ bytes respectively. Such letter suffixes can also be entirely

Linux 4.9.13

2017-02-26 Thread Greg KH
I'm announcing the release of the 4.9.13 kernel. All users of the 4.9 kernel series must upgrade. The updated 4.9.y git tree can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-4.9.y and can be browsed at the normal kernel.org git web browser:

[PATCH] mm, add_memory_resource: hold device_hotplug lock over mem_hotplug_{begin, done}

2017-02-26 Thread Sebastian Ott
With 4.10.0-10265-gc4f3f22 the following warning is triggered on s390: WARNING: CPU: 6 PID: 1 at drivers/base/core.c:643 assert_held_device_hotplug+0x4a/0x58 [5.731214] Call Trace: [5.731219] ([<0067b8b0>] assert_held_device_hotplug+0x40/0x58) [5.731225] [<00337914>]

Re: [PATCH v5 2/7] clk: sunxi-ng: rename sun8i-h3 driver to sunxi-h3-h5

2017-02-26 Thread Rask Ingemann Lambertsen
On Sun, Feb 26, 2017 at 09:19:51AM +0800, Icenowy Zheng wrote: > As the CCU in the Allwinner H5 SoC is very similar to the one in H3, > rename the H3 driver to sunxi-h3-h5 so that it can be extended with H5 > support. > > Trasitional header symlinks are created, to ensure current device tree

Re: [PATCH v2 6/7] tpm: expose spaces via a device link /dev/tpms

2017-02-26 Thread Jarkko Sakkinen
On Fri, Feb 24, 2017 at 08:02:08AM -0500, James Bottomley wrote: > On Thu, 2017-02-23 at 11:09 +0200, Jarkko Sakkinen wrote: > > On Thu, Feb 16, 2017 at 09:25:19PM +0200, Jarkko Sakkinen wrote: > > > From: James Bottomley > > > > > > Currently the tpm

Re: [PATCH] ASoC: spear: Remove redundant message

2017-02-26 Thread Takashi Sakamoto
On Feb 25 2017 19:33, dspmihai wrote: This was reported by checkpatch.pl Signed-off-by: Despotovici Mihai --- sound/soc/spear/spdif_in.c | 4 +--- sound/soc/spear/spdif_out.c | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git

Re: [PATCH] ASoC: dwc: remove 'out of memory' message

2017-02-26 Thread Takashi Sakamoto
Hi, On Feb 25 2017 20:03, Mihai Burduselu wrote: Reported by checkpatch.pl Signed-off-by: Mihai Burduselu --- sound/soc/dwc/designware_i2s.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/sound/soc/dwc/designware_i2s.c

Re: [PATCH] ASoC: rockchip: i2s: Remove unnecessary 'out of memory' message

2017-02-26 Thread Takashi Sakamoto
On Feb 25 2017 19:18, Mihai-Valentin DUMITRU wrote: This was reported by checkpatch.pl Signed-off-by: Mihai-Valentin DUMITRU --- sound/soc/rockchip/rockchip_i2s.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git

Re: [PATCH v5 7/7] arm64: dts: sunxi: add support for the Orange Pi PC 2 board

2017-02-26 Thread Rask Ingemann Lambertsen
On Sun, Feb 26, 2017 at 09:19:56AM +0800, Icenowy Zheng wrote: > diff --git a/arch/arm64/boot/dts/allwinner/sun50i-h5-orangepi-pc2.dts > b/arch/arm64/boot/dts/allwinner/sun50i-h5-orangepi-pc2.dts > new file mode 100644 > index ..79784cba806c > --- /dev/null > +++

[usb] bea5b158ff WARNING: CPU: 0 PID: 25 at drivers/usb/core/urb.c:338 usb_submit_urb

2017-02-26 Thread Fengguang Wu
Greetings, This debug patch possibly discloses some USB/I2C bugs. Since the USB warning shows up earlier in dmesg, it might also be the root cause of the I2C bug. The attached reproduce-* script may help debug them. https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master

[RFC] ERR_USER_PTR

2017-02-26 Thread Matthew Wilcox
In an attempt to clean up sparse warnings, I offer this small patch. The two warnings it fixes are: fs/exec.c:424:39: warning: incorrect type in return expression (different address spaces) fs/exec.c:424:39:expected char const [noderef] * fs/exec.c:424:39:got void * fs/exec.c:431:31:

Re: [PATCH 1/2] lightnvm: add generic ocssd detection

2017-02-26 Thread Christoph Hellwig
[adding linux-nvme to Cc as the patch changes the nvme driver, despite the subject line] On Sat, Feb 25, 2017 at 08:16:04PM +0100, Matias Bjørling wrote: > On 02/25/2017 07:21 PM, Christoph Hellwig wrote: > > On Fri, Feb 24, 2017 at 06:16:48PM +0100, Matias Bjørling wrote: > > > More

Re: [PATCH v5 6/7] arm64: dts: allwinner: add Allwinner H5 .dtsi

2017-02-26 Thread Rask Ingemann Lambertsen
On Sun, Feb 26, 2017 at 09:19:55AM +0800, Icenowy Zheng wrote: > From: Andre Przywara > > The Allwinner H5 SoC is pin-compatible to the H3 SoC, but uses > Cortex-A53 cores instead. > Based on the now shared base .dtsi describing the common peripherals > describe the H5

Re: [PATCH RFC] arm64/mm: handle memmap kernel option

2017-02-26 Thread Ard Biesheuvel
On 25 February 2017 at 06:47, Yisheng Xie wrote: > When use device tree mode, user can reserve memory by changes the dts, > however, when boot with ACPI, user cannot reserve memory except by > changing the ACPI table in BIOS, which is not so convenient. > > To make user

Linux 4.4.52

2017-02-26 Thread Greg KH
I'm announcing the release of the 4.4.52 kernel. All users of the 4.4 kernel series must upgrade. The updated 4.4.y git tree can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-4.4.y and can be browsed at the normal kernel.org git web browser:

Re: Linux 4.4.52

2017-02-26 Thread Greg KH
diff --git a/Documentation/kernel-parameters.txt b/Documentation/kernel-parameters.txt index c360f80c3473..ca64ca566099 100644 --- a/Documentation/kernel-parameters.txt +++ b/Documentation/kernel-parameters.txt @@ -1255,6 +1255,10 @@ bytes respectively. Such letter suffixes can also be entirely

Re: Still OOM problems with 4.9er/4.10er kernels

2017-02-26 Thread Gerhard Wiesinger
On 04.01.2017 10:11, Michal Hocko wrote: The VM stops working (e.g. not pingable) after around 8h (will be restarted automatically), happened serveral times. Had also further OOMs which I sent to Mincham. Could you post them to the mailing list as well, please? Still OOMs on dnf update

Re: [PATCH] drm/msm/dsi: Fix the releasing of resources in error path in 'dsi_bus_clk_enable()'

2017-02-26 Thread walter harms
Am 26.02.2017 08:52, schrieb Christophe JAILLET: > If a 'clk_prepare_enable()' fails, then we need to disable_unprepare the > clk already handled. > > With the current implemenatation, we try to do that on the clk that has > triggered the error, which is a no-op, and leave

Re: [PATCH v5 6/7] arm64: dts: allwinner: add Allwinner H5 .dtsi

2017-02-26 Thread Chen-Yu Tsai
On Sun, Feb 26, 2017 at 4:55 PM, Rask Ingemann Lambertsen wrote: > On Sun, Feb 26, 2017 at 09:19:55AM +0800, Icenowy Zheng wrote: >> From: Andre Przywara >> >> The Allwinner H5 SoC is pin-compatible to the H3 SoC, but uses >> Cortex-A53 cores instead.

[usb] bea5b158ff WARNING: CPU: 0 PID: 25 at drivers/usb/core/urb.c:338 usb_submit_urb

2017-02-26 Thread Fengguang Wu
[Sorry, resend to correct Felipe's email address] Greetings, This debug patch possibly discloses some USB/I2C bugs. Since the USB warning shows up earlier in dmesg, it might also be the root cause of the I2C bug. The attached reproduce-* script may help debug them.

Re: [PATCH-tip 2/3] locking/rwsem: move down rwsem_down_read_failed()

2017-02-26 Thread Davidlohr Bueso
On Wed, 22 Feb 2017, Waiman Long wrote: Move the rwsem_down_read_failed() function down to below the optimistic spinning section as it is going to use function in that section in a later patch. So the title is a bit ambiguous, and I would argue that this should be folded into patch 3, and

Re: [RFC simple allocator v2 1/2] Create Simple Allocator module

2017-02-26 Thread Daniel Vetter
On Wed, Feb 15, 2017 at 12:15:26PM +, Mark Brown wrote: > On Tue, Feb 14, 2017 at 09:59:55PM +0200, Laurent Pinchart wrote: > > On Tuesday 14 Feb 2017 20:44:44 Daniel Vetter wrote: > > > > ADF was probably the best example in this. KMS also took a while until all > > > the fbdev wheels have

Re: [drm] bea5b158ff BUG: unable to handle kernel NULL pointer dereference at 0000000000000748

2017-02-26 Thread Daniel Vetter
On Sat, Feb 18, 2017 at 01:10:47PM +0800, Fengguang Wu wrote: > Greetings, > > FYI, this debug patch triggers BUG in DRM subsystem. > > https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master > > commit bea5b158ff0da9c7246ff391f754f5f38e34577a > Author: Rob Herring

Re: [ieee802154_unregister_hw] bea5b158ff BUG: scheduling while atomic: swapper/1/0x00000002

2017-02-26 Thread Stefan Schmidt
Hello. On 02/26/2017 12:07 PM, Alexander Aring wrote: Hi, On 02/26/2017 10:43 AM, Fengguang Wu wrote: Greetings, FYI, this debug patch discloses an old-but-still-active bug in ieee802154/fakelb. The attached reproduce-* script may help debug it. fixed by: bdca1fd9a6df ("fakelb: fix

Re: [PATCH 3/3] drm/tinydrm: helpers: Properly fix backlight dependency

2017-02-26 Thread Noralf Trønnes
Den 23.02.2017 14.29, skrev Noralf Trønnes: BACKLIGHT_CLASS_DEVICE was selected in the last version of the tinydrm patchset to fix the backlight dependency, but the ifdef CONFIG_BACKLIGHT_CLASS_DEVICE was forgotten. Fix that. Signed-off-by: Noralf Trønnes --- Please

Re: [Outreachy kernel] [PATCH] staging: bcm2835-audio: Fixed spacing around '&'

2017-02-26 Thread Julia Lawall
On Sun, 26 Feb 2017, Narcisa Ana Maria Vasile wrote: > This was reported by checkpatch.pl > > Signed-off-by: Narcisa Ana Maria Vasile Acked-by: Julia Lawall Actually, the outreachy tutorial says not to send patches to mailing lists, only to

[PATCH] hid: usbhid: hiddev.c: fix checkpatch.pl errors

2017-02-26 Thread Avraham Shukron
- Extracted assignments out of 'if' statements - Removed unnecessary spaces - Broke long lines - Added empty lines after declarations Signed-off-by: Avraham Shukron --- drivers/hid/usbhid/hiddev.c | 51 ++--- 1 file changed, 34

Re: [Outreachy kernel] [PATCH] staging: bcm2835-audio: Fixed spacing around '&'

2017-02-26 Thread Julia Lawall
On Sun, 26 Feb 2017, Joe Perches wrote: > On Sun, 2017-02-26 at 19:59 +0100, Julia Lawall wrote: > > On Sun, 26 Feb 2017, Joe Perches wrote: > > > Mailing lists _should_ be copied on patch submissions. > > > > The idea of outreachy is that it should be a place for people to get > > started

Re: [PATCH v3 1/2] drm/fb-helper: Add multi buffer support for cma fbdev

2017-02-26 Thread Daniel Vetter
On Wed, Feb 22, 2017 at 04:49:01PM -0800, Maxime Ripard wrote: > Hi Stefan, > > On Mon, Feb 20, 2017 at 06:07:10PM +0100, Stefan Lengfeld wrote: > > Hi Maxime, > > > > sorry, I have missed the discussion about the double buffering/virtual > > surface size patch series two weeks ago. My comments

Re: [PATCH 01/10] perf, tools, stat: Factor out callback for collecting event values

2017-02-26 Thread Jiri Olsa
On Thu, Feb 23, 2017 at 04:10:12PM -0800, Andi Kleen wrote: SNIP > +static void aggr_cb(struct perf_evsel *counter, void *data, bool first) > +{ > + struct aggr_data *ad = data; > + int cpu, cpu2, s2; > + > + for (cpu = 0; cpu < perf_evsel__nr_cpus(counter); cpu++) { > +

Re: [PATCH v4 3/4] leds: Add LED support for MT6323 PMIC

2017-02-26 Thread Jacek Anaszewski
Hi Sean, Thanks for the update. I have one comment to your changes below. On 02/24/2017 07:47 PM, sean.w...@mediatek.com wrote: > From: Sean Wang > > MT6323 PMIC is a multi-function device that includes > LED function. It allows attaching up to 4 LEDs which > can either

Re: [PATCH v2 6/7] tpm: expose spaces via a device link /dev/tpms

2017-02-26 Thread Dr. Greg Wettstein
On Sun, Feb 26, 2017 at 01:44:40PM +0200, Jarkko Sakkinen wrote: Good day, I hope this note finds the week starting well for everyone. > On Fri, Feb 24, 2017 at 08:02:08AM -0500, James Bottomley wrote: > > On Thu, 2017-02-23 at 11:09 +0200, Jarkko Sakkinen wrote: > > > On Thu, Feb 16, 2017 at

[PATCH] net: rocker: use new api ethtool_{get|set}_link_ksettings

2017-02-26 Thread Philippe Reynes
The ethtool api {get|set}_settings is deprecated. We move this driver to new api {get|set}_link_ksettings. As I don't have the hardware, I'd be very pleased if someone may test this patch. Signed-off-by: Philippe Reynes --- drivers/net/ethernet/rocker/rocker_main.c | 55

Re: [PATCH v2 1/2] crypto: vmx - Use skcipher for cbc fallback

2017-02-26 Thread Marcelo Cerri
On Fri, Feb 24, 2017 at 11:23:54AM -0300, Paulo Flabiano Smorigo wrote: > Signed-off-by: Paulo Flabiano Smorigo > --- > drivers/crypto/vmx/aes_cbc.c | 44 > ++-- > 1 file changed, 22 insertions(+), 22 deletions(-) > > diff

Re: [Outreachy kernel] [PATCH] staging: bcm2835-audio: Fixed spacing around '&'

2017-02-26 Thread Joe Perches
On Sun, 2017-02-26 at 19:59 +0100, Julia Lawall wrote: > On Sun, 26 Feb 2017, Joe Perches wrote: > > Mailing lists _should_ be copied on patch submissions. > > The idea of outreachy is that it should be a place for people to get > started without too much criticism from the outside. Originally,

OT: Crowdfunding to port OpenBMC to Asus KGPE-D16

2017-02-26 Thread Paul Menzel
[Please CC me, as I am not subscribed.] Dear OpenBMC people, If you haven’t heard yet, there is a crowdfunding campaign going on to fund a port of OpenBMC to the Asus KGPE-D16 [1]. The free firmware coreboot [2] runs on that board, and no BLOBs have to be used with it. Having OpenBMC run on

Re: [PATCH 1/3] [media] soc-camera: ov5642: Add OF device ID table

2017-02-26 Thread Guennadi Liakhovetski
On Wed, 22 Feb 2017, Javier Martinez Canillas wrote: > The driver doesn't have a struct of_device_id table but supported devices > are registered via Device Trees. This is working on the assumption that a > I2C device registered via OF will always match a legacy I2C device ID and > that the

[GIT PULL] watchdog updates for v4.11

2017-02-26 Thread Guenter Roeck
Hi Linus, Wim asked me to handle the watchdog pull request this time around. Please pull watchdog updates for Linux v4.11 from signed tag: git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git watchdog-for-linus-v4.11 [ Yes, I know, I rebased to v4.10 which I should not

Re: [PATCH] drm: drm_printer: add __printf validation

2017-02-26 Thread Daniel Vetter
On Tue, Feb 21, 2017 at 01:18:03AM -0800, Joe Perches wrote: > On Tue, 2017-02-21 at 11:02 +0200, Jani Nikula wrote: > > On Tue, 21 Feb 2017, Joe Perches wrote: > > > On Tue, 2017-02-21 at 10:26 +0200, Jani Nikula wrote: > > > > You know how this stuff works, please split it up

Re: [GIT PULL] Kselftest update for 4.11-rc1

2017-02-26 Thread Mike Kravetz
On 02/26/2017 03:37 AM, Mike Rapoport wrote: > On Sat, Feb 25, 2017 at 03:42:55PM -0800, Linus Torvalds wrote: >> On Fri, Feb 24, 2017 at 1:09 PM, Shuah Khan wrote: >>> >>> Stephen saw a conflict during kselftest merge with next >> [..] >> >> There was also a conflict

Re: [LSF/MM TOPIC] do we really need PG_error at all?

2017-02-26 Thread NeilBrown
On Sun, Feb 26 2017, James Bottomley wrote: > [added linux-scsi and linux-block because this is part of our error > handling as well] > On Sun, 2017-02-26 at 09:42 -0500, Jeff Layton wrote: >> Proposing this as a LSF/MM TOPIC, but it may turn out to be me just >> not understanding the semantics

[PATCH] net: sgi: ioc3-eth: use new api ethtool_{get|set}_link_ksettings

2017-02-26 Thread Philippe Reynes
The ethtool api {get|set}_settings is deprecated. We move this driver to new api {get|set}_link_ksettings. As I don't have the hardware, I'd be very pleased if someone may test this patch. Signed-off-by: Philippe Reynes --- drivers/net/ethernet/sgi/ioc3-eth.c | 14

Re: [PATCH][V2] rtlwifi: rtl8192de: ix spelling mistake: "althougth" -> "though"

2017-02-26 Thread Larry Finger
On 02/26/2017 12:52 PM, Colin King wrote: From: Colin Ian King trivial fix to spelling mistake in RT_TRACE message Signed-off-by: Colin Ian King --- drivers/net/wireless/realtek/rtlwifi/rtl8192de/phy.c | 2 +- 1 file changed, 1

  1   2   3   4   5   6   >