Re: [PATCH] checkpatch: Add __ro_after_init to known $Attribute

2018-08-27 Thread Kees Cook
On Mon, Aug 27, 2018 at 10:33 PM, Joe Perches wrote: > __ro_after_init is a specific __attribute__ that checkpatch > does currently not understand. > > Add it to the known $Attribute types so that code that uses > variables declared with __ro_after_init are not thought to > be a modifier type. >

Re: [PATCH] checkpatch: Add __ro_after_init to known $Attribute

2018-08-27 Thread Kees Cook
On Mon, Aug 27, 2018 at 10:33 PM, Joe Perches wrote: > __ro_after_init is a specific __attribute__ that checkpatch > does currently not understand. > > Add it to the known $Attribute types so that code that uses > variables declared with __ro_after_init are not thought to > be a modifier type. >

[PATCH] Input: Support for Xbox1 PDP Camo series gamepad

2018-08-27 Thread Ramses Ramírez
The "Xbox One PDP Wired Controller - Camo series" has a different product-id than the regular PDP controller and the PDP stealth series, but it uses the same initialization sequence. This patch adds the product-id of the camo series to the structures that handle the other PDP Xbox One controllers.

[PATCH] Input: Support for Xbox1 PDP Camo series gamepad

2018-08-27 Thread Ramses Ramírez
The "Xbox One PDP Wired Controller - Camo series" has a different product-id than the regular PDP controller and the PDP stealth series, but it uses the same initialization sequence. This patch adds the product-id of the camo series to the structures that handle the other PDP Xbox One controllers.

[PATCH] arm64: dts: msm8996: Transition smp2p and smd to mailbox

2018-08-27 Thread Bjorn Andersson
The smd and smp2p drivers now support accessing the APCS GLOBAL IPC register through the mailbox framework, so migrate the msm8996 dts to use this and remove the syscon based APCS node. Signed-off-by: Bjorn Andersson --- arch/arm64/boot/dts/qcom/msm8996.dtsi | 13 - 1 file changed,

[PATCH] arm64: dts: msm8996: Transition smp2p and smd to mailbox

2018-08-27 Thread Bjorn Andersson
The smd and smp2p drivers now support accessing the APCS GLOBAL IPC register through the mailbox framework, so migrate the msm8996 dts to use this and remove the syscon based APCS node. Signed-off-by: Bjorn Andersson --- arch/arm64/boot/dts/qcom/msm8996.dtsi | 13 - 1 file changed,

[PATCH] checkpatch: Add __ro_after_init to known $Attribute

2018-08-27 Thread Joe Perches
__ro_after_init is a specific __attribute__ that checkpatch does currently not understand. Add it to the known $Attribute types so that code that uses variables declared with __ro_after_init are not thought to be a modifier type. This appears as a defect in checkpatch output of code like:

[PATCH] checkpatch: Add __ro_after_init to known $Attribute

2018-08-27 Thread Joe Perches
__ro_after_init is a specific __attribute__ that checkpatch does currently not understand. Add it to the known $Attribute types so that code that uses variables declared with __ro_after_init are not thought to be a modifier type. This appears as a defect in checkpatch output of code like:

How to debug outliers in `wb_wait_for_completion()` in `ksys_sync()`?

2018-08-27 Thread Paul Menzel
Dear Linux folks, Using `sleepgraph.py` [1][2] to profile the suspend to RAM (STR) times, shows that `ksys_enter` takes a noticeable amount of time. 13 ms on a TUXEDO Book BU1406 with the NVMe device *SAMSUNG MZVKW512HMJP-0*, which is quite good, and over a 60 ms on ASRock E350M1 with

How to debug outliers in `wb_wait_for_completion()` in `ksys_sync()`?

2018-08-27 Thread Paul Menzel
Dear Linux folks, Using `sleepgraph.py` [1][2] to profile the suspend to RAM (STR) times, shows that `ksys_enter` takes a noticeable amount of time. 13 ms on a TUXEDO Book BU1406 with the NVMe device *SAMSUNG MZVKW512HMJP-0*, which is quite good, and over a 60 ms on ASRock E350M1 with

Re: [PATCH] dmaengine: Convert to using %pOFn instead of device_node.name

2018-08-27 Thread Vinod
On 27-08-18, 20:52, Rob Herring wrote: > In preparation to remove the node name pointer from struct device_node, > convert printf users to use the %pOFn format specifier. > > Cc: Dan Williams > Cc: Vinod Koul > Cc: dmaeng...@vger.kernel.org Applied after dropping CC list. thanks -- ~Vinod

Re: [PATCH] dmaengine: Convert to using %pOFn instead of device_node.name

2018-08-27 Thread Vinod
On 27-08-18, 20:52, Rob Herring wrote: > In preparation to remove the node name pointer from struct device_node, > convert printf users to use the %pOFn format specifier. > > Cc: Dan Williams > Cc: Vinod Koul > Cc: dmaeng...@vger.kernel.org Applied after dropping CC list. thanks -- ~Vinod

Re: [PATCH 4.4 0/5] 4.4.153-stable review

2018-08-27 Thread Greg Kroah-Hartman
On Mon, Aug 27, 2018 at 02:29:08PM -0600, Shuah Khan wrote: > On 08/26/2018 12:42 AM, Greg Kroah-Hartman wrote: > > This is the start of the stable review cycle for the 4.4.153 release. > > There are 5 patches in this series, all will be posted as a response > > to this one. If anyone has any

Re: [PATCH 4.4 0/5] 4.4.153-stable review

2018-08-27 Thread Greg Kroah-Hartman
On Mon, Aug 27, 2018 at 02:29:08PM -0600, Shuah Khan wrote: > On 08/26/2018 12:42 AM, Greg Kroah-Hartman wrote: > > This is the start of the stable review cycle for the 4.4.153 release. > > There are 5 patches in this series, all will be posted as a response > > to this one. If anyone has any

Re: [PATCH] x86/irqflags: mark native_restore_fl extern inline

2018-08-27 Thread Greg Kroah-Hartman
On Mon, Aug 27, 2018 at 02:40:09PM -0700, Nick Desaulniers wrote: > Fixes commit 208cbb325589 ("x86/irqflags: Provide a declaration for > native_save_fl") > > This should have been marked extern inline in order to pick up the out > of line definition in arch/x86/kernel/irqflags.S. > > Cc:

Re: [PATCH] x86/irqflags: mark native_restore_fl extern inline

2018-08-27 Thread Greg Kroah-Hartman
On Mon, Aug 27, 2018 at 02:40:09PM -0700, Nick Desaulniers wrote: > Fixes commit 208cbb325589 ("x86/irqflags: Provide a declaration for > native_save_fl") > > This should have been marked extern inline in order to pick up the out > of line definition in arch/x86/kernel/irqflags.S. > > Cc:

[PATCH] arm64: defconfig: Enable Qualcomm QRTR

2018-08-27 Thread Bjorn Andersson
The QRTR packet family is used for a wide range of communication between services in Qualcomm platforms. Examples of services using this transport for communication are remoteproc management, modem control, positioning, power management and WiFi. Signed-off-by: Bjorn Andersson ---

[PATCH] arm64: defconfig: Enable Qualcomm QRTR

2018-08-27 Thread Bjorn Andersson
The QRTR packet family is used for a wide range of communication between services in Qualcomm platforms. Examples of services using this transport for communication are remoteproc management, modem control, positioning, power management and WiFi. Signed-off-by: Bjorn Andersson ---

Re: checkpatch.pl bug? (was Re: [PATCH] random: Make CPU trust a boot parameter)

2018-08-27 Thread Joe Perches
On Mon, 2018-08-27 at 14:55 -0700, Kees Cook wrote: > On Mon, Aug 27, 2018 at 2:51 PM, Kees Cook wrote: > > Instead of forcing a distro or other system builder to choose > > at build time whether the CPU is trusted for CRNG seeding via > > CONFIG_RANDOM_TRUST_CPU, provide a boot-time parameter

Re: checkpatch.pl bug? (was Re: [PATCH] random: Make CPU trust a boot parameter)

2018-08-27 Thread Joe Perches
On Mon, 2018-08-27 at 14:55 -0700, Kees Cook wrote: > On Mon, Aug 27, 2018 at 2:51 PM, Kees Cook wrote: > > Instead of forcing a distro or other system builder to choose > > at build time whether the CPU is trusted for CRNG seeding via > > CONFIG_RANDOM_TRUST_CPU, provide a boot-time parameter

[PATCH] remoteproc: qcom: Rename Hexagon v5 PAS driver

2018-08-27 Thread Bjorn Andersson
The Hexagon v5 ADSP driver is used for more than only the ADSP and there's an upcoming non-PAS ADSP PIL for SDM845, so rename the driver to qcom_q6v5_pas in order to better suite this. Cc: Rohit kumar Signed-off-by: Bjorn Andersson --- drivers/remoteproc/Kconfig| 22

[PATCH] remoteproc: qcom: Rename Hexagon v5 PAS driver

2018-08-27 Thread Bjorn Andersson
The Hexagon v5 ADSP driver is used for more than only the ADSP and there's an upcoming non-PAS ADSP PIL for SDM845, so rename the driver to qcom_q6v5_pas in order to better suite this. Cc: Rohit kumar Signed-off-by: Bjorn Andersson --- drivers/remoteproc/Kconfig| 22

[PATCH] soc: qcom: rmtfs-mem: Validate that scm is available

2018-08-27 Thread Bjorn Andersson
The scm device must be present in order for the rmtfs driver to configure memory permissions for the rmtfs memory region, so check that it is probed before continuing. Cc: sta...@vger.kernel.org Fixes: fa65f8045137 ("soc: qcom: rmtfs-mem: Add support for assigning memory to remote")

[PATCH] soc: qcom: rmtfs-mem: Validate that scm is available

2018-08-27 Thread Bjorn Andersson
The scm device must be present in order for the rmtfs driver to configure memory permissions for the rmtfs memory region, so check that it is probed before continuing. Cc: sta...@vger.kernel.org Fixes: fa65f8045137 ("soc: qcom: rmtfs-mem: Add support for assigning memory to remote")

[PATCH] lib/genalloc.c: Fix trivial typo

2018-08-27 Thread Nikolas Nyby
This fixes a typo in the gen_pool_best_fit docs. Signed-off-by: Nikolas Nyby --- lib/genalloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/genalloc.c b/lib/genalloc.c index ca06adc4f445..d8f534db5562 100644 --- a/lib/genalloc.c +++ b/lib/genalloc.c @@ -611,7 +611,7

[PATCH] lib/genalloc.c: Fix trivial typo

2018-08-27 Thread Nikolas Nyby
This fixes a typo in the gen_pool_best_fit docs. Signed-off-by: Nikolas Nyby --- lib/genalloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/genalloc.c b/lib/genalloc.c index ca06adc4f445..d8f534db5562 100644 --- a/lib/genalloc.c +++ b/lib/genalloc.c @@ -611,7 +611,7

[PATCH] irqchip/gic-v3-its: cap lpi_id_bits to reduce memory footprint

2018-08-27 Thread Jia He
In commit fe8e93504ce8 ("irqchip/gic-v3-its: Use full range of LPIs"), it removes the cap for lpi_id_bits. But it will cause more pointless memory footprint. There is a WARN_ON when my QDF2400 server boots up (pagesize is 4k) begin=== [0.00] GICv3: GIC: Using split

[PATCH] irqchip/gic-v3-its: cap lpi_id_bits to reduce memory footprint

2018-08-27 Thread Jia He
In commit fe8e93504ce8 ("irqchip/gic-v3-its: Use full range of LPIs"), it removes the cap for lpi_id_bits. But it will cause more pointless memory footprint. There is a WARN_ON when my QDF2400 server boots up (pagesize is 4k) begin=== [0.00] GICv3: GIC: Using split

Re: [PATCH] sysctl: do not allow a 64bit value write in a 32bit knob

2018-08-27 Thread kbuild test robot
Hi Aristeu, Thank you for the patch! Perhaps something to improve: [auto build test WARNING on linus/master] [also build test WARNING on v4.19-rc1 next-20180827] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url: https://github.com/0day

Re: [PATCH] sysctl: do not allow a 64bit value write in a 32bit knob

2018-08-27 Thread kbuild test robot
Hi Aristeu, Thank you for the patch! Perhaps something to improve: [auto build test WARNING on linus/master] [also build test WARNING on v4.19-rc1 next-20180827] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url: https://github.com/0day

Re: mmotm 2018-08-23-17-26 uploaded

2018-08-27 Thread Jia He
Hi Andrew FYI,I watched a lockdep warning based on your mmotm master branch[1] [6.692731] [ cut here ] [6.696391] DEBUG_LOCKS_WARN_ON(!current->hardirqs_enabled) [6.696404] WARNING: CPU: 3 PID: 320 at kernel/locking/lockdep.c:3845 check_flags.part.38+0x9c/0x16c

Re: mmotm 2018-08-23-17-26 uploaded

2018-08-27 Thread Jia He
Hi Andrew FYI,I watched a lockdep warning based on your mmotm master branch[1] [6.692731] [ cut here ] [6.696391] DEBUG_LOCKS_WARN_ON(!current->hardirqs_enabled) [6.696404] WARNING: CPU: 3 PID: 320 at kernel/locking/lockdep.c:3845 check_flags.part.38+0x9c/0x16c

[PATCH] component: fix loop condition to call unbind() if bind() fails

2018-08-27 Thread bgoswami
From: Banajit Goswami During component_bind_all(), if bind() fails for any particular component associated with a master, unbind() should be called for all previous components in that master's match array, whose bind() might have completed successfully. As per the current logic, if bind() fails

[PATCH] component: fix loop condition to call unbind() if bind() fails

2018-08-27 Thread bgoswami
From: Banajit Goswami During component_bind_all(), if bind() fails for any particular component associated with a master, unbind() should be called for all previous components in that master's match array, whose bind() might have completed successfully. As per the current logic, if bind() fails

[PATCH] perf trace beautify: Beautify flags of mount(2) and umount(2).

2018-08-27 Thread Benjamin Peterson
Example output of perf trace -e mount,umount2: 6243.930 ( 0.052 ms): mount/30976 mount(dev_name: 0x55dc541bb920, dir_name: 0x55dc541bc960, type: 0x55dc541b9c40, flags: BIND) = 0 7851.821 (26.015 ms): umount/30983 umount2(name: 0x558daa82cf50, flags: MNT_FORCE) = 0

[PATCH] perf trace beautify: Beautify flags of mount(2) and umount(2).

2018-08-27 Thread Benjamin Peterson
Example output of perf trace -e mount,umount2: 6243.930 ( 0.052 ms): mount/30976 mount(dev_name: 0x55dc541bb920, dir_name: 0x55dc541bc960, type: 0x55dc541b9c40, flags: BIND) = 0 7851.821 (26.015 ms): umount/30983 umount2(name: 0x558daa82cf50, flags: MNT_FORCE) = 0

Re: [RFC PATCH 5/6] arm64: dts: ti: Add Support for AM654 SoC

2018-08-27 Thread Kishon Vijay Abraham I
Hi, On Tuesday 28 August 2018 06:52 AM, Nishanth Menon wrote: > On 15:55-20180827, Tony Lindgren wrote: >> * Kishon Vijay Abraham I [180827 03:06]: >>> Hi Tony, >>> >>> On Monday 20 August 2018 08:01 PM, Tony Lindgren wrote: >>>> * Kishon Vijay Abr

Re: [RFC PATCH 5/6] arm64: dts: ti: Add Support for AM654 SoC

2018-08-27 Thread Kishon Vijay Abraham I
Hi, On Tuesday 28 August 2018 06:52 AM, Nishanth Menon wrote: > On 15:55-20180827, Tony Lindgren wrote: >> * Kishon Vijay Abraham I [180827 03:06]: >>> Hi Tony, >>> >>> On Monday 20 August 2018 08:01 PM, Tony Lindgren wrote: >>>> * Kishon Vijay Abr

Re: [PATCH 2/2] clk: meson-g12a: Add AO Clock controller driver

2018-08-27 Thread Jian Hu
Hi: Jerome On 2018/8/27 21:07, Jerome Brunet wrote: On Fri, 2018-08-24 at 21:34 +0800, Jian Hu wrote: I am confued about aoclk81's parent clocks. I can not get the example of axg audio clock driver, Could you provide the link? Had it merged into clk-meson.git? Yes and mainline as well :

Re: [PATCH 2/2] clk: meson-g12a: Add AO Clock controller driver

2018-08-27 Thread Jian Hu
Hi: Jerome On 2018/8/27 21:07, Jerome Brunet wrote: On Fri, 2018-08-24 at 21:34 +0800, Jian Hu wrote: I am confued about aoclk81's parent clocks. I can not get the example of axg audio clock driver, Could you provide the link? Had it merged into clk-meson.git? Yes and mainline as well :

Finanzielle Hilfe (Darlehen)

2018-08-27 Thread Citi Bank
-- Schönen Tag Dame / Herr,       Brauchen Sie finanzielle Hilfe (Darlehen)? Ob es sich um Privat- oder Firmenkredite handelt, sprechen Sie mit uns bei CITI BANK (TÜRKEI), wir werden Ihre finanziellen Probleme lösen. Unser Zinssatz beträgt 1,3%. Bitte bewerben Sie sich jetzt und füllen Sie

Finanzielle Hilfe (Darlehen)

2018-08-27 Thread Citi Bank
-- Schönen Tag Dame / Herr,       Brauchen Sie finanzielle Hilfe (Darlehen)? Ob es sich um Privat- oder Firmenkredite handelt, sprechen Sie mit uns bei CITI BANK (TÜRKEI), wir werden Ihre finanziellen Probleme lösen. Unser Zinssatz beträgt 1,3%. Bitte bewerben Sie sich jetzt und füllen Sie

Re: [PATCH v2 1/5] drivers: pinctrl: qcom: add wakeup capability to GPIO

2018-08-27 Thread Bjorn Andersson
On Mon 27 Aug 18:46 PDT 2018, Lina Iyer wrote: > On Mon, Aug 27 2018 at 18:26 -0600, Bjorn Andersson wrote: > > On Mon 27 Aug 09:56 PDT 2018, Lina Iyer wrote: [..] > > > Thanks, I will look into Hans's RFCv2. But what would help me would be > > > to avoid creating the IRQ for the GPIO itself (I

Re: [PATCH v2 1/5] drivers: pinctrl: qcom: add wakeup capability to GPIO

2018-08-27 Thread Bjorn Andersson
On Mon 27 Aug 18:46 PDT 2018, Lina Iyer wrote: > On Mon, Aug 27 2018 at 18:26 -0600, Bjorn Andersson wrote: > > On Mon 27 Aug 09:56 PDT 2018, Lina Iyer wrote: [..] > > > Thanks, I will look into Hans's RFCv2. But what would help me would be > > > to avoid creating the IRQ for the GPIO itself (I

Re: [PATCH 2/2] iio: adc: sc27xx: Add ADC scale calibration

2018-08-27 Thread Baolin Wang
Hi Jonathan, On 25 August 2018 at 16:43, Jonathan Cameron wrote: > On Fri, 24 Aug 2018 17:53:16 +0800 > Baolin Wang wrote: > >> This patch adds support to read calibration values from the eFuse >> controller to calibrate the ADC channel scales, which can make ADC >> sample data more accurate.

Re: [PATCH 2/2] iio: adc: sc27xx: Add ADC scale calibration

2018-08-27 Thread Baolin Wang
Hi Jonathan, On 25 August 2018 at 16:43, Jonathan Cameron wrote: > On Fri, 24 Aug 2018 17:53:16 +0800 > Baolin Wang wrote: > >> This patch adds support to read calibration values from the eFuse >> controller to calibrate the ADC channel scales, which can make ADC >> sample data more accurate.

Re: [PATCH 1/2] iio: adc: sc27xx: Add raw data support

2018-08-27 Thread Baolin Wang
Hi Jonathan, On 25 August 2018 at 16:38, Jonathan Cameron wrote: > On Fri, 24 Aug 2018 17:53:15 +0800 > Baolin Wang wrote: > >> The headset device will use channel 20 of ADC controller to detect events, >> but it needs the raw ADC data to do conversion according to its own formula. >> >> Thus

Re: [PATCH 1/2] iio: adc: sc27xx: Add raw data support

2018-08-27 Thread Baolin Wang
Hi Jonathan, On 25 August 2018 at 16:38, Jonathan Cameron wrote: > On Fri, 24 Aug 2018 17:53:15 +0800 > Baolin Wang wrote: > >> The headset device will use channel 20 of ADC controller to detect events, >> but it needs the raw ADC data to do conversion according to its own formula. >> >> Thus

Re: [PATCH] rpmsg: Convert to using %pOFn instead of device_node.name

2018-08-27 Thread Bjorn Andersson
On Mon 27 Aug 18:52 PDT 2018, Rob Herring wrote: > In preparation to remove the node name pointer from struct device_node, > convert printf users to use the %pOFn format specifier. > > Cc: Ohad Ben-Cohen > Cc: Bjorn Andersson > Cc: linux-remotep...@vger.kernel.org > Signed-off-by: Rob Herring

Re: [PATCH] rpmsg: Convert to using %pOFn instead of device_node.name

2018-08-27 Thread Bjorn Andersson
On Mon 27 Aug 18:52 PDT 2018, Rob Herring wrote: > In preparation to remove the node name pointer from struct device_node, > convert printf users to use the %pOFn format specifier. > > Cc: Ohad Ben-Cohen > Cc: Bjorn Andersson > Cc: linux-remotep...@vger.kernel.org > Signed-off-by: Rob Herring

Re: [PATCH v2 2/6] reset: qcom: PDC Global (Power Domain Controller) reset controller

2018-08-27 Thread Bjorn Andersson
On Mon 27 Aug 17:22 PDT 2018, Matthias Kaehlcke wrote: > On Fri, Aug 24, 2018 at 06:48:56PM +0530, Sibi Sankar wrote: > > diff --git a/drivers/reset/reset-qcom-pdc.c b/drivers/reset/reset-qcom-pdc.c [..] > > +struct qcom_pdc_desc { > > + const struct regmap_config *config; > > + const struct

Re: [PATCH v2 2/6] reset: qcom: PDC Global (Power Domain Controller) reset controller

2018-08-27 Thread Bjorn Andersson
On Mon 27 Aug 17:22 PDT 2018, Matthias Kaehlcke wrote: > On Fri, Aug 24, 2018 at 06:48:56PM +0530, Sibi Sankar wrote: > > diff --git a/drivers/reset/reset-qcom-pdc.c b/drivers/reset/reset-qcom-pdc.c [..] > > +struct qcom_pdc_desc { > > + const struct regmap_config *config; > > + const struct

Re: [PATCH v2 4/4] userfaultfd: selftest: Cope if shmem doesn't support zeropage

2018-08-27 Thread Thiago Jung Bauermann
Hello Mike, Mike Rapoport writes: > Hi, > > On Fri, Aug 03, 2018 at 07:00:46PM -0300, Thiago Jung Bauermann wrote: >> If userfaultfd runs on a system that doesn't support UFFDIO_ZEROPAGE for >> shared memory, it currently ends with error code 1 which indicates test >> failure: >> >> #

Re: [PATCH v2 4/4] userfaultfd: selftest: Cope if shmem doesn't support zeropage

2018-08-27 Thread Thiago Jung Bauermann
Hello Mike, Mike Rapoport writes: > Hi, > > On Fri, Aug 03, 2018 at 07:00:46PM -0300, Thiago Jung Bauermann wrote: >> If userfaultfd runs on a system that doesn't support UFFDIO_ZEROPAGE for >> shared memory, it currently ends with error code 1 which indicates test >> failure: >> >> #

Re: linux-next: new maintainer/tree for the libata tree?

2018-08-27 Thread Stephen Rothwell
Hi Jens, On Mon, 27 Aug 2018 19:30:09 -0600 Jens Axboe wrote: > > On 8/27/18 7:28 PM, Stephen Rothwell wrote: > > > > On Mon, 27 Aug 2018 19:15:23 -0600 Jens Axboe wrote: > >> > >> On 8/27/18 3:20 PM, Stephen Rothwell wrote: > >>> > >>> I noticed the maintaership change - so what shuld I

Re: linux-next: new maintainer/tree for the libata tree?

2018-08-27 Thread Stephen Rothwell
Hi Jens, On Mon, 27 Aug 2018 19:30:09 -0600 Jens Axboe wrote: > > On 8/27/18 7:28 PM, Stephen Rothwell wrote: > > > > On Mon, 27 Aug 2018 19:15:23 -0600 Jens Axboe wrote: > >> > >> On 8/27/18 3:20 PM, Stephen Rothwell wrote: > >>> > >>> I noticed the maintaership change - so what shuld I

Re: [ANNOUNCE] 4.14.63-rt40

2018-08-27 Thread Steven Rostedt
On Fri, 24 Aug 2018 12:17:51 -0400 Steven Rostedt wrote: > On Fri, 24 Aug 2018 18:14:43 +0200 > Bernhard Landauer wrote: > > > Hello everyone, > > > > for some reason I am not able to build 4.14.63-rt40 for Manjarolinux. > > Even after removing all our custom patches build fails at > > > >  

Re: [ANNOUNCE] 4.14.63-rt40

2018-08-27 Thread Steven Rostedt
On Fri, 24 Aug 2018 12:17:51 -0400 Steven Rostedt wrote: > On Fri, 24 Aug 2018 18:14:43 +0200 > Bernhard Landauer wrote: > > > Hello everyone, > > > > for some reason I am not able to build 4.14.63-rt40 for Manjarolinux. > > Even after removing all our custom patches build fails at > > > >  

Re: [RESEND PATCH v2 0/2] Add support for ZSTD-compressed kernel

2018-08-27 Thread Nick Terrell
On Aug 17, 2018, at 1:07 PM, Adam Borowski wrote: > On Fri, Aug 17, 2018 at 12:22:44PM -0700, Andi Kleen wrote: >> On Fri, Aug 17, 2018 at 07:57:46PM +0200, Adam Borowski wrote: The "favourite compressor" seems to roughly change every year, so if we keep adding new ones things will get

Re: [RESEND PATCH v2 0/2] Add support for ZSTD-compressed kernel

2018-08-27 Thread Nick Terrell
On Aug 17, 2018, at 1:07 PM, Adam Borowski wrote: > On Fri, Aug 17, 2018 at 12:22:44PM -0700, Andi Kleen wrote: >> On Fri, Aug 17, 2018 at 07:57:46PM +0200, Adam Borowski wrote: The "favourite compressor" seems to roughly change every year, so if we keep adding new ones things will get

RE: [PATCH 2/2] soc: imx: gpcv2: make pgc driver more generic for other i.MX platforms

2018-08-27 Thread Anson Huang
Hi, Andrey Anson Huang Best Regards! > -Original Message- > From: Andrey Smirnov > Sent: Tuesday, August 28, 2018 7:04 AM > To: Anson Huang > Cc: Shawn Guo ; Sascha Hauer > ; Sascha Hauer ; Fabio > Estevam ; linux-arm-kernel > ; linux-kernel > ; dl-linux-imx > Subject: Re: [PATCH

RE: [PATCH 2/2] soc: imx: gpcv2: make pgc driver more generic for other i.MX platforms

2018-08-27 Thread Anson Huang
Hi, Andrey Anson Huang Best Regards! > -Original Message- > From: Andrey Smirnov > Sent: Tuesday, August 28, 2018 7:04 AM > To: Anson Huang > Cc: Shawn Guo ; Sascha Hauer > ; Sascha Hauer ; Fabio > Estevam ; linux-arm-kernel > ; linux-kernel > ; dl-linux-imx > Subject: Re: [PATCH

Re: Fix 80d20d35af1e ("nohz: Fix local_timer_softirq_pending()") may have revealed another problem

2018-08-27 Thread Frederic Weisbecker
On Fri, Aug 24, 2018 at 07:06:32PM +0200, Heiner Kallweit wrote: > On 24.08.2018 16:30, Frederic Weisbecker wrote: > >> Can you try the one I posted in this thread: > >> > >> > >> https://lkml.kernel.org/r/alpine.deb.2.21.1808240851420.1...@nanos.tec.linutronix.de > >> > >> Also below for

Re: Fix 80d20d35af1e ("nohz: Fix local_timer_softirq_pending()") may have revealed another problem

2018-08-27 Thread Frederic Weisbecker
On Fri, Aug 24, 2018 at 07:06:32PM +0200, Heiner Kallweit wrote: > On 24.08.2018 16:30, Frederic Weisbecker wrote: > >> Can you try the one I posted in this thread: > >> > >> > >> https://lkml.kernel.org/r/alpine.deb.2.21.1808240851420.1...@nanos.tec.linutronix.de > >> > >> Also below for

Re: [PATCH] x86/nmi: Fix some races in NMI uaccess

2018-08-27 Thread Andy Lutomirski
On Mon, Aug 27, 2018 at 6:31 PM, Rik van Riel wrote: > On Mon, 2018-08-27 at 16:04 -0700, Andy Lutomirski wrote: > >> +++ b/arch/x86/mm/tlb.c >> @@ -345,6 +345,9 @@ void switch_mm_irqs_off(struct mm_struct *prev, >> struct mm_struct *next, >>*/ >>

Re: [PATCH] x86/nmi: Fix some races in NMI uaccess

2018-08-27 Thread Andy Lutomirski
On Mon, Aug 27, 2018 at 6:31 PM, Rik van Riel wrote: > On Mon, 2018-08-27 at 16:04 -0700, Andy Lutomirski wrote: > >> +++ b/arch/x86/mm/tlb.c >> @@ -345,6 +345,9 @@ void switch_mm_irqs_off(struct mm_struct *prev, >> struct mm_struct *next, >>*/ >>

Re: [PATCH] devfreq: Convert to using %pOFn instead of device_node.name

2018-08-27 Thread Chanwoo Choi
Dear Rob, On 2018년 08월 28일 10:52, Rob Herring wrote: > In preparation to remove the node name pointer from struct device_node, > convert printf users to use the %pOFn format specifier. > > Cc: Chanwoo Choi > Cc: MyungJoo Ham > Cc: Kyungmin Park > Cc: Kukjin Kim > Cc: Krzysztof Kozlowski >

Re: [PATCH] devfreq: Convert to using %pOFn instead of device_node.name

2018-08-27 Thread Chanwoo Choi
Dear Rob, On 2018년 08월 28일 10:52, Rob Herring wrote: > In preparation to remove the node name pointer from struct device_node, > convert printf users to use the %pOFn format specifier. > > Cc: Chanwoo Choi > Cc: MyungJoo Ham > Cc: Kyungmin Park > Cc: Kukjin Kim > Cc: Krzysztof Kozlowski >

[PATCH] iio: Convert to using %pOFn instead of device_node.name

2018-08-27 Thread Rob Herring
In preparation to remove the node name pointer from struct device_node, convert printf users to use the %pOFn format specifier. Cc: Jonathan Cameron Cc: Hartmut Knaack Cc: Lars-Peter Clausen Cc: linux-...@vger.kernel.org Signed-off-by: Rob Herring --- drivers/iio/adc/qcom-pm8xxx-xoadc.c | 4

[PATCH] iio: Convert to using %pOFn instead of device_node.name

2018-08-27 Thread Rob Herring
In preparation to remove the node name pointer from struct device_node, convert printf users to use the %pOFn format specifier. Cc: Jonathan Cameron Cc: Hartmut Knaack Cc: Lars-Peter Clausen Cc: linux-...@vger.kernel.org Signed-off-by: Rob Herring --- drivers/iio/adc/qcom-pm8xxx-xoadc.c | 4

RE: [PATCH] pinctrl: Convert to using %pOFn instead of device_node.name

2018-08-27 Thread A.s. Dong
> -Original Message- > From: Rob Herring [mailto:r...@kernel.org] > Sent: Tuesday, August 28, 2018 9:53 AM > To: linux-kernel@vger.kernel.org > Cc: Linus Walleij ; A.s. Dong > ; Fabio Estevam ; Shawn > Guo ; Stefan Agner ; Pengutronix > Kernel Team ; Sean Wang > ; Matthias Brugger ; >

RE: [PATCH] pinctrl: Convert to using %pOFn instead of device_node.name

2018-08-27 Thread A.s. Dong
> -Original Message- > From: Rob Herring [mailto:r...@kernel.org] > Sent: Tuesday, August 28, 2018 9:53 AM > To: linux-kernel@vger.kernel.org > Cc: Linus Walleij ; A.s. Dong > ; Fabio Estevam ; Shawn > Guo ; Stefan Agner ; Pengutronix > Kernel Team ; Sean Wang > ; Matthias Brugger ; >

[PATCH] leds: Convert to using %pOFn instead of device_node.name

2018-08-27 Thread Rob Herring
In preparation to remove the node name pointer from struct device_node, convert printf users to use the %pOFn format specifier. Cc: Sakari Ailus Cc: Jacek Anaszewski Cc: Pavel Machek Cc: linux-l...@vger.kernel.org Signed-off-by: Rob Herring --- drivers/leds/leds-as3645a.c | 4 ++-- 1 file

[PATCH] leds: Convert to using %pOFn instead of device_node.name

2018-08-27 Thread Rob Herring
In preparation to remove the node name pointer from struct device_node, convert printf users to use the %pOFn format specifier. Cc: Sakari Ailus Cc: Jacek Anaszewski Cc: Pavel Machek Cc: linux-l...@vger.kernel.org Signed-off-by: Rob Herring --- drivers/leds/leds-as3645a.c | 4 ++-- 1 file

[PATCH] irqchip: Convert to using %pOFn instead of device_node.name

2018-08-27 Thread Rob Herring
In preparation to remove the node name pointer from struct device_node, convert printf users to use the %pOFn format specifier. Cc: Thomas Gleixner Cc: Jason Cooper Cc: Marc Zyngier Cc: linux-arm-ker...@lists.infradead.org Signed-off-by: Rob Herring --- drivers/irqchip/irq-gic-v3.c | 4

[PATCH] irqchip: Convert to using %pOFn instead of device_node.name

2018-08-27 Thread Rob Herring
In preparation to remove the node name pointer from struct device_node, convert printf users to use the %pOFn format specifier. Cc: Thomas Gleixner Cc: Jason Cooper Cc: Marc Zyngier Cc: linux-arm-ker...@lists.infradead.org Signed-off-by: Rob Herring --- drivers/irqchip/irq-gic-v3.c | 4

[PATCH] mmc: Convert to using %pOFn instead of device_node.name

2018-08-27 Thread Rob Herring
In preparation to remove the node name pointer from struct device_node, convert printf users to use the %pOFn format specifier. Cc: Adrian Hunter Cc: Hu Ziji Cc: Ulf Hansson Cc: linux-...@vger.kernel.org Signed-off-by: Rob Herring --- drivers/mmc/host/sdhci-xenon-phy.c | 4 ++-- 1 file

[PATCH] mfd: max77620: Convert to using %pOFn instead of device_node.name

2018-08-27 Thread Rob Herring
In preparation to remove the node name pointer from struct device_node, convert printf users to use the %pOFn format specifier. Cc: Lee Jones Signed-off-by: Rob Herring --- drivers/mfd/max77620.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mfd/max77620.c

[PATCH] misc: Convert to using %pOFn instead of device_node.name

2018-08-27 Thread Rob Herring
In preparation to remove the node name pointer from struct device_node, convert printf users to use the %pOFn format specifier. Cc: Frederic Barrat Cc: Andrew Donnellan Cc: Arnd Bergmann Cc: Greg Kroah-Hartman Cc: linuxppc-...@lists.ozlabs.org Signed-off-by: Rob Herring ---

[PATCH] mmc: Convert to using %pOFn instead of device_node.name

2018-08-27 Thread Rob Herring
In preparation to remove the node name pointer from struct device_node, convert printf users to use the %pOFn format specifier. Cc: Adrian Hunter Cc: Hu Ziji Cc: Ulf Hansson Cc: linux-...@vger.kernel.org Signed-off-by: Rob Herring --- drivers/mmc/host/sdhci-xenon-phy.c | 4 ++-- 1 file

[PATCH] mfd: max77620: Convert to using %pOFn instead of device_node.name

2018-08-27 Thread Rob Herring
In preparation to remove the node name pointer from struct device_node, convert printf users to use the %pOFn format specifier. Cc: Lee Jones Signed-off-by: Rob Herring --- drivers/mfd/max77620.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mfd/max77620.c

[PATCH] misc: Convert to using %pOFn instead of device_node.name

2018-08-27 Thread Rob Herring
In preparation to remove the node name pointer from struct device_node, convert printf users to use the %pOFn format specifier. Cc: Frederic Barrat Cc: Andrew Donnellan Cc: Arnd Bergmann Cc: Greg Kroah-Hartman Cc: linuxppc-...@lists.ozlabs.org Signed-off-by: Rob Herring ---

[PATCH] memory: Convert to using %pOFn instead of device_node.name

2018-08-27 Thread Rob Herring
In preparation to remove the node name pointer from struct device_node, convert printf users to use the %pOFn format specifier. Cc: Roger Quadros Cc: Tony Lindgren Cc: Kukjin Kim Cc: Krzysztof Kozlowski Cc: Thierry Reding Cc: Jonathan Hunter Cc: linux-o...@vger.kernel.org Cc:

[PATCH] memory: Convert to using %pOFn instead of device_node.name

2018-08-27 Thread Rob Herring
In preparation to remove the node name pointer from struct device_node, convert printf users to use the %pOFn format specifier. Cc: Roger Quadros Cc: Tony Lindgren Cc: Kukjin Kim Cc: Krzysztof Kozlowski Cc: Thierry Reding Cc: Jonathan Hunter Cc: linux-o...@vger.kernel.org Cc:

[PATCH] regulator: Convert to using %pOFn instead of device_node.name

2018-08-27 Thread Rob Herring
In preparation to remove the node name pointer from struct device_node, convert printf users to use the %pOFn format specifier. Cc: Liam Girdwood Cc: Mark Brown Cc: Sangbeom Kim Cc: Krzysztof Kozlowski Cc: Bartlomiej Zolnierkiewicz Cc: linux-samsung-...@vger.kernel.org Signed-off-by: Rob

[PATCH] regulator: Convert to using %pOFn instead of device_node.name

2018-08-27 Thread Rob Herring
In preparation to remove the node name pointer from struct device_node, convert printf users to use the %pOFn format specifier. Cc: Liam Girdwood Cc: Mark Brown Cc: Sangbeom Kim Cc: Krzysztof Kozlowski Cc: Bartlomiej Zolnierkiewicz Cc: linux-samsung-...@vger.kernel.org Signed-off-by: Rob

[PATCH] rpmsg: Convert to using %pOFn instead of device_node.name

2018-08-27 Thread Rob Herring
In preparation to remove the node name pointer from struct device_node, convert printf users to use the %pOFn format specifier. Cc: Ohad Ben-Cohen Cc: Bjorn Andersson Cc: linux-remotep...@vger.kernel.org Signed-off-by: Rob Herring --- drivers/rpmsg/qcom_glink_smem.c | 2 +-

[PATCH] pinctrl: Convert to using %pOFn instead of device_node.name

2018-08-27 Thread Rob Herring
In preparation to remove the node name pointer from struct device_node, convert printf users to use the %pOFn format specifier. Cc: Linus Walleij Cc: Dong Aisheng Cc: Fabio Estevam Cc: Shawn Guo Cc: Stefan Agner Cc: Pengutronix Kernel Team Cc: Sean Wang Cc: Matthias Brugger Cc: Carlo

[PATCH] net: ethernet: Convert to using %pOFn instead of device_node.name

2018-08-27 Thread Rob Herring
In preparation to remove the node name pointer from struct device_node, convert printf users to use the %pOFn format specifier. Cc: "David S. Miller" Cc: Yisen Zhuang Cc: Salil Mehta Cc: Sebastian Hesselbarth Cc: Felix Fietkau Cc: John Crispin Cc: Sean Wang Cc: Nelson Chang Cc: Matthias

[PATCH] rpmsg: Convert to using %pOFn instead of device_node.name

2018-08-27 Thread Rob Herring
In preparation to remove the node name pointer from struct device_node, convert printf users to use the %pOFn format specifier. Cc: Ohad Ben-Cohen Cc: Bjorn Andersson Cc: linux-remotep...@vger.kernel.org Signed-off-by: Rob Herring --- drivers/rpmsg/qcom_glink_smem.c | 2 +-

[PATCH] pinctrl: Convert to using %pOFn instead of device_node.name

2018-08-27 Thread Rob Herring
In preparation to remove the node name pointer from struct device_node, convert printf users to use the %pOFn format specifier. Cc: Linus Walleij Cc: Dong Aisheng Cc: Fabio Estevam Cc: Shawn Guo Cc: Stefan Agner Cc: Pengutronix Kernel Team Cc: Sean Wang Cc: Matthias Brugger Cc: Carlo

[PATCH] net: ethernet: Convert to using %pOFn instead of device_node.name

2018-08-27 Thread Rob Herring
In preparation to remove the node name pointer from struct device_node, convert printf users to use the %pOFn format specifier. Cc: "David S. Miller" Cc: Yisen Zhuang Cc: Salil Mehta Cc: Sebastian Hesselbarth Cc: Felix Fietkau Cc: John Crispin Cc: Sean Wang Cc: Nelson Chang Cc: Matthias

[PATCH] perf: Convert to using %pOFn instead of device_node.name

2018-08-27 Thread Rob Herring
In preparation to remove the node name pointer from struct device_node, convert printf users to use the %pOFn format specifier. Cc: Will Deacon Cc: Mark Rutland Cc: linux-arm-ker...@lists.infradead.org Signed-off-by: Rob Herring --- drivers/perf/arm_pmu_platform.c | 6 +++--- 1 file changed,

[PATCH] perf: Convert to using %pOFn instead of device_node.name

2018-08-27 Thread Rob Herring
In preparation to remove the node name pointer from struct device_node, convert printf users to use the %pOFn format specifier. Cc: Will Deacon Cc: Mark Rutland Cc: linux-arm-ker...@lists.infradead.org Signed-off-by: Rob Herring --- drivers/perf/arm_pmu_platform.c | 6 +++--- 1 file changed,

[PATCH] thermal: Convert to using %pOFn instead of device_node.name

2018-08-27 Thread Rob Herring
In preparation to remove the node name pointer from struct device_node, convert printf users to use the %pOFn format specifier. Cc: Zhang Rui Cc: Eduardo Valentin Cc: Daniel Lezcano Cc: linux...@vger.kernel.org Signed-off-by: Rob Herring --- drivers/thermal/of-thermal.c| 10 +-

[PATCH] uio: Convert to using %pOFn instead of device_node.name

2018-08-27 Thread Rob Herring
In preparation to remove the node name pointer from struct device_node, convert printf users to use the %pOFn format specifier. Cc: Greg Kroah-Hartman Signed-off-by: Rob Herring --- drivers/uio/uio_fsl_elbc_gpcm.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git

[PATCH] mailbox: Convert to using %pOFn instead of device_node.name

2018-08-27 Thread Rob Herring
In preparation to remove the node name pointer from struct device_node, convert printf users to use the %pOFn format specifier. Cc: Jassi Brar Signed-off-by: Rob Herring --- drivers/mailbox/ti-msgmgr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git

[PATCH] thermal: Convert to using %pOFn instead of device_node.name

2018-08-27 Thread Rob Herring
In preparation to remove the node name pointer from struct device_node, convert printf users to use the %pOFn format specifier. Cc: Zhang Rui Cc: Eduardo Valentin Cc: Daniel Lezcano Cc: linux...@vger.kernel.org Signed-off-by: Rob Herring --- drivers/thermal/of-thermal.c| 10 +-

[PATCH] uio: Convert to using %pOFn instead of device_node.name

2018-08-27 Thread Rob Herring
In preparation to remove the node name pointer from struct device_node, convert printf users to use the %pOFn format specifier. Cc: Greg Kroah-Hartman Signed-off-by: Rob Herring --- drivers/uio/uio_fsl_elbc_gpcm.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git

[PATCH] mailbox: Convert to using %pOFn instead of device_node.name

2018-08-27 Thread Rob Herring
In preparation to remove the node name pointer from struct device_node, convert printf users to use the %pOFn format specifier. Cc: Jassi Brar Signed-off-by: Rob Herring --- drivers/mailbox/ti-msgmgr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git

  1   2   3   4   5   6   7   8   9   10   >