Re: [RFC] regmap-irq: add "main register" and level-irq support

2018-12-06 Thread Matti Vaittinen
Hello Again Mark, On Wed, Dec 05, 2018 at 05:27:01PM +, Mark Brown wrote: > On Wed, Dec 05, 2018 at 10:22:51AM +0200, Matti Vaittinen wrote: > > On Tue, Dec 04, 2018 at 05:21:37PM +, Mark Brown wrote: > > > On Fri, Nov 30, 2018 at 10:59:08AM +0200, Matti Vaittinen wrote: > > > > This

Re: [RFC] regmap-irq: add "main register" and level-irq support

2018-12-06 Thread Matti Vaittinen
Hello Again Mark, On Wed, Dec 05, 2018 at 05:27:01PM +, Mark Brown wrote: > On Wed, Dec 05, 2018 at 10:22:51AM +0200, Matti Vaittinen wrote: > > On Tue, Dec 04, 2018 at 05:21:37PM +, Mark Brown wrote: > > > On Fri, Nov 30, 2018 at 10:59:08AM +0200, Matti Vaittinen wrote: > > > > This

Re: [PATCH] mm/alloc: fallback to first node if the wanted node offline

2018-12-06 Thread Michal Hocko
On Fri 07-12-18 10:56:51, Pingfan Liu wrote: [...] > In a short word, the fix method should consider about the two factors: > semantic of online-node and the effect on all archs I am pretty sure there is a lot of room for unification in this area. Nevertheless I strongly believe the bug should be

Re: [PATCH] mm/alloc: fallback to first node if the wanted node offline

2018-12-06 Thread Michal Hocko
On Fri 07-12-18 10:56:51, Pingfan Liu wrote: [...] > In a short word, the fix method should consider about the two factors: > semantic of online-node and the effect on all archs I am pretty sure there is a lot of room for unification in this area. Nevertheless I strongly believe the bug should be

Morning

2018-12-06 Thread Joy Smith Johnson
Hello; kindly see the attached my proposal Charities donation. Mrs. Joy Smith Johnson.rtf Description: RTF file

Morning

2018-12-06 Thread Joy Smith Johnson
Hello; kindly see the attached my proposal Charities donation. Mrs. Joy Smith Johnson.rtf Description: RTF file

Re: MADV_HUGEPAGE vs. NUMA semantic (was: Re: [LKP] [mm] ac5b2c1891: vm-scalability.throughput -61.3% regression)

2018-12-06 Thread Michal Hocko
On Thu 06-12-18 20:31:46, Linus Torvalds wrote: > [ Oops. different thread for me due to edited subject, so I saw this > after replying to the earlier email by David ] Sorry about that but I really wanted to make the actual discussion about semantic clearly distinguished because the thread just

Re: MADV_HUGEPAGE vs. NUMA semantic (was: Re: [LKP] [mm] ac5b2c1891: vm-scalability.throughput -61.3% regression)

2018-12-06 Thread Michal Hocko
On Thu 06-12-18 20:31:46, Linus Torvalds wrote: > [ Oops. different thread for me due to edited subject, so I saw this > after replying to the earlier email by David ] Sorry about that but I really wanted to make the actual discussion about semantic clearly distinguished because the thread just

Re: use generic DMA mapping code in powerpc V4

2018-12-06 Thread Christian Zigotzky
Good to know. Sorry because of the email. Sent from my iPhone > On 6. Dec 2018, at 20:36, Christoph Hellwig wrote: > >> On Thu, Dec 06, 2018 at 06:10:54PM +0100, Christian Zigotzky wrote: >> Please don’t merge this code. We are still testing and trying to figure out >> where the problems are

[PATCH v3 1/2] dmaengine: 8250_mtk_dma: add Mediatek uart DMA support

2018-12-06 Thread Long Cheng
In DMA engine framework, add 8250 mtk dma to support it. Signed-off-by: Long Cheng --- drivers/dma/mediatek/8250_mtk_dma.c | 847 +++ drivers/dma/mediatek/Kconfig| 11 + drivers/dma/mediatek/Makefile |1 + 3 files changed, 859 insertions(+)

Re: [PATCH v2 2/3] arm64: dts: allwinner: a64: Add A64 CSI controller

2018-12-06 Thread Maxime Ripard
On Thu, Dec 06, 2018 at 06:07:59PM +0100, Michael Nazzareno Trimarchi wrote: > On Thu, Dec 6, 2018 at 4:34 PM Maxime Ripard > wrote: > > On Thu, Dec 06, 2018 at 06:53:05PM +0530, Jagan Teki wrote: > > > Allwinner A64 CSI controller has similar features as like in > > > H3, So add support for A64

[PATCH v3 1/2] dmaengine: 8250_mtk_dma: add Mediatek uart DMA support

2018-12-06 Thread Long Cheng
In DMA engine framework, add 8250 mtk dma to support it. Signed-off-by: Long Cheng --- drivers/dma/mediatek/8250_mtk_dma.c | 847 +++ drivers/dma/mediatek/Kconfig| 11 + drivers/dma/mediatek/Makefile |1 + 3 files changed, 859 insertions(+)

Re: [PATCH v2 2/3] arm64: dts: allwinner: a64: Add A64 CSI controller

2018-12-06 Thread Maxime Ripard
On Thu, Dec 06, 2018 at 06:07:59PM +0100, Michael Nazzareno Trimarchi wrote: > On Thu, Dec 6, 2018 at 4:34 PM Maxime Ripard > wrote: > > On Thu, Dec 06, 2018 at 06:53:05PM +0530, Jagan Teki wrote: > > > Allwinner A64 CSI controller has similar features as like in > > > H3, So add support for A64

[PATCH v3 0/2] add uart DMA function

2018-12-06 Thread Long Cheng
In Mediatek SOCs, the uart can support DMA function. Base on DMA engine formwork, we add the DMA code to support uart. And put the code under drivers/dma. This series contains document bindings, Kconfig to control the function enable or not, device tree including interrupt and dma device node,

[PATCH v3 2/2] arm: dts: mt2701: add uart APDMA to device tree

2018-12-06 Thread Long Cheng
1. add uart APDMA controller device node 2. add uart 0/1/2/3/4/5 DMA function Signed-off-by: Long Cheng --- arch/arm64/boot/dts/mediatek/mt2712e.dtsi | 50 + 1 file changed, 50 insertions(+) diff --git a/arch/arm64/boot/dts/mediatek/mt2712e.dtsi

[PATCH v3 0/2] add uart DMA function

2018-12-06 Thread Long Cheng
In Mediatek SOCs, the uart can support DMA function. Base on DMA engine formwork, we add the DMA code to support uart. And put the code under drivers/dma. This series contains document bindings, Kconfig to control the function enable or not, device tree including interrupt and dma device node,

[PATCH v3 2/2] arm: dts: mt2701: add uart APDMA to device tree

2018-12-06 Thread Long Cheng
1. add uart APDMA controller device node 2. add uart 0/1/2/3/4/5 DMA function Signed-off-by: Long Cheng --- arch/arm64/boot/dts/mediatek/mt2712e.dtsi | 50 + 1 file changed, 50 insertions(+) diff --git a/arch/arm64/boot/dts/mediatek/mt2712e.dtsi

Re: [PATCH v2 0/2] mtd: rawnand: denali: clean-up unnecessary hook and device reset

2018-12-06 Thread Miquel Raynal
Hi Masahiro, Masahiro Yamada wrote on Wed, 28 Nov 2018 14:27:35 +0900: > I sent this series on September, > and Miquel replied this series was applied: > http://patchwork.ozlabs.org/patch/967242/ > > But, It turned out not applied. > > I rebased it and resending now. > > > Masahiro Yamada

Re: [PATCH v6 0/8] AXP8x3 AC and battery power supply support

2018-12-06 Thread Chen-Yu Tsai
On Fri, Dec 7, 2018 at 3:28 PM Lee Jones wrote: > > On Wed, 05 Dec 2018, Sebastian Reichel wrote: > > > Hi, > > > > On Fri, Nov 30, 2018 at 04:31:28PM +0800, Chen-Yu Tsai wrote: > > > On Wed, Nov 21, 2018 at 1:52 AM Oskari Lemmela wrote: > > > > > > > > AXP813 AC power supply support with input

Re: [PATCH v2 0/2] mtd: rawnand: denali: clean-up unnecessary hook and device reset

2018-12-06 Thread Miquel Raynal
Hi Masahiro, Masahiro Yamada wrote on Wed, 28 Nov 2018 14:27:35 +0900: > I sent this series on September, > and Miquel replied this series was applied: > http://patchwork.ozlabs.org/patch/967242/ > > But, It turned out not applied. > > I rebased it and resending now. > > > Masahiro Yamada

Re: [PATCH v6 0/8] AXP8x3 AC and battery power supply support

2018-12-06 Thread Chen-Yu Tsai
On Fri, Dec 7, 2018 at 3:28 PM Lee Jones wrote: > > On Wed, 05 Dec 2018, Sebastian Reichel wrote: > > > Hi, > > > > On Fri, Nov 30, 2018 at 04:31:28PM +0800, Chen-Yu Tsai wrote: > > > On Wed, Nov 21, 2018 at 1:52 AM Oskari Lemmela wrote: > > > > > > > > AXP813 AC power supply support with input

Re: MADV_HUGEPAGE vs. NUMA semantic (was: Re: [LKP] [mm] ac5b2c1891: vm-scalability.throughput -61.3% regression)

2018-12-06 Thread Michal Hocko
On Thu 06-12-18 15:49:04, David Rientjes wrote: > On Thu, 6 Dec 2018, Michal Hocko wrote: > > > MADV_HUGEPAGE changes the picture because the caller expressed a need > > for THP and is willing to go extra mile to get it. That involves > > allocation latency and as of now also a potential remote

Re: MADV_HUGEPAGE vs. NUMA semantic (was: Re: [LKP] [mm] ac5b2c1891: vm-scalability.throughput -61.3% regression)

2018-12-06 Thread Michal Hocko
On Thu 06-12-18 15:49:04, David Rientjes wrote: > On Thu, 6 Dec 2018, Michal Hocko wrote: > > > MADV_HUGEPAGE changes the picture because the caller expressed a need > > for THP and is willing to go extra mile to get it. That involves > > allocation latency and as of now also a potential remote

[PATCH 1/1] virtio: remove deprecated VIRTIO_PCI_CONFIG()

2018-12-06 Thread Dongli Zhang
VIRTIO_PCI_CONFIG() is deprecated. Use VIRTIO_PCI_CONFIG_OFF() instead. Signed-off-by: Dongli Zhang --- drivers/virtio/virtio_pci_legacy.c | 6 -- include/uapi/linux/virtio_pci.h| 2 -- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/virtio/virtio_pci_legacy.c

Re: [PATCH v7 0/7] Introduce STPMIC1 PMIC Driver

2018-12-06 Thread Lee Jones
On Wed, 05 Dec 2018, Pascal PAILLET-LME wrote: > > pascal paillet (p.pail...@st.com) Le Mans / France > Microcontrollers and Digital ICs Group | Application Development > TEL: +33.(0)2.44.02.74.69 | TINA: 166 7469 > > Le 12/05/2018 10:36 AM, Lee Jones a écrit : > > On Tue, 04 Dec 2018, Pascal

Re: [PATCH v7 0/7] Introduce STPMIC1 PMIC Driver

2018-12-06 Thread Lee Jones
On Wed, 05 Dec 2018, Pascal PAILLET-LME wrote: > > pascal paillet (p.pail...@st.com) Le Mans / France > Microcontrollers and Digital ICs Group | Application Development > TEL: +33.(0)2.44.02.74.69 | TINA: 166 7469 > > Le 12/05/2018 10:36 AM, Lee Jones a écrit : > > On Tue, 04 Dec 2018, Pascal

Re: [PATCH v6 0/8] AXP8x3 AC and battery power supply support

2018-12-06 Thread Lee Jones
On Wed, 05 Dec 2018, Sebastian Reichel wrote: > Hi, > > On Fri, Nov 30, 2018 at 04:31:28PM +0800, Chen-Yu Tsai wrote: > > On Wed, Nov 21, 2018 at 1:52 AM Oskari Lemmela wrote: > > > > > > AXP813 AC power supply support with input current and > > > voltage limiting support. > > > > > > AXP803 AC

Re: [PATCH v6 0/8] AXP8x3 AC and battery power supply support

2018-12-06 Thread Lee Jones
On Wed, 05 Dec 2018, Sebastian Reichel wrote: > Hi, > > On Fri, Nov 30, 2018 at 04:31:28PM +0800, Chen-Yu Tsai wrote: > > On Wed, Nov 21, 2018 at 1:52 AM Oskari Lemmela wrote: > > > > > > AXP813 AC power supply support with input current and > > > voltage limiting support. > > > > > > AXP803 AC

Re: [PATCH v4 0/5] powerpc: system call table generation support

2018-12-06 Thread Satheesh Rajendran
On Fri, Dec 07, 2018 at 11:41:35AM +0530, Firoz Khan wrote: > The purpose of this patch series is, we can easily > add/modify/delete system call table support by cha- > nging entry in syscall.tbl file instead of manually > changing many files. The other goal is to unify the > system call table

Re: [PATCH v5 1/3] mm: Add support for kmem caches in DMA32 zone

2018-12-06 Thread Vlastimil Babka
On 12/7/18 7:16 AM, Nicolas Boichat wrote: > IOMMUs using ARMv7 short-descriptor format require page tables > to be allocated within the first 4GB of RAM, even on 64-bit systems. > On arm64, this is done by passing GFP_DMA32 flag to memory allocation > functions. > > For IOMMU L2 tables that only

Re: [PATCH 1/3] mfd: cros_ec: Add commands to control codec

2018-12-06 Thread Lee Jones
On Thu, 06 Dec 2018, Cheng-yi Chiang wrote: > On Wed, Dec 5, 2018 at 7:34 PM Lee Jones wrote: > > > > On Wed, 05 Dec 2018, Lee Jones wrote: > > > > > On Wed, 05 Dec 2018, Cheng-yi Chiang wrote: > > > > > > > Hi Lee, > > > > > > > > I tried to apply this patch based on > > > > for-mfd-next branch

Re: [PATCH 1/3] mfd: cros_ec: Add commands to control codec

2018-12-06 Thread Lee Jones
On Thu, 06 Dec 2018, Cheng-yi Chiang wrote: > On Wed, Dec 5, 2018 at 7:34 PM Lee Jones wrote: > > > > On Wed, 05 Dec 2018, Lee Jones wrote: > > > > > On Wed, 05 Dec 2018, Cheng-yi Chiang wrote: > > > > > > > Hi Lee, > > > > > > > > I tried to apply this patch based on > > > > for-mfd-next branch

Re: [PATCH v2] tps65218: Use devm_regmap_add_irq_chip and clean up error path in probe

2018-12-06 Thread Ladislav Michl
On Fri, Dec 07, 2018 at 06:19:48AM +0530, Keerthy wrote: > Use devm_regmap_add_irq_chip and clean up error path in probe. > Hence clean up the probe error path and the remove function. > > Reported-by: Christian Hohnstaedt > Signed-off-by: Keerthy > --- > > Changes in v2: > > * Cleaned up

Re: [PATCH v2] tps65218: Use devm_regmap_add_irq_chip and clean up error path in probe

2018-12-06 Thread Ladislav Michl
On Fri, Dec 07, 2018 at 06:19:48AM +0530, Keerthy wrote: > Use devm_regmap_add_irq_chip and clean up error path in probe. > Hence clean up the probe error path and the remove function. > > Reported-by: Christian Hohnstaedt > Signed-off-by: Keerthy > --- > > Changes in v2: > > * Cleaned up

Re: [PATCH] thermal: uniphier: Convert to SPDX identifier

2018-12-06 Thread Daniel Lezcano
On 07/12/2018 02:06, Kunihiko Hayashi wrote: > This converts license boilerplate to SPDX identifier, and removes > unnecessary lines. > > Signed-off-by: Kunihiko Hayashi > --- Reviewed-by: Daniel Lezcano > drivers/thermal/uniphier_thermal.c | 13 + > 1 file changed, 1

Re: [PATCH] thermal: uniphier: Convert to SPDX identifier

2018-12-06 Thread Daniel Lezcano
On 07/12/2018 02:06, Kunihiko Hayashi wrote: > This converts license boilerplate to SPDX identifier, and removes > unnecessary lines. > > Signed-off-by: Kunihiko Hayashi > --- Reviewed-by: Daniel Lezcano > drivers/thermal/uniphier_thermal.c | 13 + > 1 file changed, 1

Re: [PATCH v2 1/3] binder: fix sparse warnings on locking context

2018-12-06 Thread Greg Kroah-Hartman
On Thu, Dec 06, 2018 at 08:37:41AM -0800, Todd Kjos wrote: > On Thu, Dec 6, 2018 at 6:51 AM Greg KH wrote: > > > > On Wed, Dec 05, 2018 at 03:19:24PM -0800, Todd Kjos wrote: > > > Add __acquire()/__release() annnotations to fix warnings > > > in sparse context checking > > > > > > There is one

Re: linux-next: manual merge of the jc_docs tree with the fscrypt tree

2018-12-06 Thread Jonathan Corbet
On Fri, 7 Dec 2018 11:53:40 +1100 Stephen Rothwell wrote: > Today's linux-next merge of the jc_docs tree got a conflict in: > > Documentation/filesystems/index.rst > > between commit: > > 1b71a6809f96 ("fs-verity: add a documentation file") > > from the fscrypt tree and commit: > >

Re: [PATCH v2 1/3] binder: fix sparse warnings on locking context

2018-12-06 Thread Greg Kroah-Hartman
On Thu, Dec 06, 2018 at 08:37:41AM -0800, Todd Kjos wrote: > On Thu, Dec 6, 2018 at 6:51 AM Greg KH wrote: > > > > On Wed, Dec 05, 2018 at 03:19:24PM -0800, Todd Kjos wrote: > > > Add __acquire()/__release() annnotations to fix warnings > > > in sparse context checking > > > > > > There is one

Re: linux-next: manual merge of the jc_docs tree with the fscrypt tree

2018-12-06 Thread Jonathan Corbet
On Fri, 7 Dec 2018 11:53:40 +1100 Stephen Rothwell wrote: > Today's linux-next merge of the jc_docs tree got a conflict in: > > Documentation/filesystems/index.rst > > between commit: > > 1b71a6809f96 ("fs-verity: add a documentation file") > > from the fscrypt tree and commit: > >

Re: [PATCH] clocksource/drivers/timer-imx-tpm: Specify clock name for timer-of

2018-12-06 Thread Daniel Lezcano
On 07/12/2018 07:05, Anson Huang wrote: > i.MX TPM needs "ipg" clock for register access and "per" clock for > timer function, the driver gets "ipg" clock by searching the clock > name, but timer-of initialization will get first clock in device > tree TPM node since no clock name specified in

Re: [PATCH] clocksource/drivers/timer-imx-tpm: Specify clock name for timer-of

2018-12-06 Thread Daniel Lezcano
On 07/12/2018 07:05, Anson Huang wrote: > i.MX TPM needs "ipg" clock for register access and "per" clock for > timer function, the driver gets "ipg" clock by searching the clock > name, but timer-of initialization will get first clock in device > tree TPM node since no clock name specified in

Re: [PATCH v2] clocksource/drivers/fttmr010: fix invalid interrupt register access

2018-12-06 Thread Daniel Lezcano
On 07/12/2018 02:13, Tao Ren wrote: > On 11/5/18, 11:00 AM, "Tao Ren" wrote: > >> On 11/5/18, 10:51 AM, "Daniel Lezcano" wrote: >>> Oh right, sorry. Should it go to stable also ? Is there a Fixes tag it can >>> apply ? >>> >> Personally I don't think it needs to go to stable, because I don't

Re: > [PATCH] Security: Handle hidepid option correctly

2018-12-06 Thread 程洋
@Nick. Would mind giving this patch an "Acked-by"? This issue causes any Android who uses latest kernel cannot mount proc with "hidepid=2" option. Which causes problems 程洋 于2018年12月5日周三 下午3:26写道: > > Anyone who can review my patch? > > 程洋 于2018年11月30日周五 上午10:34写道: > > > > Here is an article

Re: [PATCH v2] clocksource/drivers/fttmr010: fix invalid interrupt register access

2018-12-06 Thread Daniel Lezcano
On 07/12/2018 02:13, Tao Ren wrote: > On 11/5/18, 11:00 AM, "Tao Ren" wrote: > >> On 11/5/18, 10:51 AM, "Daniel Lezcano" wrote: >>> Oh right, sorry. Should it go to stable also ? Is there a Fixes tag it can >>> apply ? >>> >> Personally I don't think it needs to go to stable, because I don't

Re: > [PATCH] Security: Handle hidepid option correctly

2018-12-06 Thread 程洋
@Nick. Would mind giving this patch an "Acked-by"? This issue causes any Android who uses latest kernel cannot mount proc with "hidepid=2" option. Which causes problems 程洋 于2018年12月5日周三 下午3:26写道: > > Anyone who can review my patch? > > 程洋 于2018年11月30日周五 上午10:34写道: > > > > Here is an article

Re: linux-next: build failure after merge of the thermal tree

2018-12-06 Thread Amit Kucheria
o enable the config and test it correctly. There was bug on where the .config file ended up. I've fixed it and sent v4 of the patches. Please consider applying them instead. Regards, Amit > I have used the thermal tree from next-20181206 for today. > > -- > Cheers, > Stephen Rothwell

Re: linux-next: build failure after merge of the thermal tree

2018-12-06 Thread Amit Kucheria
o enable the config and test it correctly. There was bug on where the .config file ended up. I've fixed it and sent v4 of the patches. Please consider applying them instead. Regards, Amit > I have used the thermal tree from next-20181206 for today. > > -- > Cheers, > Stephen Rothwell

[PATCH v4 0/2] driver: thermal: Move some drivers into subdirs

2018-12-06 Thread Amit Kucheria
(Apologies for the build failure. My scripts to enable these configs and build-test them failed. They've been fixed now) Move the various drivers for Intel platforms into their own subdir. Also consolidate Qualcomm drivers into the qcom subdir. This cleans up the directory making it easier to

[PATCH v4 1/2] drivers: thermal: Move various drivers for intel platforms into a subdir

2018-12-06 Thread Amit Kucheria
This cleans up the directory a bit, now that we have several other platforms using platform-specific sub-directories. Compile-tested with ARCH=x86 defconfig and the drivers explicitly enabled with menuconfig. Signed-off-by: Amit Kucheria Acked-by: Daniel Lezcano --- drivers/thermal/Kconfig

[PATCH v4 0/2] driver: thermal: Move some drivers into subdirs

2018-12-06 Thread Amit Kucheria
(Apologies for the build failure. My scripts to enable these configs and build-test them failed. They've been fixed now) Move the various drivers for Intel platforms into their own subdir. Also consolidate Qualcomm drivers into the qcom subdir. This cleans up the directory making it easier to

[PATCH v4 1/2] drivers: thermal: Move various drivers for intel platforms into a subdir

2018-12-06 Thread Amit Kucheria
This cleans up the directory a bit, now that we have several other platforms using platform-specific sub-directories. Compile-tested with ARCH=x86 defconfig and the drivers explicitly enabled with menuconfig. Signed-off-by: Amit Kucheria Acked-by: Daniel Lezcano --- drivers/thermal/Kconfig

[PATCH v4 2/2] drivers: thermal: Move QCOM_SPMI_TEMP_ALARM into the qcom subdir

2018-12-06 Thread Amit Kucheria
This cleans up the directory a bit allowing just one place to look for thermal related drivers for QCOM platforms instead of being scattered in the root directory and the qcom/ subdirectory. Compile-tested with ARCH=arm64 defconfig and the driver explicitly enabled with menuconfig. Signed-off-by:

[PATCH v4 2/2] drivers: thermal: Move QCOM_SPMI_TEMP_ALARM into the qcom subdir

2018-12-06 Thread Amit Kucheria
This cleans up the directory a bit allowing just one place to look for thermal related drivers for QCOM platforms instead of being scattered in the root directory and the qcom/ subdirectory. Compile-tested with ARCH=arm64 defconfig and the driver explicitly enabled with menuconfig. Signed-off-by:

Re: [PATCH AUTOSEL 4.19 040/123] bpf: allocate local storage buffers using GFP_ATOMIC

2018-12-06 Thread Naresh Kamboju
On Fri, 7 Dec 2018 at 12:10, Naresh Kamboju wrote: > > On Wed, 5 Dec 2018 at 15:08, Sasha Levin wrote: > > > > From: Roman Gushchin > > > > [ Upstream commit 569a933b03f3c48b392fe67c0086b3a6b9306b5a ] > > > > Naresh reported an issue with the non-atomic memory allocation of > > cgroup local

RE: [PATCH v2 2/3] ALSA: hda/realtek: Enable audio jacks of ASUS UX533FD with ALC294

2018-12-06 Thread Kailang
Hi Jian Hong, I call our agent guy @ WTMEC. Please modify as bellowing then test again. Remove EAPD control by hidden. If this modify patch was pass audio test, please regenerate patch to Takashi. If this patch will solve the speaker no sound issue, I think the model name maybe could rename to

RE: [PATCH v2 2/3] ALSA: hda/realtek: Enable audio jacks of ASUS UX533FD with ALC294

2018-12-06 Thread Kailang
Hi Jian Hong, I call our agent guy @ WTMEC. Please modify as bellowing then test again. Remove EAPD control by hidden. If this modify patch was pass audio test, please regenerate patch to Takashi. If this patch will solve the speaker no sound issue, I think the model name maybe could rename to

Re: [PATCH 4.19 00/41] 4.19.8-stable review

2018-12-06 Thread Greg Kroah-Hartman
On Thu, Dec 06, 2018 at 03:10:03PM -0700, shuah wrote: > On 12/6/18 7:38 AM, Greg Kroah-Hartman wrote: > > This is the start of the stable review cycle for the 4.19.8 release. > > There are 41 patches in this series, all will be posted as a response > > to this one. If anyone has any issues with

Re: [PATCH 4.19 00/41] 4.19.8-stable review

2018-12-06 Thread Greg Kroah-Hartman
On Thu, Dec 06, 2018 at 03:10:03PM -0700, shuah wrote: > On 12/6/18 7:38 AM, Greg Kroah-Hartman wrote: > > This is the start of the stable review cycle for the 4.19.8 release. > > There are 41 patches in this series, all will be posted as a response > > to this one. If anyone has any issues with

[PATCH v3 0/2] add SAMA5D2 PIOBU GPIO driver

2018-12-06 Thread Andrei.Stefanescu
On SAMA5D2 SoC the PIOBU pins do not lose their voltage during Backup/Self-refresh mode. This can be useful, for example, when the voltage must remain positive for a peripheral during Backup/Self-refresh mode (suspend-to ram is the Linux equivalent state). v3: - change driver's compatible to

[PATCH v3 0/2] add SAMA5D2 PIOBU GPIO driver

2018-12-06 Thread Andrei.Stefanescu
On SAMA5D2 SoC the PIOBU pins do not lose their voltage during Backup/Self-refresh mode. This can be useful, for example, when the voltage must remain positive for a peripheral during Backup/Self-refresh mode (suspend-to ram is the Linux equivalent state). v3: - change driver's compatible to

[PATCH v3 1/2] dt-bindings: arm: atmel: describe SECUMOD usage as a GPIO controller

2018-12-06 Thread Andrei.Stefanescu
This patch describes the Security Module's usage as a GPIO controller for its PIOBU pins. These pins have the special property of maintaining their voltage during suspend-to-mem. Signed-off-by: Andrei Stefanescu --- Documentation/devicetree/bindings/arm/atmel-sysregs.txt | 12 +++- 1

[PATCH v3 2/2] gpio: add driver for SAMA5D2 PIOBU pins

2018-12-06 Thread Andrei.Stefanescu
PIOBU pins do not lose their voltage during Backup/Self-refresh. This patch adds a simple GPIO controller for them and a maintainer for the driver. This driver adds support for using the pins as GPIO offering the possibility to read/set the voltage. Signed-off-by: Andrei Stefanescu ---

[PATCH v3 1/2] dt-bindings: arm: atmel: describe SECUMOD usage as a GPIO controller

2018-12-06 Thread Andrei.Stefanescu
This patch describes the Security Module's usage as a GPIO controller for its PIOBU pins. These pins have the special property of maintaining their voltage during suspend-to-mem. Signed-off-by: Andrei Stefanescu --- Documentation/devicetree/bindings/arm/atmel-sysregs.txt | 12 +++- 1

[PATCH v3 2/2] gpio: add driver for SAMA5D2 PIOBU pins

2018-12-06 Thread Andrei.Stefanescu
PIOBU pins do not lose their voltage during Backup/Self-refresh. This patch adds a simple GPIO controller for them and a maintainer for the driver. This driver adds support for using the pins as GPIO offering the possibility to read/set the voltage. Signed-off-by: Andrei Stefanescu ---

Re: [PATCH AUTOSEL 4.19 040/123] bpf: allocate local storage buffers using GFP_ATOMIC

2018-12-06 Thread Naresh Kamboju
On Wed, 5 Dec 2018 at 15:08, Sasha Levin wrote: > > From: Roman Gushchin > > [ Upstream commit 569a933b03f3c48b392fe67c0086b3a6b9306b5a ] > > Naresh reported an issue with the non-atomic memory allocation of > cgroup local storage buffers: > > [ 73.047526] BUG: sleeping function called from

[PATCH -next] powerpc/mm: drop test in pp_601

2018-12-06 Thread YueHaibing
The test selects between two identical values, so it doesn't look useful. It turns out that the tested expression can only be true anyway, so drop the test, the corresponding parameter, and the corresponding argument at the only call site. The semantic match that finds this problem is as follows:

Re: [PATCH RFC 1/1] swiotlb: add debugfs to track swiotlb buffer usage

2018-12-06 Thread Joe Jin
On 12/6/18 9:49 PM, Dongli Zhang wrote: > > > On 12/07/2018 12:12 AM, Joe Jin wrote: >> Hi Dongli, >> >> Maybe move d_swiotlb_usage declare into swiotlb_create_debugfs(): > > I assume the call of swiotlb_tbl_map_single() might be frequent in some > situations, e.g., when 'swiotlb=force'. > >

[PATCHv2 net 3/3] sctp: fa_resize sctp stream instead of redo fa_alloc

2018-12-06 Thread Xin Long
Now when doing 4-shakehand or adding new streams, sctp has to allocate new memory for asoc->stream and copy the old stream's information from the old asoc->stream to the new one. It also cause the stream pointers to change, by which a panic was even caused due to stream->out_curr's change. To fix

[PATCHv2 net 2/3] flex_array: support flex_array_resize

2018-12-06 Thread Xin Long
This function can dynamically change total_nr_elements of a flex_array, and keep the old elements of the same memory. Returns 0 if it succeeds. Note that it won't do any memory allocation or shrinking for elements, which should be only done by flex_array_prealloc and flex_array_shrink.

[PATCHv2 net 0/3] net: add support for flex_array_resize in flex_array

2018-12-06 Thread Xin Long
Without the support for the total_nr_elements's growing or shrinking dynamically, flex_array is not that 'flexible'. Like when users want to change the size, they have to redo flex_array_alloc and copy all the elements from the old to the new one. The worse thing is every element's memory gets

[PATCHv2 net 1/3] flex_array: make FLEX_ARRAY_BASE_SIZE the same value of FLEX_ARRAY_PART_SIZE

2018-12-06 Thread Xin Long
This patch is to separate the base data memory from struct flex_array and save it into a page. With this change, total_nr_elements of a flex_array can grow or shrink without having the old element's memory changed when the new size of the flex_arry crosses FLEX_ARRAY_BASE_SIZE, which will be added

Re: [PATCH net-next v2 0/4] net: mitigate retpoline overhead

2018-12-06 Thread David Miller
From: David Miller Date: Thu, 06 Dec 2018 22:24:09 -0800 (PST) > Series applied, thanks! Erm... actually reverted. Please fix these build failures: ld: net/ipv6/ip6_offload.o: in function `ipv6_gro_receive': ip6_offload.c:(.text+0xda2): undefined reference to `udp6_gro_receive' ld:

Re: [PATCH v1 0/4] phy: qcom-qmp: Fix clock-cells binding and provider

2018-12-06 Thread Vivek Gautam
Hi, On Fri, Dec 7, 2018 at 10:15 AM Kishon Vijay Abraham I wrote: > > Vivek, > > On 04/12/18 6:07 PM, Vivek Gautam wrote: > > Hi Kishon, > > > > On Tue, Dec 4, 2018 at 1:44 PM Kishon Vijay Abraham I wrote: > >> > >> Hi Andy Gross, David Brown, Vivek, > >> > >> On 30/11/18 3:43 AM, Evan Green

Re: [PATCH v1 0/4] phy: qcom-qmp: Fix clock-cells binding and provider

2018-12-06 Thread Vivek Gautam
Hi, On Fri, Dec 7, 2018 at 10:15 AM Kishon Vijay Abraham I wrote: > > Vivek, > > On 04/12/18 6:07 PM, Vivek Gautam wrote: > > Hi Kishon, > > > > On Tue, Dec 4, 2018 at 1:44 PM Kishon Vijay Abraham I wrote: > >> > >> Hi Andy Gross, David Brown, Vivek, > >> > >> On 30/11/18 3:43 AM, Evan Green

Re: [PATCH net-next v2 0/4] net: mitigate retpoline overhead

2018-12-06 Thread David Miller
From: Paolo Abeni Date: Wed, 5 Dec 2018 19:13:38 +0100 > The spectre v2 counter-measures, aka retpolines, are a source of measurable > overhead[1]. We can partially address that when the function pointer refers to > a builtin symbol resorting to a list of tests vs well-known builtin function >

Re: [PATCH -V8 00/21] swap: Swapout/swapin THP in one piece

2018-12-06 Thread Huang, Ying
Huang Ying writes: > Hi, Andrew, could you help me to check whether the overall design is > reasonable? > > Hi, Hugh, Shaohua, Minchan and Rik, could you help me to review the > swap part of the patchset? Especially [02/21], [03/21], [04/21], > [05/21], [06/21], [07/21], [08/21], [09/21],

Re: [PATCH -V8 00/21] swap: Swapout/swapin THP in one piece

2018-12-06 Thread Huang, Ying
Huang Ying writes: > Hi, Andrew, could you help me to check whether the overall design is > reasonable? > > Hi, Hugh, Shaohua, Minchan and Rik, could you help me to review the > swap part of the patchset? Especially [02/21], [03/21], [04/21], > [05/21], [06/21], [07/21], [08/21], [09/21],

Re: [PATCH v5 00/11] crypto: crypto_user_stat: misc enhancement

2018-12-06 Thread Herbert Xu
On Thu, Nov 29, 2018 at 02:42:15PM +, Corentin Labbe wrote: > Hello > > This patchset fixes all reported problem by Eric biggers. > > Regards > > Changes since v4: > - Inlined functions when !CRYPTO_STATS > > Changes since v3: > - Added a crypto_stats_init as asked vy Neil Horman > - Fixed

Re: [PATCH] crypto: cavium/nitrox convert to DEFINE_SHOW_ATTRIBUTE

2018-12-06 Thread Herbert Xu
On Sat, Dec 01, 2018 at 04:56:30AM -0500, Yangtao Li wrote: > Use DEFINE_SHOW_ATTRIBUTE macro to simplify the code. > > Signed-off-by: Yangtao Li > --- > drivers/crypto/cavium/nitrox/nitrox_debugfs.c | 48 --- > 1 file changed, 9 insertions(+), 39 deletions(-) Patch applied.

Re: [PATCH] MAINTAINERS: change NX/VMX maintainers

2018-12-06 Thread Herbert Xu
On Tue, Nov 27, 2018 at 03:27:21PM -0200, Paulo Flabiano Smorigo wrote: > Add Breno and Nayna as NX/VMX crypto driver maintainers. Also change my > email address to my personal account and remove Leonidas since he's not > working with the driver anymore. > > Signed-off-by: Paulo Flabiano Smorigo

Re: [PATCH 0/3] new HW version and co-maintainer

2018-12-06 Thread Herbert Xu
On Tue, Nov 13, 2018 at 09:40:34AM +, Gilad Ben-Yossef wrote: > Add support for CryptoCell 703 HW revision and a new co-maintainer. > > Gilad Ben-Yossef (3): > crypto: ccree: add support for CryptoCell 703 > dt-bindings: crypto: ccree: add dt bindings for ccree 703 > MAINTAINERS: ccree:

[PATCH v5 1/3] mm: Add support for kmem caches in DMA32 zone

2018-12-06 Thread Nicolas Boichat
IOMMUs using ARMv7 short-descriptor format require page tables to be allocated within the first 4GB of RAM, even on 64-bit systems. On arm64, this is done by passing GFP_DMA32 flag to memory allocation functions. For IOMMU L2 tables that only take 1KB, it would be a waste to allocate a full page

[PATCH v5 0/3] iommu/io-pgtable-arm-v7s: Use DMA32 zone for page tables

2018-12-06 Thread Nicolas Boichat
This is a follow-up to the discussion in [1], [2]. IOMMUs using ARMv7 short-descriptor format require page tables (level 1 and 2) to be allocated within the first 4GB of RAM, even on 64-bit systems. For L1 tables that are bigger than a page, we can just use __get_free_pages with GFP_DMA32 (on

Re: [PATCH v4 0/5] powerpc: system call table generation support

2018-12-06 Thread Firoz Khan
++ sathn...@linux.vnet.ibm.com, Hi Satheesh, On Fri, 7 Dec 2018 at 11:42, Firoz Khan wrote: > > > Changes since v3: > - split compat syscall table out from native table. > - modified the script to add new line in the generated >file. I have fixed few major issue. Could you perform boot

[PATCH v5 3/3] mm: Add /sys/kernel/slab/cache/cache_dma32

2018-12-06 Thread Nicolas Boichat
A previous patch in this series adds support for SLAB_CACHE_DMA32 kmem caches. This adds the corresponding /sys/kernel/slab/cache/cache_dma32 entries, and fixes slabinfo tool. Signed-off-by: Nicolas Boichat --- There were different opinions on whether this sysfs entry should be added, so I'll

[PATCH v5 2/3] iommu/io-pgtable-arm-v7s: Request DMA32 memory, and improve debugging

2018-12-06 Thread Nicolas Boichat
IOMMUs using ARMv7 short-descriptor format require page tables (level 1 and 2) to be allocated within the first 4GB of RAM, even on 64-bit systems. For level 1/2 pages, ensure GFP_DMA32 is used if CONFIG_ZONE_DMA32 is defined (e.g. on arm64 platforms). For level 2 pages, allocate a slab cache in

Re: [PATCH] mm, kmemleak: Little optimization while scanning

2018-12-06 Thread Oscar Salvador
> > + > > This one maybe not necessary. Yeah, that is a remind of an include file I used for time measurement. I hope Andrew can drop that if this is taken. > > /* > > * Kmemleak configuration and common defines. > > */ > > @@ -1547,11 +1548,14 @@ static void kmemleak_scan(void) > >

Re: [PATCH] mm, kmemleak: Little optimization while scanning

2018-12-06 Thread Oscar Salvador
> > + > > This one maybe not necessary. Yeah, that is a remind of an include file I used for time measurement. I hope Andrew can drop that if this is taken. > > /* > > * Kmemleak configuration and common defines. > > */ > > @@ -1547,11 +1548,14 @@ static void kmemleak_scan(void) > >

Re: [PATCH v2] mailbox: Hi3660: Fixup mailbox state machine malfunction issue

2018-12-06 Thread leo . yan
On Mon, Dec 03, 2018 at 02:13:08PM +0800, Kevin Wangtao wrote: > Current mailbox driver of Hi3660 release the mailbox directly > before sending a new message which may cause last message lost > and next message sending doesn't take effect actually. > > This patch fixes this issue by following the

Re: [PATCH v2] mailbox: Hi3660: Fixup mailbox state machine malfunction issue

2018-12-06 Thread leo . yan
On Mon, Dec 03, 2018 at 02:13:08PM +0800, Kevin Wangtao wrote: > Current mailbox driver of Hi3660 release the mailbox directly > before sending a new message which may cause last message lost > and next message sending doesn't take effect actually. > > This patch fixes this issue by following the

Crypto Fixes for 4.20

2018-12-06 Thread Herbert Xu
Hi Linus: This push fixes the following issues: - Disable the new crypto stats interface as it's still being changed. - Fix potential uses-after-free in cbc/cfb/pcbc. Please pull from git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git linus Herbert Xu (1): crypto:

[PATCH v4 5/5] powerpc: generate uapi header and system call table files

2018-12-06 Thread Firoz Khan
System call table generation script must be run to gener- ate unistd_32/64.h and syscall_table_32/64/c32/spu.h files. This patch will have changes which will invokes the script. This patch will generate unistd_32/64.h and syscall_table- _32/64/c32/spu.h files by the syscall table generation

[PATCH v4 3/5] powerpc: add system call table generation support

2018-12-06 Thread Firoz Khan
The system call tables are in different format in all architecture and it will be difficult to manually add or modify the system calls in the respective files. To make it easy by keeping a script and which will generate the uapi header and syscall table file. This change will also help to unify

[PATCH v4 4/5] powerpc: split compat syscall table out from native table

2018-12-06 Thread Firoz Khan
PowerPC uses a syscall table with native and compat calls interleaved, which is a slightly simpler way to define two matching tables. As we move to having the tables generated, that advantage is no longer important, but the interleaved table gets in the way of using the same scripts as on the

[PATCH v4 2/5] powerpc: move macro definition from asm/systbl.h

2018-12-06 Thread Firoz Khan
Move the macro definition for compat_sys_sigsuspend from asm/systbl.h to the file which it is getting included. One of the patch in this patch series is generating uapi header and syscall table files. In order to come up with a common implimentation across all architecture, we need to do this

[PATCH v4 1/5] powerpc: add __NR_syscalls along with NR_syscalls

2018-12-06 Thread Firoz Khan
NR_syscalls macro holds the number of system call exist in powerpc architecture. We have to change the value of NR_syscalls, if we add or delete a system call. One of the patch in this patch series has a script which will generate a uapi header based on syscall.tbl file. The syscall.tbl file

[PATCH v4 0/5] powerpc: system call table generation support

2018-12-06 Thread Firoz Khan
The purpose of this patch series is, we can easily add/modify/delete system call table support by cha- nging entry in syscall.tbl file instead of manually changing many files. The other goal is to unify the system call table generation support implementation across all the architectures. The

RE: [PATCH v7 09/10] usb: dwc3: Check for IOC/LST bit in both event->status and TRB->ctrl fields

2018-12-06 Thread Felipe Balbi
Hi, Anurag Kumar Vulisha writes: >>> @@ -2286,7 +2286,12 @@ static int >>dwc3_gadget_ep_reclaim_completed_trb(struct dwc3_ep *dep, >>> if (event->status & DEPEVT_STATUS_SHORT && !chain) >>> return 1; >>> >>> - if (event->status & (DEPEVT_STATUS_IOC | DEPEVT_STATUS_LST)) >>> +

Re: [PATCH] mm, kmemleak: Little optimization while scanning

2018-12-06 Thread Oscar Salvador
I just realized I forgot to add that this was suggested by Michal. Sorry, I was a but rushy. On Thu, 2018-12-06 at 14:19 +0100, Oscar Salvador wrote: > kmemleak_scan() goes through all online nodes and tries > to scan all used pages. > We can do better and use pfn_to_online_page(), so in case we

  1   2   3   4   5   6   7   8   9   10   >