[RFC PATCH] compiler.h: give up __compiletime_assert_fallback()

2018-08-18 Thread Masahiro Yamada
__compiletime_assert_fallback() is supposed to stop building earlier by using the negative-array-size method in case the compiler does not support "error" attribute, but has never worked like that. You can try this simple code: #include void foo(void) { BUILD_BUG_ON(1);

[RFC PATCH] compiler.h: give up __compiletime_assert_fallback()

2018-08-18 Thread Masahiro Yamada
__compiletime_assert_fallback() is supposed to stop building earlier by using the negative-array-size method in case the compiler does not support "error" attribute, but has never worked like that. You can try this simple code: #include void foo(void) { BUILD_BUG_ON(1);

Re: problem in building 4.8.0: references to non-existent util CLANG

2018-08-18 Thread L A Walsh
Randy Dunlap wrote: On 08/18/2018 05:48 PM, Linda Walsh wrote: Is CLANG required for building now? Looks like this patch should fix it: https://marc.info/?l=linux-kbuild=153447099313149=2 --- Thanks much!

Re: problem in building 4.8.0: references to non-existent util CLANG

2018-08-18 Thread L A Walsh
Randy Dunlap wrote: On 08/18/2018 05:48 PM, Linda Walsh wrote: Is CLANG required for building now? Looks like this patch should fix it: https://marc.info/?l=linux-kbuild=153447099313149=2 --- Thanks much!

RE: [char-misc-next 00/12] mei: Add DMA ring

2018-08-18 Thread Winkler, Tomas
> > > On Tue, Jul 31, 2018 at 09:35:32AM +0300, Tomas Winkler wrote: > > > This series adds an alternative method for transferring data between > > > the mei driver and the device via a DMA ring. The DMA ring allows > > > transferring data in bigger chunks, up to 128K, than the HW ring 512B. >

RE: [char-misc-next 00/12] mei: Add DMA ring

2018-08-18 Thread Winkler, Tomas
> > > On Tue, Jul 31, 2018 at 09:35:32AM +0300, Tomas Winkler wrote: > > > This series adds an alternative method for transferring data between > > > the mei driver and the device via a DMA ring. The DMA ring allows > > > transferring data in bigger chunks, up to 128K, than the HW ring 512B. >

Re: [RFC PATCH 1/6] Revert "PCI: Fix is_added/is_busmaster race condition"

2018-08-18 Thread Bjorn Helgaas
On Sat, Aug 18, 2018 at 01:24:51PM +1000, Benjamin Herrenschmidt wrote: > On Fri, 2018-08-17 at 10:44 -0500, Bjorn Helgaas wrote: > > On Fri, Aug 17, 2018 at 02:48:57PM +1000, Benjamin Herrenschmidt wrote: > > > This reverts commit 44bda4b7d26e9fffed6d7152d98a2e9edaeb2a76. > > > > Just to be

Re: [RFC PATCH 1/6] Revert "PCI: Fix is_added/is_busmaster race condition"

2018-08-18 Thread Bjorn Helgaas
On Sat, Aug 18, 2018 at 01:24:51PM +1000, Benjamin Herrenschmidt wrote: > On Fri, 2018-08-17 at 10:44 -0500, Bjorn Helgaas wrote: > > On Fri, Aug 17, 2018 at 02:48:57PM +1000, Benjamin Herrenschmidt wrote: > > > This reverts commit 44bda4b7d26e9fffed6d7152d98a2e9edaeb2a76. > > > > Just to be

Re: problem in building 4.8.0: references to non-existent util CLANG

2018-08-18 Thread Randy Dunlap
On 08/18/2018 05:48 PM, Linda Walsh wrote: > Is CLANG required for building now? > > when I did a "make xconfig" (or any make, for that matter), I get: > >>  make xconfig > scripts/kconfig/qconf  Kconfig > invocation line: ./scripts/clang-version.sh gcc ## debug line I added >

Re: problem in building 4.8.0: references to non-existent util CLANG

2018-08-18 Thread Randy Dunlap
On 08/18/2018 05:48 PM, Linda Walsh wrote: > Is CLANG required for building now? > > when I did a "make xconfig" (or any make, for that matter), I get: > >>  make xconfig > scripts/kconfig/qconf  Kconfig > invocation line: ./scripts/clang-version.sh gcc ## debug line I added >

problem in building 4.8.0: references to non-existent util CLANG

2018-08-18 Thread Linda Walsh
Is CLANG required for building now? when I did a "make xconfig" (or any make, for that matter), I get: make xconfig scripts/kconfig/qconf Kconfig invocation line: ./scripts/clang-version.sh gcc ## debug line I added ./scripts/clang-version.sh: line 15: ./COPYING: Permission denied

problem in building 4.8.0: references to non-existent util CLANG

2018-08-18 Thread Linda Walsh
Is CLANG required for building now? when I did a "make xconfig" (or any make, for that matter), I get: make xconfig scripts/kconfig/qconf Kconfig invocation line: ./scripts/clang-version.sh gcc ## debug line I added ./scripts/clang-version.sh: line 15: ./COPYING: Permission denied

Re: linux-next: Signed-off-by missing for commit in the h8300 tree

2018-08-18 Thread Stephen Rothwell
Hi Yoshinori, On Sun, 19 Aug 2018 01:35:47 +0900 Yoshinori Sato wrote: > > > Commit > > > > 85f866b60ba7 ("h8300: switch to NO_BOOTMEM") > > > > is missing a Signed-off-by from its committer. > > OK. Fixed it. This last one is still missing your Signed-off-by ... (it is commit

Re: linux-next: Signed-off-by missing for commit in the h8300 tree

2018-08-18 Thread Stephen Rothwell
Hi Yoshinori, On Sun, 19 Aug 2018 01:35:47 +0900 Yoshinori Sato wrote: > > > Commit > > > > 85f866b60ba7 ("h8300: switch to NO_BOOTMEM") > > > > is missing a Signed-off-by from its committer. > > OK. Fixed it. This last one is still missing your Signed-off-by ... (it is commit

Re: [PATCH] sched: idle: Avoid retaining the tick when it has been stopped

2018-08-18 Thread leo . yan
On Sat, Aug 18, 2018 at 11:57:00PM +0200, Rafael J. Wysocki wrote: [...] > > > > Otherwise we can have something like this: > > > > > > > > diff --git a/kernel/time/tick-sched.c b/kernel/time/tick-sched.c > > > > index da9455a..408c985 100644 > > > > --- a/kernel/time/tick-sched.c > > > > +++

Re: [PATCH] sched: idle: Avoid retaining the tick when it has been stopped

2018-08-18 Thread leo . yan
On Sat, Aug 18, 2018 at 11:57:00PM +0200, Rafael J. Wysocki wrote: [...] > > > > Otherwise we can have something like this: > > > > > > > > diff --git a/kernel/time/tick-sched.c b/kernel/time/tick-sched.c > > > > index da9455a..408c985 100644 > > > > --- a/kernel/time/tick-sched.c > > > > +++

Re: linux-next: manual merge of the nvdimm tree with the tip tree

2018-08-18 Thread Stephen Rothwell
Hi all, On Tue, 26 Jun 2018 12:18:53 +1000 Stephen Rothwell wrote: > > Today's linux-next merge of the nvdimm tree got a conflict in: > > arch/x86/kernel/cpu/mcheck/mce.c > > between commit: > > d3d6923cd1ae ("x86/mce: Carve out the crashing_cpu check") > > from the tip tree and commit:

Re: linux-next: manual merge of the nvdimm tree with the tip tree

2018-08-18 Thread Stephen Rothwell
Hi all, On Tue, 26 Jun 2018 12:18:53 +1000 Stephen Rothwell wrote: > > Today's linux-next merge of the nvdimm tree got a conflict in: > > arch/x86/kernel/cpu/mcheck/mce.c > > between commit: > > d3d6923cd1ae ("x86/mce: Carve out the crashing_cpu check") > > from the tip tree and commit:

Re: linux-next: manual merge of the driver-core tree with the iommu tree

2018-08-18 Thread Stephen Rothwell
Hi all, On Wed, 11 Jul 2018 13:14:45 +1000 Stephen Rothwell wrote: > > Today's linux-next merge of the driver-core tree got a conflict in: > > drivers/iommu/ipmmu-vmsa.c > > between commits: > > 0b8ac1409641 ("iommu/ipmmu-vmsa: Hook up r8a7796 DT matching code") > 3701c123e1c1

Re: linux-next: manual merge of the driver-core tree with the iommu tree

2018-08-18 Thread Stephen Rothwell
Hi all, On Wed, 11 Jul 2018 13:14:45 +1000 Stephen Rothwell wrote: > > Today's linux-next merge of the driver-core tree got a conflict in: > > drivers/iommu/ipmmu-vmsa.c > > between commits: > > 0b8ac1409641 ("iommu/ipmmu-vmsa: Hook up r8a7796 DT matching code") > 3701c123e1c1

donation

2018-08-18 Thread Xiang, Feifei
-- donation of $3 to you, contact hams@hotmail.com to verefly

donation

2018-08-18 Thread Xiang, Feifei
-- donation of $3 to you, contact hams@hotmail.com to verefly

[PATCH] export.h: remove VMLINUX_SYMBOL() and VMLINUX_SYMBOL_STR()

2018-08-18 Thread Masahiro Yamada
With the special case handling for Blackfin and Metag was removed by commit 94e58e0ac312 ("export.h: remove code for prefixing symbols with underscore"), VMLINUX_SYMBOL() is no-no. Replace the remaining usages, then remove the definition of VMLINUX_SYMBOL() and VMLINUX_SYMBOL_STR(). no longer

[PATCH] export.h: remove VMLINUX_SYMBOL() and VMLINUX_SYMBOL_STR()

2018-08-18 Thread Masahiro Yamada
With the special case handling for Blackfin and Metag was removed by commit 94e58e0ac312 ("export.h: remove code for prefixing symbols with underscore"), VMLINUX_SYMBOL() is no-no. Replace the remaining usages, then remove the definition of VMLINUX_SYMBOL() and VMLINUX_SYMBOL_STR(). no longer

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

2018-08-18 Thread Heiner Kallweit
On 18.08.2018 13:26, Thomas Gleixner wrote: > On Thu, 16 Aug 2018, Heiner Kallweit wrote: > >> Recently I started to get warning "NOHZ: local_softirq_pending 202" and >> I think it's related to mentioned commit (didn't bisect it yet). >> See log from suspending. >> >> I have no reason to think

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

2018-08-18 Thread Heiner Kallweit
On 18.08.2018 13:26, Thomas Gleixner wrote: > On Thu, 16 Aug 2018, Heiner Kallweit wrote: > >> Recently I started to get warning "NOHZ: local_softirq_pending 202" and >> I think it's related to mentioned commit (didn't bisect it yet). >> See log from suspending. >> >> I have no reason to think

KINDLY REPLY stemlightresour...@gmail.com URGENTLY

2018-08-18 Thread STEMLIGHTRESOURCES
KINDLY REPLY stemlightresour...@gmail.com URGENTLY

KINDLY REPLY stemlightresour...@gmail.com URGENTLY

2018-08-18 Thread STEMLIGHTRESOURCES
KINDLY REPLY stemlightresour...@gmail.com URGENTLY

KASAN: use-after-free Read in do_shrink_slab

2018-08-18 Thread syzbot
Hello, syzbot found the following crash on: HEAD commit:1f7a4c73a739 Merge tag '9p-for-4.19-2' of git://github.com.. git tree: upstream console output: https://syzkaller.appspot.com/x/log.txt?x=16c46d9a40 kernel config: https://syzkaller.appspot.com/x/.config?x=68e80edb3c9718c5

KASAN: use-after-free Read in do_shrink_slab

2018-08-18 Thread syzbot
Hello, syzbot found the following crash on: HEAD commit:1f7a4c73a739 Merge tag '9p-for-4.19-2' of git://github.com.. git tree: upstream console output: https://syzkaller.appspot.com/x/log.txt?x=16c46d9a40 kernel config: https://syzkaller.appspot.com/x/.config?x=68e80edb3c9718c5

Re: [PATCH] sched: idle: Avoid retaining the tick when it has been stopped

2018-08-18 Thread Rafael J. Wysocki
On Fri, Aug 17, 2018 at 4:12 PM Frederic Weisbecker wrote: > > On Fri, Aug 17, 2018 at 11:32:07AM +0200, Rafael J. Wysocki wrote: > > On Thursday, August 16, 2018 3:27:24 PM CEST Frederic Weisbecker wrote: > > > On Thu, Aug 09, 2018 at 07:08:34PM +0200, Rafael J. Wysocki wrote: > > > > From:

Re: [PATCH] sched: idle: Avoid retaining the tick when it has been stopped

2018-08-18 Thread Rafael J. Wysocki
On Fri, Aug 17, 2018 at 4:12 PM Frederic Weisbecker wrote: > > On Fri, Aug 17, 2018 at 11:32:07AM +0200, Rafael J. Wysocki wrote: > > On Thursday, August 16, 2018 3:27:24 PM CEST Frederic Weisbecker wrote: > > > On Thu, Aug 09, 2018 at 07:08:34PM +0200, Rafael J. Wysocki wrote: > > > > From:

[RFC PATCH] scripts: add header bloat measuring script

2018-08-18 Thread Rasmus Villemoes
With a little cooperation from fixdep, we can rather easily quantify the header bloat phenomenon. While computing CONFIG_ dependencies, fixdep opens all the headers used by a given translation unit anyway, so it's rather cheap to have it record the number and total size of those in the generated

[RFC PATCH] scripts: add header bloat measuring script

2018-08-18 Thread Rasmus Villemoes
With a little cooperation from fixdep, we can rather easily quantify the header bloat phenomenon. While computing CONFIG_ dependencies, fixdep opens all the headers used by a given translation unit anyway, so it's rather cheap to have it record the number and total size of those in the generated

[PATCH] dt-bindings: input: pwm-vibrator: correct pwm-names in example

2018-08-18 Thread Brian Masney
In the example for the pwm-vibrator bindings, pwm8 is the direction pin, and pwm9 is the enable pin. The pwm-names on the vibrator node has these two values swapped. This patch corrects the values for pwm-names. Signed-off-by: Brian Masney --- arch/arm/boot/dts/omap4-droid4-xt894.dts is actual

[PATCH] dt-bindings: input: pwm-vibrator: correct pwm-names in example

2018-08-18 Thread Brian Masney
In the example for the pwm-vibrator bindings, pwm8 is the direction pin, and pwm9 is the enable pin. The pwm-names on the vibrator node has these two values swapped. This patch corrects the values for pwm-names. Signed-off-by: Brian Masney --- arch/arm/boot/dts/omap4-droid4-xt894.dts is actual

Re: [PATCH] Revert "Permit silencing of __deprecated warnings."

2018-08-18 Thread Linus Torvalds
On Fri, Aug 17, 2018 at 7:45 PM Jason Gunthorpe wrote: > > Linus would prefer that __deprecated never produce a warning in an > allyesconfig compile. Since we have been at this state for some time, > the option no longer has a purpose. I got rid of the option, but of the code too, and - trying

Re: [PATCH] Revert "Permit silencing of __deprecated warnings."

2018-08-18 Thread Linus Torvalds
On Fri, Aug 17, 2018 at 7:45 PM Jason Gunthorpe wrote: > > Linus would prefer that __deprecated never produce a warning in an > allyesconfig compile. Since we have been at this state for some time, > the option no longer has a purpose. I got rid of the option, but of the code too, and - trying

[PATCH] staging: rtl8188eu: Removed a function and coded inline

2018-08-18 Thread Bhaskar Singh
This patch removed function named rtw_malloc2d. I removed this function because this function is used exactly once and function call have some overhead also. Maybe this will improve code runtime slightly. Signed-off-by: Bhaskar Singh --- drivers/staging/rtl8188eu/core/rtw_efuse.c| 10

[PATCH] staging: rtl8188eu: Removed a function and coded inline

2018-08-18 Thread Bhaskar Singh
This patch removed function named rtw_malloc2d. I removed this function because this function is used exactly once and function call have some overhead also. Maybe this will improve code runtime slightly. Signed-off-by: Bhaskar Singh --- drivers/staging/rtl8188eu/core/rtw_efuse.c| 10

Re: Current LTS and their EOL

2018-08-18 Thread Ben Hutchings
On Fri, 2018-08-17 at 23:48 +0100, Greg KH wrote: > On Fri, Aug 17, 2018 at 08:40:06AM -0700, Rodrigo Vivi wrote: > > Hi Greg, Ben, and all > > > > Is https://www.kernel.org/category/releases.html updated in terms of EOL? > > As of right now, for the kernels I maintain, yes, it is correct. > >

Re: Current LTS and their EOL

2018-08-18 Thread Ben Hutchings
On Fri, 2018-08-17 at 23:48 +0100, Greg KH wrote: > On Fri, Aug 17, 2018 at 08:40:06AM -0700, Rodrigo Vivi wrote: > > Hi Greg, Ben, and all > > > > Is https://www.kernel.org/category/releases.html updated in terms of EOL? > > As of right now, for the kernels I maintain, yes, it is correct. > >

[PATCH] cdrom: gdrom: Fix spelling of 'additional'

2018-08-18 Thread Faisal Mehmood
'additional' was misspelled as 'addional'. Fixed it. It is a coding style change which should have no impact on runtime execution of code. Signed-off-by: Faisal Mehmood --- drivers/cdrom/gdrom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/cdrom/gdrom.c

[PATCH] cdrom: gdrom: Fix spelling of 'additional'

2018-08-18 Thread Faisal Mehmood
'additional' was misspelled as 'addional'. Fixed it. It is a coding style change which should have no impact on runtime execution of code. Signed-off-by: Faisal Mehmood --- drivers/cdrom/gdrom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/cdrom/gdrom.c

[PATCH] hid: hid-logitech-hidpp: Fix spelling of 'length'

2018-08-18 Thread Faisal Mehmood
'length' was misspelled as 'lenth'. Fixed it. It is a coding style change which should have no impact on runtime execution of code. Signed-off-by: Faisal Mehmood --- drivers/hid/hid-logitech-hidpp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[PATCH] hid: hid-logitech-hidpp: Fix spelling of 'length'

2018-08-18 Thread Faisal Mehmood
'length' was misspelled as 'lenth'. Fixed it. It is a coding style change which should have no impact on runtime execution of code. Signed-off-by: Faisal Mehmood --- drivers/hid/hid-logitech-hidpp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[PATCH v2 1/1] hdac-codec runtime suspended at PM:Suspend.

2018-08-18 Thread Anshuman Gupta
Keep hdac hdmi codec to be in runtime suspended while entering to system wide suspend. Currently hdac hdmi codec driver using its suspend and resume operation in prepare and complete PM callbacks, and it resumes the hd audio controller (parent of self) from runtime suspend and blocks the direct

[PATCH v2 1/1] hdac-codec runtime suspended at PM:Suspend.

2018-08-18 Thread Anshuman Gupta
Keep hdac hdmi codec to be in runtime suspended while entering to system wide suspend. Currently hdac hdmi codec driver using its suspend and resume operation in prepare and complete PM callbacks, and it resumes the hd audio controller (parent of self) from runtime suspend and blocks the direct

[PATCH v2 0/1] cover-letter hdac-codec runtime suspended at PM:Suspend.

2018-08-18 Thread Anshuman Gupta
Current implementation of hdac hdmi codec driver uses its suspend/resume operation callback in its prepare/complete callback which has issues with hdac direct-complete, it has been reviewed earlier that hdac hdmi codec driver requires a rework (https://patchwork.kernel.org/patch/10276021/), but as

[PATCH v2 0/1] cover-letter hdac-codec runtime suspended at PM:Suspend.

2018-08-18 Thread Anshuman Gupta
Current implementation of hdac hdmi codec driver uses its suspend/resume operation callback in its prepare/complete callback which has issues with hdac direct-complete, it has been reviewed earlier that hdac hdmi codec driver requires a rework (https://patchwork.kernel.org/patch/10276021/), but as

Re: [GIT PULL] RISC-V Updates for the 4.19 Merge Window

2018-08-18 Thread Linus Torvalds
On Fri, Aug 17, 2018 at 1:28 PM Palmer Dabbelt wrote: > > I remember having sent this on Wednesday, but for some reason I don't see it > in > your tree or my outbox so I might be crazy. You might indeed have been having hallucinations. I don't see any other pull request from you in my mailbox

Re: [GIT PULL] RISC-V Updates for the 4.19 Merge Window

2018-08-18 Thread Linus Torvalds
On Fri, Aug 17, 2018 at 1:28 PM Palmer Dabbelt wrote: > > I remember having sent this on Wednesday, but for some reason I don't see it > in > your tree or my outbox so I might be crazy. You might indeed have been having hallucinations. I don't see any other pull request from you in my mailbox

[PATCH v8 1/2] kbuild: Allow asm-specific compiler_types.h

2018-08-18 Thread Paul Burton
We have a need to override the definition of barrier_before_unreachable() for MIPS, which means we either need to add architecture-specific code into linux/compiler-gcc.h or we need to allow the architecture to provide a header that can define the macro before the generic definition. The latter

[PATCH v8 2/2] MIPS: Workaround GCC __builtin_unreachable reordering bug

2018-08-18 Thread Paul Burton
Some versions of GCC for the MIPS architecture suffer from a bug which can lead to instructions from beyond an unreachable statement being incorrectly reordered into earlier branch delay slots if the unreachable statement is the only content of a case in a switch statement. This can lead to

[PATCH v8 1/2] kbuild: Allow asm-specific compiler_types.h

2018-08-18 Thread Paul Burton
We have a need to override the definition of barrier_before_unreachable() for MIPS, which means we either need to add architecture-specific code into linux/compiler-gcc.h or we need to allow the architecture to provide a header that can define the macro before the generic definition. The latter

[PATCH v8 2/2] MIPS: Workaround GCC __builtin_unreachable reordering bug

2018-08-18 Thread Paul Burton
Some versions of GCC for the MIPS architecture suffer from a bug which can lead to instructions from beyond an unreachable statement being incorrectly reordered into earlier branch delay slots if the unreachable statement is the only content of a case in a switch statement. This can lead to

[PATCH v8 0/2] MIPS: Override barrier_before_unreachable() to fix microMIPS

2018-08-18 Thread Paul Burton
This series overrides barrier_before_unreachable() for MIPS to add a .insn assembler directive. Due to the subsequent __builtin_unreachable(), the assembler can't tell that a label on the empty inline asm is code rather than data, so any microMIPS branches targeting it (which sadly can't be

[PATCH v8 0/2] MIPS: Override barrier_before_unreachable() to fix microMIPS

2018-08-18 Thread Paul Burton
This series overrides barrier_before_unreachable() for MIPS to add a .insn assembler directive. Due to the subsequent __builtin_unreachable(), the assembler can't tell that a label on the empty inline asm is code rather than data, so any microMIPS branches targeting it (which sadly can't be

Re: [PATCH v4 0/2] clk: qcom: Add support for RCG to register for DFS

2018-08-18 Thread Taniya Das
Hello Stephen, I will test these changes and get back. On 8/18/2018 7:42 AM, Stephen Boyd wrote: Quoting Taniya Das (2018-08-10 18:53:54) [v4] * Add recalc_clk_ops to calculate the clock frequency reading the current perf state, also add CLK_GET_RATE_NOCACHE flag. * Cleanup

Re: [PATCH v4 0/2] clk: qcom: Add support for RCG to register for DFS

2018-08-18 Thread Taniya Das
Hello Stephen, I will test these changes and get back. On 8/18/2018 7:42 AM, Stephen Boyd wrote: Quoting Taniya Das (2018-08-10 18:53:54) [v4] * Add recalc_clk_ops to calculate the clock frequency reading the current perf state, also add CLK_GET_RATE_NOCACHE flag. * Cleanup

Re: [GIT PULL] Staging/IIO driver patches for 4.19-rc1

2018-08-18 Thread Linus Torvalds
On Sat, Aug 18, 2018 at 8:57 AM Greg KH wrote: > > Note, you will have a merge problem with a device tree IIO file and the > MAINTAINERS file, both resolutions are easy, just take all changed. Heh, no. In neither case should I take all changes: the IIO was "delete both sides"), and in the

Re: [GIT PULL] Staging/IIO driver patches for 4.19-rc1

2018-08-18 Thread Linus Torvalds
On Sat, Aug 18, 2018 at 8:57 AM Greg KH wrote: > > Note, you will have a merge problem with a device tree IIO file and the > MAINTAINERS file, both resolutions are easy, just take all changed. Heh, no. In neither case should I take all changes: the IIO was "delete both sides"), and in the

Re: [PATCH v3 7/9] iio: tsl2772: add support for avago,apds9930

2018-08-18 Thread Jonathan Cameron
On Fri, 3 Aug 2018 22:53:36 +0100 Jonathan Cameron wrote: > On Thu, 2 Aug 2018 20:18:58 -0400 > Brian Masney wrote: > > > The Avago APDS9930 has the same register set as the TAOS/AMS TSL2772 so > > this patch adds the correct bindings and the appropriate LUX table > > values derived from the

Re: [PATCH v3 7/9] iio: tsl2772: add support for avago,apds9930

2018-08-18 Thread Jonathan Cameron
On Fri, 3 Aug 2018 22:53:36 +0100 Jonathan Cameron wrote: > On Thu, 2 Aug 2018 20:18:58 -0400 > Brian Masney wrote: > > > The Avago APDS9930 has the same register set as the TAOS/AMS TSL2772 so > > this patch adds the correct bindings and the appropriate LUX table > > values derived from the

Re: [PATCH v3 9/9] ARM: dts: qcom: msm8974-hammerhead: add device tree bindings for ALS / proximity

2018-08-18 Thread Jonathan Cameron
On Thu, 2 Aug 2018 20:19:00 -0400 Brian Masney wrote: > This patch adds device tree bindings for the tsl2772 ALS / proximity > sensor for the LG Nexus 5 (hammerhead) phone. > > Signed-off-by: Brian Masney > Signed-off-by: Jonathan Marek Acked-by: Jonathan Cameron The precursors are working

Re: [PATCH v3 9/9] ARM: dts: qcom: msm8974-hammerhead: add device tree bindings for ALS / proximity

2018-08-18 Thread Jonathan Cameron
On Thu, 2 Aug 2018 20:19:00 -0400 Brian Masney wrote: > This patch adds device tree bindings for the tsl2772 ALS / proximity > sensor for the LG Nexus 5 (hammerhead) phone. > > Signed-off-by: Brian Masney > Signed-off-by: Jonathan Marek Acked-by: Jonathan Cameron The precursors are working

Re: [PATCH v3 8/9] dt-bindings: iio: tsl2772: add binding for avago,apds9930

2018-08-18 Thread Jonathan Cameron
On Tue, 7 Aug 2018 11:21:01 -0600 Rob Herring wrote: > On Thu, Aug 02, 2018 at 08:18:59PM -0400, Brian Masney wrote: > > This patch adds avago,apds9930 to the tsl2772 bindings. > > > > Signed-off-by: Brian Masney > > --- > > Documentation/devicetree/bindings/iio/light/tsl2772.txt | 1 + > > 1

Re: [PATCH v3 8/9] dt-bindings: iio: tsl2772: add binding for avago,apds9930

2018-08-18 Thread Jonathan Cameron
On Tue, 7 Aug 2018 11:21:01 -0600 Rob Herring wrote: > On Thu, Aug 02, 2018 at 08:18:59PM -0400, Brian Masney wrote: > > This patch adds avago,apds9930 to the tsl2772 bindings. > > > > Signed-off-by: Brian Masney > > --- > > Documentation/devicetree/bindings/iio/light/tsl2772.txt | 1 + > > 1

Re: [PATCH v3 3/9] iio: tsl2772: add support for reading proximity led settings from device tree

2018-08-18 Thread Jonathan Cameron
On Thu, 2 Aug 2018 20:18:54 -0400 Brian Masney wrote: > This patch adds support for optionally reading the proximity led diode > and current settings from device tree. This was tested using a LG > Nexus 5 (hammerhead) which requires a different diode than the driver > default for the IR LED. >

Re: [PATCH v3 3/9] iio: tsl2772: add support for reading proximity led settings from device tree

2018-08-18 Thread Jonathan Cameron
On Thu, 2 Aug 2018 20:18:54 -0400 Brian Masney wrote: > This patch adds support for optionally reading the proximity led diode > and current settings from device tree. This was tested using a LG > Nexus 5 (hammerhead) which requires a different diode than the driver > default for the IR LED. >

Re: [PATCH v3 6/9] dt-bindings: iio: tsl2772: add bindings for regulator framework

2018-08-18 Thread Jonathan Cameron
On Tue, 7 Aug 2018 11:20:28 -0600 Rob Herring wrote: > On Fri, Aug 03, 2018 at 10:51:23PM +0100, Jonathan Cameron wrote: > > On Thu, 2 Aug 2018 20:18:57 -0400 > > Brian Masney wrote: > > > > > This patch adds device tree bindings to the tsl2772 driver for the > > > regulator framework. > >

Re: [PATCH v3 6/9] dt-bindings: iio: tsl2772: add bindings for regulator framework

2018-08-18 Thread Jonathan Cameron
On Tue, 7 Aug 2018 11:20:28 -0600 Rob Herring wrote: > On Fri, Aug 03, 2018 at 10:51:23PM +0100, Jonathan Cameron wrote: > > On Thu, 2 Aug 2018 20:18:57 -0400 > > Brian Masney wrote: > > > > > This patch adds device tree bindings to the tsl2772 driver for the > > > regulator framework. > >

Re: [PATCH v3 4/9] dt-bindings: iio: tsl2772: add new bindings

2018-08-18 Thread Jonathan Cameron
On Tue, 7 Aug 2018 10:54:26 -0600 Rob Herring wrote: > On Fri, Aug 03, 2018 at 10:48:38PM +0100, Jonathan Cameron wrote: > > On Thu, 2 Aug 2018 20:18:55 -0400 > > Brian Masney wrote: > > > > > This patch adds the new properties amstaos,proximity-diodes and > > > led-max-microamp to the

Re: [PATCH v3 4/9] dt-bindings: iio: tsl2772: add new bindings

2018-08-18 Thread Jonathan Cameron
On Tue, 7 Aug 2018 10:54:26 -0600 Rob Herring wrote: > On Fri, Aug 03, 2018 at 10:48:38PM +0100, Jonathan Cameron wrote: > > On Thu, 2 Aug 2018 20:18:55 -0400 > > Brian Masney wrote: > > > > > This patch adds the new properties amstaos,proximity-diodes and > > > led-max-microamp to the

Re: [PATCH v3 1/3] iio: adc: add support for mcp3911

2018-08-18 Thread Jonathan Cameron
On Sat, 4 Aug 2018 08:55:06 +0200 Marcus Folkesson wrote: > Hi Andy and Jonathan, > > > On Fri, Aug 03, 2018 at 11:09:22PM +0100, Jonathan Cameron wrote: > > On Thu, 2 Aug 2018 22:52:00 +0300 > > Andy Shevchenko wrote: > > > > > On Thu, Aug 2, 2018 at 10:15 PM, Marcus Folkesson > > >

Re: [PATCH v3 1/3] iio: adc: add support for mcp3911

2018-08-18 Thread Jonathan Cameron
On Sat, 4 Aug 2018 08:55:06 +0200 Marcus Folkesson wrote: > Hi Andy and Jonathan, > > > On Fri, Aug 03, 2018 at 11:09:22PM +0100, Jonathan Cameron wrote: > > On Thu, 2 Aug 2018 22:52:00 +0300 > > Andy Shevchenko wrote: > > > > > On Thu, Aug 2, 2018 at 10:15 PM, Marcus Folkesson > > >

Re: linux-next: Signed-off-by missing for commit in the h8300 tree

2018-08-18 Thread Yoshinori Sato
On Sat, 18 Aug 2018 23:30:05 +0900, Stephen Rothwell wrote: > > [1 ] > Hi Yoshinori, > > Commits > > 785b0958b55d ("h8300: gcc-8.1 fix") > 8eabc2d5fae0 ("h8300: Add missing output register.") > > are missing a Signed-off-by from their authors and committers. > > Commit > >

Re: linux-next: Signed-off-by missing for commit in the h8300 tree

2018-08-18 Thread Yoshinori Sato
On Sat, 18 Aug 2018 23:30:05 +0900, Stephen Rothwell wrote: > > [1 ] > Hi Yoshinori, > > Commits > > 785b0958b55d ("h8300: gcc-8.1 fix") > 8eabc2d5fae0 ("h8300: Add missing output register.") > > are missing a Signed-off-by from their authors and committers. > > Commit > >

Re: [PATCHv2] ide: Use NULL to compare with pointer-typed value rather than 0

2018-08-18 Thread Joe Perches
On Sat, 2018-08-18 at 19:21 +0300, Sergei Shtylyov wrote: > On 08/18/2018 07:15 PM, Joe Perches wrote: > > > > We should use NULL to compare with pointer-typed value rather than > > > > 0. The issue is detected with the help of Coccinelle. > > > > > >Your description stopped to match the

Re: [PATCHv2] ide: Use NULL to compare with pointer-typed value rather than 0

2018-08-18 Thread Joe Perches
On Sat, 2018-08-18 at 19:21 +0300, Sergei Shtylyov wrote: > On 08/18/2018 07:15 PM, Joe Perches wrote: > > > > We should use NULL to compare with pointer-typed value rather than > > > > 0. The issue is detected with the help of Coccinelle. > > > > > >Your description stopped to match the

WARNING in __fsnotify_recalc_mask

2018-08-18 Thread syzbot
Hello, syzbot found the following crash on: HEAD commit:1f7a4c73a739 Merge tag '9p-for-4.19-2' of git://github.com.. git tree: upstream console output: https://syzkaller.appspot.com/x/log.txt?x=10cccef240 kernel config: https://syzkaller.appspot.com/x/.config?x=68e80edb3c9718c5

Re: [PATCHv2] ide: Use NULL to compare with pointer-typed value rather than 0

2018-08-18 Thread Sergei Shtylyov
On 08/18/2018 06:53 PM, Sergei Shtylyov wrote: >> We should use NULL to compare with pointer-typed value rather than >> 0. The issue is detected with the help of Coccinelle. > >Your description stopped to match the patch in v2. And your subject as well... >Actually, this X == NULL

WARNING in __fsnotify_recalc_mask

2018-08-18 Thread syzbot
Hello, syzbot found the following crash on: HEAD commit:1f7a4c73a739 Merge tag '9p-for-4.19-2' of git://github.com.. git tree: upstream console output: https://syzkaller.appspot.com/x/log.txt?x=10cccef240 kernel config: https://syzkaller.appspot.com/x/.config?x=68e80edb3c9718c5

Re: [PATCHv2] ide: Use NULL to compare with pointer-typed value rather than 0

2018-08-18 Thread Sergei Shtylyov
On 08/18/2018 06:53 PM, Sergei Shtylyov wrote: >> We should use NULL to compare with pointer-typed value rather than >> 0. The issue is detected with the help of Coccinelle. > >Your description stopped to match the patch in v2. And your subject as well... >Actually, this X == NULL

Re: [PATCHv2] ide: Use NULL to compare with pointer-typed value rather than 0

2018-08-18 Thread Sergei Shtylyov
On 08/18/2018 07:15 PM, Joe Perches wrote: >>> We should use NULL to compare with pointer-typed value rather than >>> 0. The issue is detected with the help of Coccinelle. >> >>Your description stopped to match the patch in v2. >>Actually, this X == NULL to !x preference is largely

Re: [PATCHv2] ide: Use NULL to compare with pointer-typed value rather than 0

2018-08-18 Thread Sergei Shtylyov
On 08/18/2018 07:15 PM, Joe Perches wrote: >>> We should use NULL to compare with pointer-typed value rather than >>> 0. The issue is detected with the help of Coccinelle. >> >>Your description stopped to match the patch in v2. >>Actually, this X == NULL to !x preference is largely

Re: [PATCHv2] ide: Use NULL to compare with pointer-typed value rather than 0

2018-08-18 Thread Joe Perches
On Sat, 2018-08-18 at 18:53 +0300, Sergei Shtylyov wrote: > On 08/18/2018 09:16 AM, zhong jiang wrote: > > > We should use NULL to compare with pointer-typed value rather than > > 0. The issue is detected with the help of Coccinelle. > >Your description stopped to match the patch in v2. >

Re: [PATCHv2] ide: Use NULL to compare with pointer-typed value rather than 0

2018-08-18 Thread Joe Perches
On Sat, 2018-08-18 at 18:53 +0300, Sergei Shtylyov wrote: > On 08/18/2018 09:16 AM, zhong jiang wrote: > > > We should use NULL to compare with pointer-typed value rather than > > 0. The issue is detected with the help of Coccinelle. > >Your description stopped to match the patch in v2. >

[PATCH v1 1/2] clk: tegra: Don't enable already enabled PLLs

2018-08-18 Thread Dmitry Osipenko
Initially Common Clock Framework isn't aware of the clock-enable status, this results in enabling of clocks that were enabled by bootloader. This is not a big deal for a regular clock-gates, but for PLL's it may have some unpleasant consequences. Thus re-enabling PLLX (the main CPU parent clock)

[PATCH v1 2/2] clk: tegra20: Enable lock-status polling for PLLs

2018-08-18 Thread Dmitry Osipenko
Currently all PLL's on Tegra20 use a hardcoded delay despite of having a lock-status bit. The lock-status polling was disabled ~7 years ago because apparently some PLL was failing to lock. That issue isn't observable with the modern kernel, hence let's assume it was some unrelated bug and enable

[PATCH v1 1/2] clk: tegra: Don't enable already enabled PLLs

2018-08-18 Thread Dmitry Osipenko
Initially Common Clock Framework isn't aware of the clock-enable status, this results in enabling of clocks that were enabled by bootloader. This is not a big deal for a regular clock-gates, but for PLL's it may have some unpleasant consequences. Thus re-enabling PLLX (the main CPU parent clock)

[PATCH v1 2/2] clk: tegra20: Enable lock-status polling for PLLs

2018-08-18 Thread Dmitry Osipenko
Currently all PLL's on Tegra20 use a hardcoded delay despite of having a lock-status bit. The lock-status polling was disabled ~7 years ago because apparently some PLL was failing to lock. That issue isn't observable with the modern kernel, hence let's assume it was some unrelated bug and enable

[PATCH v1 2/5] arm64: dts: mt7622: add a bluetooth 5 device node

2018-08-18 Thread Ryder Lee
Add a built-in bluetooth 5 support for MT7622. Signed-off-by: Ryder Lee Acked-by: Sean Wang --- arch/arm64/boot/dts/mediatek/mt7622.dtsi | 7 +++ 1 file changed, 7 insertions(+) diff --git a/arch/arm64/boot/dts/mediatek/mt7622.dtsi b/arch/arm64/boot/dts/mediatek/mt7622.dtsi index

[PATCH v1 2/5] arm64: dts: mt7622: add a bluetooth 5 device node

2018-08-18 Thread Ryder Lee
Add a built-in bluetooth 5 support for MT7622. Signed-off-by: Ryder Lee Acked-by: Sean Wang --- arch/arm64/boot/dts/mediatek/mt7622.dtsi | 7 +++ 1 file changed, 7 insertions(+) diff --git a/arch/arm64/boot/dts/mediatek/mt7622.dtsi b/arch/arm64/boot/dts/mediatek/mt7622.dtsi index

[PATCH v1 4/5] arm64: dts: mt7622: add bananapi BPI-R64 board

2018-08-18 Thread Ryder Lee
Add support for the bananapi R64 (BPI-R64) development board from BIPAI KEJI. Detailed hardware information for BPI-R64 which could be found on http://wiki.banana-pi.org/Banana_Pi_BPI-R64 Signed-off-by: Ryder Lee --- changes since v1: - add missing sata nodes. - fix pinctrl-0 for pcie@1,0. -

[PATCH v1 4/5] arm64: dts: mt7622: add bananapi BPI-R64 board

2018-08-18 Thread Ryder Lee
Add support for the bananapi R64 (BPI-R64) development board from BIPAI KEJI. Detailed hardware information for BPI-R64 which could be found on http://wiki.banana-pi.org/Banana_Pi_BPI-R64 Signed-off-by: Ryder Lee --- changes since v1: - add missing sata nodes. - fix pinctrl-0 for pcie@1,0. -

[PATCH v1 5/5] dt-bindings: arm: mediatek: add support for bananapi BPI-R64 board

2018-08-18 Thread Ryder Lee
Update binding document for bananapi BPI-R64 board being supported. Signed-off-by: Ryder Lee Reviewed-by: Rob Herring --- Documentation/devicetree/bindings/arm/mediatek.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Documentation/devicetree/bindings/arm/mediatek.txt

[PATCH v1 5/5] dt-bindings: arm: mediatek: add support for bananapi BPI-R64 board

2018-08-18 Thread Ryder Lee
Update binding document for bananapi BPI-R64 board being supported. Signed-off-by: Ryder Lee Reviewed-by: Rob Herring --- Documentation/devicetree/bindings/arm/mediatek.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Documentation/devicetree/bindings/arm/mediatek.txt

[PATCH v1 3/5] arm64: dts: mt7622: fix ram size for rfb1

2018-08-18 Thread Ryder Lee
Fix ram size to 512 megabytes and sort nodes in alphabetical order. Signed-off-by: Ryder Lee Acked-by: Sean Wang --- arch/arm64/boot/dts/mediatek/mt7622-rfb1.dts | 196 +-- 1 file changed, 98 insertions(+), 98 deletions(-) diff --git

[PATCH v1 3/5] arm64: dts: mt7622: fix ram size for rfb1

2018-08-18 Thread Ryder Lee
Fix ram size to 512 megabytes and sort nodes in alphabetical order. Signed-off-by: Ryder Lee Acked-by: Sean Wang --- arch/arm64/boot/dts/mediatek/mt7622-rfb1.dts | 196 +-- 1 file changed, 98 insertions(+), 98 deletions(-) diff --git

  1   2   3   4   5   >