Re: [alsa-devel] [PATCH] ASoC: skl: always select SND_SOC_HDAC_HDA

2018-11-04 Thread Pierre-Louis Bossart
On 11/2/18 5:03 PM, Arnd Bergmann wrote: On 11/2/18, Pierre-Louis Bossart wrote: On 11/2/18 6:24 AM, Arnd Bergmann wrote: The skylake sound support is written to work both with or without CONFIG_SND_SOC_HDAC_HDA, and uses an #ifdef to decide whether it should link against that. However,

Re: [alsa-devel] [PATCH] ASoC: skl: always select SND_SOC_HDAC_HDA

2018-11-04 Thread Pierre-Louis Bossart
On 11/2/18 5:03 PM, Arnd Bergmann wrote: On 11/2/18, Pierre-Louis Bossart wrote: On 11/2/18 6:24 AM, Arnd Bergmann wrote: The skylake sound support is written to work both with or without CONFIG_SND_SOC_HDAC_HDA, and uses an #ifdef to decide whether it should link against that. However,

Re: [PATCH v3 4/6] staging:iio:ad2s90: Move device registration to the end of probe

2018-11-04 Thread Jonathan Cameron
On Sat, 3 Nov 2018 19:49:46 -0300 Matheus Tavares wrote: > Previously, devm_iio_device_register was being called before the > spi_setup call and the spi_device's max_speed_hz and mode assignments. > This could lead to a race condition since the driver was still being > set up after it was

Re: [PATCH v3 4/6] staging:iio:ad2s90: Move device registration to the end of probe

2018-11-04 Thread Jonathan Cameron
On Sat, 3 Nov 2018 19:49:46 -0300 Matheus Tavares wrote: > Previously, devm_iio_device_register was being called before the > spi_setup call and the spi_device's max_speed_hz and mode assignments. > This could lead to a race condition since the driver was still being > set up after it was

Re: [PATCH v7] i2c: Add PCI and platform drivers for the AMD MP2 I2C controller

2018-11-04 Thread Elie Morisse
The errors on module exit and the hang after a read/write timeout should be fixed in v8, someone else reported the same issue here: https://github.com/Syniurge/i2c-amd-mp2/issues/1 Weird that despite a lot of trying by doing random stuff with my touchpad and touchscreen neither never ever timed

[PATCH] ext4: remove code duplication in update_ind/bind/tind_extent_range

2018-11-04 Thread Vasily Averin
update_ind/bind/tind_extent_page() differs by one variable and can be replaced by unified function. These functions are called by similar way and their caller function can be simplified too. Signed-off-by: Vasily Averin --- fs/ext4/migrate.c | 111 ++

Re: [PATCH v7] i2c: Add PCI and platform drivers for the AMD MP2 I2C controller

2018-11-04 Thread Elie Morisse
The errors on module exit and the hang after a read/write timeout should be fixed in v8, someone else reported the same issue here: https://github.com/Syniurge/i2c-amd-mp2/issues/1 Weird that despite a lot of trying by doing random stuff with my touchpad and touchscreen neither never ever timed

[PATCH] ext4: remove code duplication in update_ind/bind/tind_extent_range

2018-11-04 Thread Vasily Averin
update_ind/bind/tind_extent_page() differs by one variable and can be replaced by unified function. These functions are called by similar way and their caller function can be simplified too. Signed-off-by: Vasily Averin --- fs/ext4/migrate.c | 111 ++

Re: [PATCH v3 3/6] staging:iio:ad2s90: Remove always overwritten assignment

2018-11-04 Thread Jonathan Cameron
On Sat, 3 Nov 2018 19:49:45 -0300 Matheus Tavares wrote: > This patch removes an initial assignment to the variable ret at probe, > that was always overwritten. > > Signed-off-by: Matheus Tavares Applied to the togreg branch of iio.git and pushed out as testing to see if we are both wrong and

Re: [PATCH v3 3/6] staging:iio:ad2s90: Remove always overwritten assignment

2018-11-04 Thread Jonathan Cameron
On Sat, 3 Nov 2018 19:49:45 -0300 Matheus Tavares wrote: > This patch removes an initial assignment to the variable ret at probe, > that was always overwritten. > > Signed-off-by: Matheus Tavares Applied to the togreg branch of iio.git and pushed out as testing to see if we are both wrong and

Re: [PATCH v3 2/6] staging:iio:ad2s90: Make probe handle spi_setup failure

2018-11-04 Thread Jonathan Cameron
On Sat, 3 Nov 2018 19:49:44 -0300 Matheus Tavares wrote: > Previously, ad2s90_probe ignored the return code from spi_setup, not > handling its possible failure. This patch makes ad2s90_probe check if > the code is an error code and, if so, do the following: > > - Call dev_err with an

Re: [PATCH v3 2/6] staging:iio:ad2s90: Make probe handle spi_setup failure

2018-11-04 Thread Jonathan Cameron
On Sat, 3 Nov 2018 19:49:44 -0300 Matheus Tavares wrote: > Previously, ad2s90_probe ignored the return code from spi_setup, not > handling its possible failure. This patch makes ad2s90_probe check if > the code is an error code and, if so, do the following: > > - Call dev_err with an

Re: [PATCH v3 1/6] staging:iio:ad2s90: Make read_raw return spi_read's error code

2018-11-04 Thread Jonathan Cameron
On Sat, 3 Nov 2018 19:49:43 -0300 Matheus Tavares wrote: > Previously, when spi_read returned an error code inside ad2s90_read_raw, > the code was ignored and IIO_VAL_INT was returned. This patch makes the > function return the error code returned by spi_read when it fails. > > Signed-off-by:

Re: [PATCH v3 1/6] staging:iio:ad2s90: Make read_raw return spi_read's error code

2018-11-04 Thread Jonathan Cameron
On Sat, 3 Nov 2018 19:49:43 -0300 Matheus Tavares wrote: > Previously, when spi_read returned an error code inside ad2s90_read_raw, > the code was ignored and IIO_VAL_INT was returned. This patch makes the > function return the error code returned by spi_read when it fails. > > Signed-off-by:

[RFC/RFT][PATCH v3] cpuidle: New timer events oriented governor for tickless systems

2018-11-04 Thread Rafael J. Wysocki
From: Rafael J. Wysocki The venerable menu governor does some thigns that are quite questionable in my view. First, it includes timer wakeups in the pattern detection data and mixes them up with wakeups from other sources which in some cases causes it to expect what essentially would be a timer

[RFC/RFT][PATCH v3] cpuidle: New timer events oriented governor for tickless systems

2018-11-04 Thread Rafael J. Wysocki
From: Rafael J. Wysocki The venerable menu governor does some thigns that are quite questionable in my view. First, it includes timer wakeups in the pattern detection data and mixes them up with wakeups from other sources which in some cases causes it to expect what essentially would be a timer

Re: [PATCH -next v2 0/3] sysvipc: introduce STAT_ANY commands

2018-11-04 Thread Michael Kerrisk (man-pages)
Hello Davidlohr, On 3/20/18 7:55 PM, Davidlohr Bueso wrote: > On Thu, 15 Feb 2018, Davidlohr Bueso wrote: > >> Once (if) merged, I will submit the necesary manpage updates. But I'm >> thinking something like: > > Hi Michael, here are the updated manpage entries. As always, please feel > free to

Re: [PATCH -next v2 0/3] sysvipc: introduce STAT_ANY commands

2018-11-04 Thread Michael Kerrisk (man-pages)
Hello Davidlohr, On 3/20/18 7:55 PM, Davidlohr Bueso wrote: > On Thu, 15 Feb 2018, Davidlohr Bueso wrote: > >> Once (if) merged, I will submit the necesary manpage updates. But I'm >> thinking something like: > > Hi Michael, here are the updated manpage entries. As always, please feel > free to

Re: [PATCH 0/8] Detach TPM space code out of the tpm_transmit() flow

2018-11-04 Thread Jarkko Sakkinen
On Sun, Nov 04, 2018 at 07:46:43AM +, Winkler, Tomas wrote: > > Subject: [PATCH 0/8] Detach TPM space code out of the tpm_transmit() flow > > You forgot to version your posts this should be V2 in the subject, right? > Thanks > Tomas Correct. Please hold with the review. I'll send soon v3.

Re: [PATCH 0/8] Detach TPM space code out of the tpm_transmit() flow

2018-11-04 Thread Jarkko Sakkinen
On Sun, Nov 04, 2018 at 07:46:43AM +, Winkler, Tomas wrote: > > Subject: [PATCH 0/8] Detach TPM space code out of the tpm_transmit() flow > > You forgot to version your posts this should be V2 in the subject, right? > Thanks > Tomas Correct. Please hold with the review. I'll send soon v3.

Re: [GIT PULL] Please pull NFS client bugfix for 4.20

2018-11-04 Thread Linus Torvalds
On Sun, Nov 4, 2018 at 5:56 AM Trond Myklebust wrote: > > NFS client bugfixes for Linux 4.20 Pulled, Linus

Re: [GIT PULL] Please pull NFS client bugfix for 4.20

2018-11-04 Thread Linus Torvalds
On Sun, Nov 4, 2018 at 5:56 AM Trond Myklebust wrote: > > NFS client bugfixes for Linux 4.20 Pulled, Linus

Re: [GIT pull] timer updates for 4.20-rc1

2018-11-04 Thread Linus Torvalds
On Sun, Nov 4, 2018 at 1:31 AM Thomas Gleixner wrote: > > A set of commits for the new C-SKY architecture timers. Pulled, Linus

Re: [GIT pull] timer updates for 4.20-rc1

2018-11-04 Thread Linus Torvalds
On Sun, Nov 4, 2018 at 1:31 AM Thomas Gleixner wrote: > > A set of commits for the new C-SKY architecture timers. Pulled, Linus

Re: [GIT PULL] NTB patches for v4.20

2018-11-04 Thread Linus Torvalds
On Sat, Nov 3, 2018 at 9:00 PM Jon Mason wrote: > > Here are a few NTB patches for v4.20. Fairly minor changes and bug > fixes. Pulled, Linus

Re: [GIT PULL] NTB patches for v4.20

2018-11-04 Thread Linus Torvalds
On Sat, Nov 3, 2018 at 9:00 PM Jon Mason wrote: > > Here are a few NTB patches for v4.20. Fairly minor changes and bug > fixes. Pulled, Linus

[PATCH v8] i2c: Add driver for the AMD PCIe MP2 I2C controller

2018-11-04 Thread Elie Morisse
I2C communication takes place through the iomapped C2P/P2C mailbox registers, or through DMA for more than 32 bytes transfers. MP2 controllers have two separate buses, so may accommodate up to two I2C adapters. Those adapters are listed in the ACPI namespace with the "AMDI0011" HID. This is

[PATCH v8] i2c: Add driver for the AMD PCIe MP2 I2C controller

2018-11-04 Thread Elie Morisse
I2C communication takes place through the iomapped C2P/P2C mailbox registers, or through DMA for more than 32 bytes transfers. MP2 controllers have two separate buses, so may accommodate up to two I2C adapters. Those adapters are listed in the ACPI namespace with the "AMDI0011" HID. This is

Re: [PATCH v7 4/5] clocksource: add driver for i.MX EPIT timer

2018-11-04 Thread Clément Péron
Hi Daniel, Thanks for the review and sorry for the delay. On Tue, 10 Jul 2018 at 18:20, Daniel Lezcano wrote: > > On 11/06/2018 17:50, Clément Péron wrote: > > From: Colin Didier > > > > Add driver for NXP's EPIT timer used in i.MX SoC. > > Give a description on how works this timer. Ok, > >

Re: [PATCH v7 4/5] clocksource: add driver for i.MX EPIT timer

2018-11-04 Thread Clément Péron
Hi Daniel, Thanks for the review and sorry for the delay. On Tue, 10 Jul 2018 at 18:20, Daniel Lezcano wrote: > > On 11/06/2018 17:50, Clément Péron wrote: > > From: Colin Didier > > > > Add driver for NXP's EPIT timer used in i.MX SoC. > > Give a description on how works this timer. Ok, > >

Re: [PATCH anybus v3 2/6] dt-bindings: Add vendor prefix for arcx / Archronix

2018-11-04 Thread Andreas Färber
Am 04.11.18 um 16:54 schrieb thesve...@gmail.com: > From: Sven Van Asbroeck > > arcx Inc. is an engineering company which provides advanced > embedded systems and consulting services. > > Archronix is a technology design and product engineering firm > specializing in hardware control systems

Re: [PATCH anybus v3 2/6] dt-bindings: Add vendor prefix for arcx / Archronix

2018-11-04 Thread Andreas Färber
Am 04.11.18 um 16:54 schrieb thesve...@gmail.com: > From: Sven Van Asbroeck > > arcx Inc. is an engineering company which provides advanced > embedded systems and consulting services. > > Archronix is a technology design and product engineering firm > specializing in hardware control systems

Re: [PATCH 2/5] mtd: rawnand: qcom: remove driver specific block_markbad function

2018-11-04 Thread Boris Brezillon
Hi Abhishek, On Fri, 20 Jul 2018 15:03:48 +0200 Boris Brezillon wrote: > On Fri, 20 Jul 2018 17:46:38 +0530 > Abhishek Sahu wrote: > > > Hi Boris, > > > > On 2018-07-19 03:13, Boris Brezillon wrote: > > > On Wed, 18 Jul 2018 23:23:50 +0200 > > > Miquel Raynal wrote: > > > > > >>

Re: [PATCH] arm64: dts: sdm845-mtp: Reserve reserved gpios

2018-11-04 Thread Linus Walleij
On Fri, Nov 2, 2018 at 10:42 PM Bjorn Andersson wrote: > With the introduction of commit 3edfb7bd76bd ("gpiolib: Show correct > direction from the beginning") the gpiolib will attempt to read the > direction of all pins, which triggers a read from protected register > regions. > > The pins 0

Re: [PATCH 2/5] mtd: rawnand: qcom: remove driver specific block_markbad function

2018-11-04 Thread Boris Brezillon
Hi Abhishek, On Fri, 20 Jul 2018 15:03:48 +0200 Boris Brezillon wrote: > On Fri, 20 Jul 2018 17:46:38 +0530 > Abhishek Sahu wrote: > > > Hi Boris, > > > > On 2018-07-19 03:13, Boris Brezillon wrote: > > > On Wed, 18 Jul 2018 23:23:50 +0200 > > > Miquel Raynal wrote: > > > > > >>

Re: [PATCH] arm64: dts: sdm845-mtp: Reserve reserved gpios

2018-11-04 Thread Linus Walleij
On Fri, Nov 2, 2018 at 10:42 PM Bjorn Andersson wrote: > With the introduction of commit 3edfb7bd76bd ("gpiolib: Show correct > direction from the beginning") the gpiolib will attempt to read the > direction of all pins, which triggers a read from protected register > regions. > > The pins 0

[PATCH anybus v3 6/6] misc: support HMS Profinet IRT industrial controller

2018-11-04 Thread thesven73
From: Sven Van Asbroeck The Anybus-S PROFINET IRT communication module provides instant integration to any Ethernet based LAN via SMTP, FTP, HTTP as well as PROFINET and Modbus-TCP. Additional protocols can be implemented on top of TCP/IP or UDP using the transparent socket interface. Official

[PATCH anybus v3 4/6] bus: support HMS Anybus-S bus

2018-11-04 Thread thesven73
From: Sven Van Asbroeck The Anybus-S/Anybus-M is a series of interchangeable fieldbus communication modules featuring on board memory and processing power. All software and hardware functionality required to communicate on the fieldbus is incorporated in the module itself, allowing the

[PATCH anybus v3 6/6] misc: support HMS Profinet IRT industrial controller

2018-11-04 Thread thesven73
From: Sven Van Asbroeck The Anybus-S PROFINET IRT communication module provides instant integration to any Ethernet based LAN via SMTP, FTP, HTTP as well as PROFINET and Modbus-TCP. Additional protocols can be implemented on top of TCP/IP or UDP using the transparent socket interface. Official

[PATCH anybus v3 4/6] bus: support HMS Anybus-S bus

2018-11-04 Thread thesven73
From: Sven Van Asbroeck The Anybus-S/Anybus-M is a series of interchangeable fieldbus communication modules featuring on board memory and processing power. All software and hardware functionality required to communicate on the fieldbus is incorporated in the module itself, allowing the

[PATCH anybus v3 3/6] dt-bindings: anybus-bridge: document devicetree binding

2018-11-04 Thread thesven73
From: Sven Van Asbroeck This patch adds devicetree binding documentation for the Arcx anybus bridge. Signed-off-by: Sven Van Asbroeck --- .../bindings/misc/arcx,anybus-bridge.txt | 34 +++ 1 file changed, 34 insertions(+) create mode 100644

[PATCH anybus v3 3/6] dt-bindings: anybus-bridge: document devicetree binding

2018-11-04 Thread thesven73
From: Sven Van Asbroeck This patch adds devicetree binding documentation for the Arcx anybus bridge. Signed-off-by: Sven Van Asbroeck --- .../bindings/misc/arcx,anybus-bridge.txt | 34 +++ 1 file changed, 34 insertions(+) create mode 100644

[PATCH anybus v3 1/6] misc: support the Arcx anybus bridge

2018-11-04 Thread thesven73
From: Sven Van Asbroeck Add a driver for the Arcx anybus bridge. This chip embeds up to two Anybus-S application connectors (slots), and connects to the SoC via a parallel memory bus. There is also a CAN power readout, unrelated to the Anybus, modelled as a regulator. Signed-off-by: Sven Van

[PATCH anybus v3 2/6] dt-bindings: Add vendor prefix for arcx / Archronix

2018-11-04 Thread thesven73
From: Sven Van Asbroeck arcx Inc. is an engineering company which provides advanced embedded systems and consulting services. Archronix is a technology design and product engineering firm specializing in hardware control systems and enabling software. Clients include OEM's in the

[PATCH anybus v3 5/6] dt-bindings: anybuss-host: document devicetree binding

2018-11-04 Thread thesven73
From: Sven Van Asbroeck This patch adds devicetree binding documentation for the Arcx Anybus-S host. Signed-off-by: Sven Van Asbroeck --- .../bindings/bus/arcx,anybuss-host.txt| 36 +++ 1 file changed, 36 insertions(+) create mode 100644

[PATCH anybus v3 0/6] Support HMS Profinet Card over Anybus

2018-11-04 Thread thesven73
From: Sven Van Asbroeck This patch set adds support for the HMS Industrial Networks AB Profinet card. Profinet is an industry technical standard for data communication over Industrial Ethernet, designed for collecting data from, and controlling, equipment in industrial systems, with a

[PATCH anybus v3 1/6] misc: support the Arcx anybus bridge

2018-11-04 Thread thesven73
From: Sven Van Asbroeck Add a driver for the Arcx anybus bridge. This chip embeds up to two Anybus-S application connectors (slots), and connects to the SoC via a parallel memory bus. There is also a CAN power readout, unrelated to the Anybus, modelled as a regulator. Signed-off-by: Sven Van

[PATCH anybus v3 2/6] dt-bindings: Add vendor prefix for arcx / Archronix

2018-11-04 Thread thesven73
From: Sven Van Asbroeck arcx Inc. is an engineering company which provides advanced embedded systems and consulting services. Archronix is a technology design and product engineering firm specializing in hardware control systems and enabling software. Clients include OEM's in the

[PATCH anybus v3 5/6] dt-bindings: anybuss-host: document devicetree binding

2018-11-04 Thread thesven73
From: Sven Van Asbroeck This patch adds devicetree binding documentation for the Arcx Anybus-S host. Signed-off-by: Sven Van Asbroeck --- .../bindings/bus/arcx,anybuss-host.txt| 36 +++ 1 file changed, 36 insertions(+) create mode 100644

[PATCH anybus v3 0/6] Support HMS Profinet Card over Anybus

2018-11-04 Thread thesven73
From: Sven Van Asbroeck This patch set adds support for the HMS Industrial Networks AB Profinet card. Profinet is an industry technical standard for data communication over Industrial Ethernet, designed for collecting data from, and controlling, equipment in industrial systems, with a

Re: [PATCH v5 2/3] clk: meson: add DT documentation for emmc clock controller

2018-11-04 Thread Jianxin Pan
Hi Stephen, Thank you for the review. On 2018/11/4 11:04, Stephen Boyd wrote: > Quoting Yixun Lan (2018-10-25 00:29:15) >> yes, I think the documentation need to be fixed >> >> for the final solution, we decide to make 'mmc-clkc' an independent node >> instead of being a sub-node of 'mmc', so

Re: [PATCH v5 2/3] clk: meson: add DT documentation for emmc clock controller

2018-11-04 Thread Jianxin Pan
Hi Stephen, Thank you for the review. On 2018/11/4 11:04, Stephen Boyd wrote: > Quoting Yixun Lan (2018-10-25 00:29:15) >> yes, I think the documentation need to be fixed >> >> for the final solution, we decide to make 'mmc-clkc' an independent node >> instead of being a sub-node of 'mmc', so

h94l8l8WeO0m8fU

2018-11-04 Thread Tsplhg
202.53.8.97

h94l8l8WeO0m8fU

2018-11-04 Thread Tsplhg
202.53.8.97

[PATCH V2 4/4] perf scripts python: exported-sql-viewer.py: Fix table find when table re-ordered

2018-11-04 Thread Adrian Hunter
Table rows can be re-ordered by selecting a column to sort by. After re-ordering, the "find" operation was highlighting the wrong row, fix it. Signed-off-by: Adrian Hunter --- tools/perf/scripts/python/exported-sql-viewer.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git

[PATCH V2 0/4] perf scripts python: exported-sql-viewer.py

2018-11-04 Thread Adrian Hunter
Hi Here is the libxed fix, the last 2 patches from last submission and another fix. Changes in V2: perf scripts python: call-graph-from-sql.py: Use SPDX license identifier perf scripts python: call-graph-from-sql.py: Provide better default column sizes perf scripts python:

[PATCH V2 1/4] perf scripts python: exported-sql-viewer.py: Fall back to /usr/local/lib/libxed.so

2018-11-04 Thread Adrian Hunter
Fall back to /usr/local/lib/libxed.so to cater for distributions that do not have /usr/local/lib in the library path by default. Signed-off-by: Adrian Hunter --- tools/perf/scripts/python/exported-sql-viewer.py | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git

[PATCH V2 3/4] perf scripts python: exported-sql-viewer.py: Add help window

2018-11-04 Thread Adrian Hunter
Add a window to display help. It is also possible to display the help only, by using the option "--help-only" instead of a database name. Signed-off-by: Adrian Hunter --- .../scripts/python/exported-sql-viewer.py | 155 +- 1 file changed, 154 insertions(+), 1 deletion(-)

[PATCH V2 2/4] perf scripts python: exported-sql-viewer.py: Add Selected branches report

2018-11-04 Thread Adrian Hunter
Fetching data from the database can be slow. Add a report that provides the ability to select a subset of branches. Signed-off-by: Adrian Hunter --- .../scripts/python/exported-sql-viewer.py | 327 ++ 1 file changed, 327 insertions(+) diff --git

[PATCH V2 1/4] perf scripts python: exported-sql-viewer.py: Fall back to /usr/local/lib/libxed.so

2018-11-04 Thread Adrian Hunter
Fall back to /usr/local/lib/libxed.so to cater for distributions that do not have /usr/local/lib in the library path by default. Signed-off-by: Adrian Hunter --- tools/perf/scripts/python/exported-sql-viewer.py | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git

[PATCH V2 3/4] perf scripts python: exported-sql-viewer.py: Add help window

2018-11-04 Thread Adrian Hunter
Add a window to display help. It is also possible to display the help only, by using the option "--help-only" instead of a database name. Signed-off-by: Adrian Hunter --- .../scripts/python/exported-sql-viewer.py | 155 +- 1 file changed, 154 insertions(+), 1 deletion(-)

[PATCH V2 2/4] perf scripts python: exported-sql-viewer.py: Add Selected branches report

2018-11-04 Thread Adrian Hunter
Fetching data from the database can be slow. Add a report that provides the ability to select a subset of branches. Signed-off-by: Adrian Hunter --- .../scripts/python/exported-sql-viewer.py | 327 ++ 1 file changed, 327 insertions(+) diff --git

[PATCH V2 4/4] perf scripts python: exported-sql-viewer.py: Fix table find when table re-ordered

2018-11-04 Thread Adrian Hunter
Table rows can be re-ordered by selecting a column to sort by. After re-ordering, the "find" operation was highlighting the wrong row, fix it. Signed-off-by: Adrian Hunter --- tools/perf/scripts/python/exported-sql-viewer.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git

[PATCH V2 0/4] perf scripts python: exported-sql-viewer.py

2018-11-04 Thread Adrian Hunter
Hi Here is the libxed fix, the last 2 patches from last submission and another fix. Changes in V2: perf scripts python: call-graph-from-sql.py: Use SPDX license identifier perf scripts python: call-graph-from-sql.py: Provide better default column sizes perf scripts python:

Re: [PATCH v6 1/3] clk: meson: add emmc sub clock phase delay driver

2018-11-04 Thread Jianxin Pan
Hi Stephen, Thanks for your review. Please see me comments below. On 2018/11/4 11:02, Stephen Boyd wrote: > Quoting Jianxin Pan (2018-11-01 09:30:53) >> diff --git a/drivers/clk/meson/clk-phase-delay.c >> b/drivers/clk/meson/clk-phase-delay.c >> new file mode 100644 >> index 000..83e74ed

Re: [PATCH v6 1/3] clk: meson: add emmc sub clock phase delay driver

2018-11-04 Thread Jianxin Pan
Hi Stephen, Thanks for your review. Please see me comments below. On 2018/11/4 11:02, Stephen Boyd wrote: > Quoting Jianxin Pan (2018-11-01 09:30:53) >> diff --git a/drivers/clk/meson/clk-phase-delay.c >> b/drivers/clk/meson/clk-phase-delay.c >> new file mode 100644 >> index 000..83e74ed

Re: [alsa-devel] [PATCH] ASoC: Intel: mrfld: fix uninitialized variable access

2018-11-04 Thread Pierre-Louis Bossart
On 11/3/18 4:21 PM, Arnd Bergmann wrote: Randconfig testing revealed a very old bug, with gcc-8: sound/soc/intel/atom/sst/sst_loader.c: In function 'sst_load_fw': sound/soc/intel/atom/sst/sst_loader.c:357:5: error: 'fw' may be used uninitialized in this function [-Werror=maybe-uninitialized]

Re: [alsa-devel] [PATCH] ASoC: Intel: mrfld: fix uninitialized variable access

2018-11-04 Thread Pierre-Louis Bossart
On 11/3/18 4:21 PM, Arnd Bergmann wrote: Randconfig testing revealed a very old bug, with gcc-8: sound/soc/intel/atom/sst/sst_loader.c: In function 'sst_load_fw': sound/soc/intel/atom/sst/sst_loader.c:357:5: error: 'fw' may be used uninitialized in this function [-Werror=maybe-uninitialized]

Re: [PATCH] ARM: dts: i.MX25: add the clocks for the EPIT blocks

2018-11-04 Thread Shawn Guo
On Thu, Nov 01, 2018 at 06:32:47PM +0100, Martin Kaiser wrote: > The i.MX25 contains two EPIT (Enhanced Periodic Interrupt Timer) > function blocks. Add their ipg and per clocks to the device tree. > > Signed-off-by: Martin Kaiser Are these EPIT devices actually used in upstream kernel, or just

Re: [PATCH] ARM: dts: i.MX25: add the clocks for the EPIT blocks

2018-11-04 Thread Shawn Guo
On Thu, Nov 01, 2018 at 06:32:47PM +0100, Martin Kaiser wrote: > The i.MX25 contains two EPIT (Enhanced Periodic Interrupt Timer) > function blocks. Add their ipg and per clocks to the device tree. > > Signed-off-by: Martin Kaiser Are these EPIT devices actually used in upstream kernel, or just

Update

2018-11-04 Thread Dr Kannan
Hello dear Greetings to you,I am Dr.Kannan, a personal account manager to Late Engr. Richard Hernandez, who died with his family in the missing Malaysian Air crash of 2014. His account with us is in intestate with no claim his fixed deposit of U$D 7 Million. I have been mandated by the Bank

Linux 4.14.79

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

Update

2018-11-04 Thread Dr Kannan
Hello dear Greetings to you,I am Dr.Kannan, a personal account manager to Late Engr. Richard Hernandez, who died with his family in the missing Malaysian Air crash of 2014. His account with us is in intestate with no claim his fixed deposit of U$D 7 Million. I have been mandated by the Bank

Linux 4.14.79

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

Re: [PATCH 15/15] power: supply: olpc_battery: Add OLPC XO 1.75 support

2018-11-04 Thread Pavel Machek
On Wed 2018-10-10 19:23:00, Lubomir Rintel wrote: > The battery and the protocol are essentially the same as OLPC XO 1.5, > but the responses from the EC are LSB first. > > Signed-off-by: Lubomir Rintel Acked-by: Pavel Machek -- (english) http://www.livejournal.com/~pavelmachek (cesky,

Re: [PATCH 15/15] power: supply: olpc_battery: Add OLPC XO 1.75 support

2018-11-04 Thread Pavel Machek
On Wed 2018-10-10 19:23:00, Lubomir Rintel wrote: > The battery and the protocol are essentially the same as OLPC XO 1.5, > but the responses from the EC are LSB first. > > Signed-off-by: Lubomir Rintel Acked-by: Pavel Machek -- (english) http://www.livejournal.com/~pavelmachek (cesky,

Re: [PATCH 14/15] power: supply: olpc_battery: Avoid using platform_info

2018-11-04 Thread Pavel Machek
On Wed 2018-10-10 19:22:59, Lubomir Rintel wrote: > This wouldn't work on the DT-based ARM platform. Let's read the EC version > directly from the EC driver instead. > > This makes the driver no longer x86 specific. > > Signed-off-by: Lubomir Rintel Acked-by: Pavel Machek -- (english)

Re: Linux 4.19.1

2018-11-04 Thread Greg KH
diff --git a/Makefile b/Makefile index 69fa5c0310d8..abcd8ca4966f 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-2.0 VERSION = 4 PATCHLEVEL = 19 -SUBLEVEL = 0 +SUBLEVEL = 1 EXTRAVERSION = NAME = "People's Front" diff --git

Linux 4.19.1

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

Re: [PATCH 14/15] power: supply: olpc_battery: Avoid using platform_info

2018-11-04 Thread Pavel Machek
On Wed 2018-10-10 19:22:59, Lubomir Rintel wrote: > This wouldn't work on the DT-based ARM platform. Let's read the EC version > directly from the EC driver instead. > > This makes the driver no longer x86 specific. > > Signed-off-by: Lubomir Rintel Acked-by: Pavel Machek -- (english)

Re: Linux 4.19.1

2018-11-04 Thread Greg KH
diff --git a/Makefile b/Makefile index 69fa5c0310d8..abcd8ca4966f 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-2.0 VERSION = 4 PATCHLEVEL = 19 -SUBLEVEL = 0 +SUBLEVEL = 1 EXTRAVERSION = NAME = "People's Front" diff --git

Linux 4.19.1

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

Linux 4.18.17

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

Linux 4.18.17

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

Re: [PATCH 13/15] power: supply: olpc_battery: Move priv data to a struct

2018-11-04 Thread Pavel Machek
Hi! > The global variables for private data are not too nice. I'd like some > more, and that would clutter the global name space even further. > > Signed-off-by: Lubomir Rintel > Reviewed-by: Andy Shevchenko Ok... > - olpc_bat = power_supply_register(>dev, _bat_desc, NULL); > - if

Re: [PATCH 13/15] power: supply: olpc_battery: Move priv data to a struct

2018-11-04 Thread Pavel Machek
Hi! > The global variables for private data are not too nice. I'd like some > more, and that would clutter the global name space even further. > > Signed-off-by: Lubomir Rintel > Reviewed-by: Andy Shevchenko Ok... > - olpc_bat = power_supply_register(>dev, _bat_desc, NULL); > - if

Re: [PATCH] tracing/fgraph: remove unnecessary unlikely()

2018-11-04 Thread Frank Lee
Sorry for this place, I should consider this situation. -- Yangtao On Sun, Nov 4, 2018 at 10:06 PM Steven Rostedt wrote: > > On Sat, 3 Nov 2018 22:35:37 -0400 > Yangtao Li wrote: > > > WARN_ON() already contains an unlikely(), so it's not necessary to use > > unlikely. > > NACK... see below. >

Re: [PATCH] tracing/fgraph: remove unnecessary unlikely()

2018-11-04 Thread Frank Lee
Sorry for this place, I should consider this situation. -- Yangtao On Sun, Nov 4, 2018 at 10:06 PM Steven Rostedt wrote: > > On Sat, 3 Nov 2018 22:35:37 -0400 > Yangtao Li wrote: > > > WARN_ON() already contains an unlikely(), so it's not necessary to use > > unlikely. > > NACK... see below. >

Re: [PATCH V2 3/3] ARM: dts: sabreauto: Add flexcan support

2018-11-04 Thread Shawn Guo
On Tue, Oct 30, 2018 at 08:42:47AM +, Joakim Zhang wrote: > From: Dong Aisheng > > The flexcan1 is pin conflict with fec. So we add a new dts file with > flexcan1 enabled with fec disabled for user to use. > > Signed-off-by: Dong Aisheng > Signed-off-by: Joakim Zhang We do not want to

Re: [PATCH V2 3/3] ARM: dts: sabreauto: Add flexcan support

2018-11-04 Thread Shawn Guo
On Tue, Oct 30, 2018 at 08:42:47AM +, Joakim Zhang wrote: > From: Dong Aisheng > > The flexcan1 is pin conflict with fec. So we add a new dts file with > flexcan1 enabled with fec disabled for user to use. > > Signed-off-by: Dong Aisheng > Signed-off-by: Joakim Zhang We do not want to

[PATCH AUTOSEL 4.19 04/57] mm: don't raise MEMCG_OOM event due to failed high-order allocation

2018-11-04 Thread Sasha Levin
From: Roman Gushchin [ Upstream commit 7a1adfddaf0d11a39fdcaf6e82a88e9c0586e08b ] It was reported that on some of our machines containers were restarted with OOM symptoms without an obvious reason. Despite there were almost no memory pressure and plenty of page cache, MEMCG_OOM event was

[PATCH AUTOSEL 4.19 04/57] mm: don't raise MEMCG_OOM event due to failed high-order allocation

2018-11-04 Thread Sasha Levin
From: Roman Gushchin [ Upstream commit 7a1adfddaf0d11a39fdcaf6e82a88e9c0586e08b ] It was reported that on some of our machines containers were restarted with OOM symptoms without an obvious reason. Despite there were almost no memory pressure and plenty of page cache, MEMCG_OOM event was

[PATCH AUTOSEL 4.19 06/57] userfaultfd: allow get_mempolicy(MPOL_F_NODE|MPOL_F_ADDR) to trigger userfaults

2018-11-04 Thread Sasha Levin
From: Andrea Arcangeli [ Upstream commit 3b9aadf7278d16d7bed4d5d808501065f70898d8 ] get_mempolicy(MPOL_F_NODE|MPOL_F_ADDR) called a get_user_pages that would not be waiting for userfaults before failing and it would hit on a SIGBUS instead. Using get_user_pages_locked/unlocked instead will

[PATCH AUTOSEL 4.19 07/57] mm: don't miss the last page because of round-off error

2018-11-04 Thread Sasha Levin
From: Roman Gushchin [ Upstream commit 68600f623d69da428c6163275f97ca126e1a8ec5 ] I've noticed, that dying memory cgroups are often pinned in memory by a single pagecache page. Even under moderate memory pressure they sometimes stayed in such state for a long time. That looked strange. My

[PATCH AUTOSEL 4.19 08/57] mm: don't warn about large allocations for slab

2018-11-04 Thread Sasha Levin
From: Dmitry Vyukov [ Upstream commit 61448479a9f2c954cde0cfe778cb6bec5d0a748d ] Slub does not call kmalloc_slab() for sizes > KMALLOC_MAX_CACHE_SIZE, instead it falls back to kmalloc_large(). For slab KMALLOC_MAX_CACHE_SIZE == KMALLOC_MAX_SIZE and it calls kmalloc_slab() for all allocations

[PATCH AUTOSEL 4.19 11/57] powerpc/64/module: REL32 relocation range check

2018-11-04 Thread Sasha Levin
From: Nicholas Piggin [ Upstream commit b851ba02a6f3075f0f99c60c4bc30a4af80cf428 ] The recent module relocation overflow crash demonstrated that we have no range checking on REL32 relative relocations. This patch implements a basic check, the same kernel that previously oopsed and rebooted now

[PATCH AUTOSEL 4.19 14/57] drm/amd/display: fix bug of accessing invalid memory

2018-11-04 Thread Sasha Levin
From: Su Sung Chung [ Upstream commit 43c3ff27a47d83d153c4adc088243ba594582bf5 ] [Why] A loop inside of build_evenly_distributed_points function that traverse through the array of points become an infinite loop when m_GammaUpdates does not get assigned to any value. [How] In DMColor, clear

[PATCH AUTOSEL 4.19 06/57] userfaultfd: allow get_mempolicy(MPOL_F_NODE|MPOL_F_ADDR) to trigger userfaults

2018-11-04 Thread Sasha Levin
From: Andrea Arcangeli [ Upstream commit 3b9aadf7278d16d7bed4d5d808501065f70898d8 ] get_mempolicy(MPOL_F_NODE|MPOL_F_ADDR) called a get_user_pages that would not be waiting for userfaults before failing and it would hit on a SIGBUS instead. Using get_user_pages_locked/unlocked instead will

[PATCH AUTOSEL 4.19 07/57] mm: don't miss the last page because of round-off error

2018-11-04 Thread Sasha Levin
From: Roman Gushchin [ Upstream commit 68600f623d69da428c6163275f97ca126e1a8ec5 ] I've noticed, that dying memory cgroups are often pinned in memory by a single pagecache page. Even under moderate memory pressure they sometimes stayed in such state for a long time. That looked strange. My

[PATCH AUTOSEL 4.19 08/57] mm: don't warn about large allocations for slab

2018-11-04 Thread Sasha Levin
From: Dmitry Vyukov [ Upstream commit 61448479a9f2c954cde0cfe778cb6bec5d0a748d ] Slub does not call kmalloc_slab() for sizes > KMALLOC_MAX_CACHE_SIZE, instead it falls back to kmalloc_large(). For slab KMALLOC_MAX_CACHE_SIZE == KMALLOC_MAX_SIZE and it calls kmalloc_slab() for all allocations

<    1   2   3   4   5   6   7   8   9   >