Re: [External] Re: [PATCH v2 3/5] mm: memcontrol: charge kmem pages by using obj_cgroup APIs

2021-03-06 Thread Muchun Song
On Sat, Mar 6, 2021 at 3:41 AM Roman Gushchin wrote: > > On Wed, Mar 03, 2021 at 01:59:15PM +0800, Muchun Song wrote: > > Since Roman series "The new cgroup slab memory controller" applied. All > > slab objects are charged via the new APIs of obj_cgroup. The new APIs > > introduce a struct obj_cgr

Re: [PATCH 2/2] MIPS: Loongson64: Move loongson_system_configuration to loongson.h

2021-03-06 Thread Thomas Bogendoerfer
On Thu, Mar 04, 2021 at 07:00:57PM +0800, Qing Zhang wrote: > The purpose of separating loongson_system_configuration from boot_param.h > is to keep the other structure consistent with the firmware. > > Signed-off-by: Jiaxun Yang > Signed-off-by: Qing Zhang > --- > .../include/asm/mach-loongson

Re: [PATCH V2 mips/linux.git] firmware: bcm47xx_nvram: refactor finding & reading NVRAM

2021-03-06 Thread Thomas Bogendoerfer
On Fri, Mar 05, 2021 at 12:56:55PM +0100, Rafał Miłecki wrote: > On 05.03.2021 12:47, Philippe Mathieu-Daudé wrote: > > On Fri, Mar 5, 2021 at 11:16 AM Rafał Miłecki wrote: > > > On 05.03.2021 10:58, Philippe Mathieu-Daudé wrote: > > > > On Fri, Mar 5, 2021 at 6:55 AM Rafał Miłecki wrote: > > > >

Re: [PATCH 4.4 00/30] 4.4.260-rc1 review

2021-03-06 Thread Greg Kroah-Hartman
On Fri, Mar 05, 2021 at 11:06:34PM +0100, Pavel Machek wrote: > Hi! > > > This is the start of the stable review cycle for the 4.4.260 release. > > There are 30 patches in this series, all will be posted as a response > > to this one. If anyone has any issues with these being applied, please > >

[PATCH 2/3] perf tool: Enable warnings when compiling BPF programs

2021-03-06 Thread Ian Rogers
Add -Wall -Werror when compiling BPF skeletons. Signed-off-by: Ian Rogers --- tools/perf/Makefile.perf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/perf/Makefile.perf b/tools/perf/Makefile.perf index 5345ac70cd83..f43d2551f3de 100644 --- a/tools/perf/Makefile.perf ++

[PATCH 3/3] perf bpf: Minor whitespace cleanup.

2021-03-06 Thread Ian Rogers
Missed space after #include. Signed-off-by: Ian Rogers --- tools/perf/util/bpf_counter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/perf/util/bpf_counter.h b/tools/perf/util/bpf_counter.h index 2eca210e5dc1..cb9c532e0a07 100644 --- a/tools/perf/util/bpf_counter.h +

[PATCH 1/3] perf skel: Remove some unused variables.

2021-03-06 Thread Ian Rogers
Fixes -Wall warnings. Signed-off-by: Ian Rogers --- tools/perf/util/bpf_skel/bpf_prog_profiler.bpf.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/perf/util/bpf_skel/bpf_prog_profiler.bpf.c b/tools/perf/util/bpf_skel/bpf_prog_profiler.bpf.c index c7cec92d0236..ab12

[PATCH 2/2] staging: rtl8188eu: rename parameters of odm_phy_status_query()

2021-03-06 Thread Michael Straube
Rename parameters of odm_phy_status_query() to avoid camel case. pDM_Odm -> dm_odm pPhyInfo -> phy_info pPhyStatus -> phy_status pPktinfo -> pkt_info Signed-off-by: Michael Straube --- drivers/staging/rtl8188eu/hal/odm_hwconfig.c | 9 - drivers/staging/rtl8188eu/include/odm_hwconfig

[PATCH 1/2] staging: rtl8188eu: rename ODM_PhyStatusQuery()

2021-03-06 Thread Michael Straube
Rename ODM_PhyStatusQuery() to odm_phy_status_query() to avoid camel case. Signed-off-by: Michael Straube --- drivers/staging/rtl8188eu/hal/odm_hwconfig.c | 6 +++--- drivers/staging/rtl8188eu/hal/rtl8188e_rxdesc.c | 4 ++-- drivers/staging/rtl8188eu/include/odm_hwconfig.h | 8 3 f

Re: [PATCH] usb: cdnsp: Fixes incorrect value in ISOC TRB

2021-03-06 Thread Greg KH
On Sat, Mar 06, 2021 at 08:53:42AM +0800, Peter Chen wrote: > On 21-03-05 06:10:59, Pawel Laszczak wrote: > > From: Pawel Laszczak > > > > The value "start_cycle ? 0 : 1" in assignment caused > > implicit truncation whole value to 1 byte. > > To fix the issue, an explicit casting has been added.

Re: [PATCH] Staging: android: ashmem: fixed a struct without const

2021-03-06 Thread Greg KH
On Sat, Mar 06, 2021 at 12:38:17PM +0600, nabil5352 wrote: > Fixed a struct without const > > Signed-off-by: nabil5352 > --- > drivers/staging/android/ashmem.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/staging/android/ashmem.c > b/drivers/staging/android/

[PATCH v6] drm/loongson: Add DRM Driver for Loongson 7A1000 bridge chip

2021-03-06 Thread Chenyang Li
This patch adds an initial DRM driver for the Loongson LS7A1000 bridge chip(LS7A). The LS7A bridge chip contains two display controllers, support dual display output. The maximum support for each channel display is to 1920x1080@60Hz. At present, DC device detection and DRM driver registration are c

[PATCH v2] MIPS: kernel: Reserve exception base early to prevent corruption

2021-03-06 Thread Thomas Bogendoerfer
BMIPS is one of the few platforms that do change the exception base. After commit 2dcb39645441 ("memblock: do not start bottom-up allocations with kernel_end") we started seeing BMIPS boards fail to boot with the built-in FDT being corrupted. Before the cited commit, early allocations would be in

[PATCH] perf annotate: Fix sample events lost in stdio mode

2021-03-06 Thread Yang Jihong
In hist__find_annotations function, since have a hist_entry per IP for the same symbol, we free notes->src to signal already processed this symbol in stdio mode; when annotate, entry will skipped if notes->src is NULL to avoid repeated output. However, there is a problem, for example, run the fo

Re: [PATCH V2 mips/linux.git] firmware: bcm47xx_nvram: refactor finding & reading NVRAM

2021-03-06 Thread Rafał Miłecki
On 2021-03-06 09:00, Thomas Bogendoerfer wrote: On Fri, Mar 05, 2021 at 12:56:55PM +0100, Rafał Miłecki wrote: On 05.03.2021 12:47, Philippe Mathieu-Daudé wrote: > On Fri, Mar 5, 2021 at 11:16 AM Rafał Miłecki wrote: > > On 05.03.2021 10:58, Philippe Mathieu-Daudé wrote: > > > On Fri, Mar 5, 20

Re: [PATCH] MIPS: boot/compressed: Copy DTB to aligned address

2021-03-06 Thread Thomas Bogendoerfer
On Wed, Mar 03, 2021 at 02:37:55PM -0600, Rob Herring wrote: > On Wed, Mar 3, 2021 at 1:33 PM Paul Cercueil wrote: > > > > Since 5.12-rc1, the Device Tree blob must now be properly aligned. > > I had checked the other built-in cases as microblaze broke too, but > missed some of the many ways MIPS

Re: [PATCH 2/2] MIPS: Loongson64: Move loongson_system_configuration to loongson.h

2021-03-06 Thread zhangqing
On 03/06/2021 04:03 PM, Thomas Bogendoerfer wrote: as you are already touching mach-loongson64 files... Is there a chance you clean up that up even further ? My goal is to have only files in mach- files, which have an mach-generic counterpart. Everything else should go to its own directory. S

Re: [PATCH v3 2/2] usb: dwc3: Fix DRD mode change sequence following programming guide

2021-03-06 Thread Wesley Cheng
On 1/7/2021 5:51 PM, John Stultz wrote: > In reviewing the previous patch, Thinh Nguyen pointed out that > the DRD mode change sequence should be like the following when > switching from host -> device according to the programming guide > (for all DRD IPs): > 1. Reset controller with GCTL.CoreSo

Re: [PATCH 2/2] MIPS: Loongson64: Move loongson_system_configuration to loongson.h

2021-03-06 Thread Jiaxun Yang
On Sat, Mar 6, 2021, at 4:03 PM, Thomas Bogendoerfer wrote: > On Thu, Mar 04, 2021 at 07:00:57PM +0800, Qing Zhang wrote: > > The purpose of separating loongson_system_configuration from boot_param.h > > is to keep the other structure consistent with the firmware. > > > > Signed-off-by: Jiaxun

Re: [PATCH v3 1/2] usb: dwc3: Trigger a GCTL soft reset when switching modes in DRD

2021-03-06 Thread Wesley Cheng
On 1/8/2021 4:44 PM, Thinh Nguyen wrote: > Hi, > > John Stultz wrote: >> On Fri, Jan 8, 2021 at 4:26 AM Felipe Balbi wrote: >>> >>> Hi, >>> >>> John Stultz writes: From: Yu Chen Just resending this, as discussion died out a bit and I'm not sure how to make further progres

INTRODUCTION

2021-03-06 Thread Mr Ali Musa.
Dear Friend, How are you today, Please accept my sincere apologies if my email does not meet your business or personal ethics, I really like to have a good relationship with you, and I have a special reason why I decided to contact you because of the urgency of my situation here.I came across you

Re: [RFC PATCH] autofs: find_autofs_mount overmounted parent support

2021-03-06 Thread Ian Kent
On Fri, 2021-03-05 at 14:55 +0300, Alexander Mikhalitsyn wrote: > On Fri, 05 Mar 2021 18:10:02 +0800 > Ian Kent wrote: > > > On Thu, 2021-03-04 at 13:11 +0300, Alexander Mikhalitsyn wrote: > > > On Thu, 04 Mar 2021 14:54:11 +0800 > > > Ian Kent wrote: > > > > > > > On Wed, 2021-03-03 at 18:28 +

Re: [PATCH 03/28] KVM: nSVM: inject exceptions via svm_check_nested_events

2021-03-06 Thread Paolo Bonzini
On 06/03/21 02:39, Sean Christopherson wrote: Unless KVM (L0) knowingly wants to override L1, e.g. KVM_GUESTDBG_* cases, KVM shouldn't do a damn thing except forward the exception to L1 if L1 wants the exception. ud_interception() and gp_interception() do quite a bit before forwarding the except

Re: [PATCH 5.10 000/102] 5.10.21-rc1 review

2021-03-06 Thread Naresh Kamboju
On Fri, 5 Mar 2021 at 17:59, Greg Kroah-Hartman wrote: > > This is the start of the stable review cycle for the 5.10.21 release. > There are 102 patches in this series, all will be posted as a response > to this one. If anyone has any issues with these being applied, please > let me know. > > Res

[PATCH] bus:bt1-apb: remove duplicate include in bt1-apb.c

2021-03-06 Thread menglong8 . dong
From: Zhang Yunkai 'linux/clk.h' included in 'bt1-apb.c' is duplicated. Signed-off-by: Zhang Yunkai --- drivers/bus/bt1-apb.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/bus/bt1-apb.c b/drivers/bus/bt1-apb.c index b25ff941e7c7..74b1b712ef3a 100644 --- a/drivers/bus/bt1-apb.c +++

[PATCH v2 0/5] mtd: spi-nor: Cleanup patches

2021-03-06 Thread Tudor Ambarus
Various cleanup patches done while reviewing contributions. Tudor Ambarus (5): mtd: spi-nor: core: Advance erase after the erase cmd has been completed mtd: spi-nor: core: Add vdbg msg for spi_nor_erase_multi_sectors() mtd: spi-nor: Get rid of duplicated argument in spi_nor_parse_sfdp()

[PATCH v2 3/5] mtd: spi-nor: Get rid of duplicated argument in spi_nor_parse_sfdp()

2021-03-06 Thread Tudor Ambarus
spi_nor_parse_sfdp(nor, nor->params); passes for the second argument a member within the first argument. Drop the second argument and obtain it directly from the first, and do it across all the children functions. This is a follow up for 'commit 69a8eed58cc0 ("mtd: spi-nor: Don't copy self-pointing

[PATCH v2 2/5] mtd: spi-nor: core: Add vdbg msg for spi_nor_erase_multi_sectors()

2021-03-06 Thread Tudor Ambarus
Useful when debugging non-uniform erase. Signed-off-by: Tudor Ambarus --- v2: - s/dev_dbg/dev_vdb - move vdbg message the first thing in the while drivers/mtd/spi-nor/core.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/mtd/spi-nor/core.c b/drivers/mtd/spi-nor/core.c index bca

[PATCH v2 1/5] mtd: spi-nor: core: Advance erase after the erase cmd has been completed

2021-03-06 Thread Tudor Ambarus
addr and len were gratuitously updated even when spi_nor_wait_till_ready() failed. Wait for the erase cmd to complete and then advance the erase. Signed-off-by: Tudor Ambarus Reviewed-by: Pratyush Yadav --- v2: - update commit message - Add R-b tag drivers/mtd/spi-nor/core.c | 12 ++--

[PATCH v2 4/5] mtd: spi-nor: Move Software Write Protection logic out of the core

2021-03-06 Thread Tudor Ambarus
It makes the core file a bit smaller and provides better separation between the Software Write Protection features and the core logic. All the next generic software write protection features (e.g. Individual Block Protection) will reside in swp.c. Signed-off-by: Tudor Ambarus --- drivers/mtd/spi

[PATCH v2 5/5] mtd: spi-nor: swp: Drop 'else' after 'return'

2021-03-06 Thread Tudor Ambarus
else is not generally useful after a break or return. Signed-off-by: Tudor Ambarus --- drivers/mtd/spi-nor/swp.c | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/drivers/mtd/spi-nor/swp.c b/drivers/mtd/spi-nor/swp.c index 75b9bb53d584..c35cb3becb41 100644 --- a/

Re: [PATCH v9 2/6] dt: bindings: add mt7621-clk device tree binding documentation

2021-03-06 Thread Sergio Paracuellos
Hi again, On Sat, Mar 6, 2021 at 8:12 AM Sergio Paracuellos wrote: > > Hi Rob, > > On Fri, Mar 5, 2021 at 11:47 PM Rob Herring wrote: > [snip] > > > + > > > + ralink,sysctl: > > > +$ref: /schemas/types.yaml#/definitions/phandle > > > +description: > > > + phandle of syscon used to

Re: [PATCH 5.10 000/102] 5.10.21-rc1 review

2021-03-06 Thread Greg Kroah-Hartman
On Fri, Mar 05, 2021 at 07:24:28PM -0800, Guenter Roeck wrote: > On Fri, Mar 05, 2021 at 01:20:19PM +0100, Greg Kroah-Hartman wrote: > > This is the start of the stable review cycle for the 5.10.21 release. > > There are 102 patches in this series, all will be posted as a response > > to this one.

Re: [PATCH 5.4 00/72] 5.4.103-rc1 review

2021-03-06 Thread Greg Kroah-Hartman
On Fri, Mar 05, 2021 at 07:23:25PM -0800, Guenter Roeck wrote: > On Fri, Mar 05, 2021 at 01:21:02PM +0100, Greg Kroah-Hartman wrote: > > This is the start of the stable review cycle for the 5.4.103 release. > > There are 72 patches in this series, all will be posted as a response > > to this one.

Re: [PATCH 5.4 00/72] 5.4.103-rc1 review

2021-03-06 Thread Greg Kroah-Hartman
On Sat, Mar 06, 2021 at 08:57:00AM +0800, Samuel Zou wrote: > > > On 2021/3/5 20:21, Greg Kroah-Hartman wrote: > > This is the start of the stable review cycle for the 5.4.103 release. > > There are 72 patches in this series, all will be posted as a response > > to this one. If anyone has any is

Re: [PATCH 5.4 00/72] 5.4.103-rc1 review

2021-03-06 Thread Naresh Kamboju
On Fri, 5 Mar 2021 at 18:04, Greg Kroah-Hartman wrote: > > This is the start of the stable review cycle for the 5.4.103 release. > There are 72 patches in this series, all will be posted as a response > to this one. If anyone has any issues with these being applied, please > let me know. > > Resp

Re: [PATCH 4.19 00/52] 4.19.179-rc1 review

2021-03-06 Thread Naresh Kamboju
On Fri, 5 Mar 2021 at 18:08, Greg Kroah-Hartman wrote: > > This is the start of the stable review cycle for the 4.19.179 release. > There are 52 patches in this series, all will be posted as a response > to this one. If anyone has any issues with these being applied, please > let me know. > > Res

Re: [PATCH 4.14 00/39] 4.14.224-rc1 review

2021-03-06 Thread Naresh Kamboju
On Fri, 5 Mar 2021 at 18:10, Greg Kroah-Hartman wrote: > > This is the start of the stable review cycle for the 4.14.224 release. > There are 39 patches in this series, all will be posted as a response > to this one. If anyone has any issues with these being applied, please > let me know. > > Res

Re: [PATCH 2/2] MIPS: Loongson64: Move loongson_system_configuration to loongson.h

2021-03-06 Thread Thomas Bogendoerfer
On Sat, Mar 06, 2021 at 05:00:15PM +0800, Jiaxun Yang wrote: > > > On Sat, Mar 6, 2021, at 4:03 PM, Thomas Bogendoerfer wrote: > > On Thu, Mar 04, 2021 at 07:00:57PM +0800, Qing Zhang wrote: > > > The purpose of separating loongson_system_configuration from boot_param.h > > > is to keep the other

Re: [PATCH] arm64: dts: qcom: Introduce SM8350 HDK

2021-03-06 Thread Konrad Dybcio
Hi! > + vreg_l5b_0p88: ldo5 { > + regulator-name = "vreg_l5b_0p88"; > + regulator-min-microvolt = <88>; > + regulator-max-microvolt = <888000>; > + regulator-initial-mode = ; > + }; > + Th

[tip: x86/vdso] x86/vdso: Use proper modifier for len's format specifier in extract()

2021-03-06 Thread tip-bot2 for Jiri Slaby
The following commit has been merged into the x86/vdso branch of tip: Commit-ID: 70c9d959226b7c5c48c119e2c1cfc1424f87b023 Gitweb: https://git.kernel.org/tip/70c9d959226b7c5c48c119e2c1cfc1424f87b023 Author:Jiri Slaby AuthorDate:Wed, 03 Mar 2021 07:43:57 +01:00 Committer:

Re: [PATCH 4.4 00/30] 4.4.260-rc1 review

2021-03-06 Thread Naresh Kamboju
On Fri, 5 Mar 2021 at 18:15, Greg Kroah-Hartman wrote: > > This is the start of the stable review cycle for the 4.4.260 release. > There are 30 patches in this series, all will be posted as a response > to this one. If anyone has any issues with these being applied, please > let me know. > > Resp

Re: [PATCH] kbuild: dummy-tools, fix inverted tests for gcc

2021-03-06 Thread Masahiro Yamada
On Wed, Mar 3, 2021 at 7:43 PM Jiri Slaby wrote: > > There is a test in Kconfig which takes inverted value of a compiler > check: > * config CC_HAS_INT128 > def_bool !$(cc-option,$(m64-flag) -D__SIZEOF_INT128__=0) > > This results in CC_HAS_INT128 not being in super-config generated by > d

Re: [PATCH v2] input: s6sy761: fix coordinate read bit shift

2021-03-06 Thread Andi Shyti
Hi Caleb, On Fri, Mar 05, 2021 at 06:58:10PM +, Caleb Connolly wrote: > The touch coordinate register contains the following: > > byte 3 byte 2 byte 1 > +++ +-+ +-+ > ||| | | |

[tip: x86/urgent] x86/unwind/orc: Silence warnings caused by missing ORC data

2021-03-06 Thread tip-bot2 for Josh Poimboeuf
The following commit has been merged into the x86/urgent branch of tip: Commit-ID: d072f941c1e234f8495cc4828370b180318bf49b Gitweb: https://git.kernel.org/tip/d072f941c1e234f8495cc4828370b180318bf49b Author:Josh Poimboeuf AuthorDate:Fri, 05 Feb 2021 08:24:03 -06:00 Committ

[tip: x86/urgent] x86/entry: Fix entry/exit mismatch on failed fast 32-bit syscalls

2021-03-06 Thread tip-bot2 for Andy Lutomirski
The following commit has been merged into the x86/urgent branch of tip: Commit-ID: e59ba7bf71a09e474198741563e0e587ae43d1c7 Gitweb: https://git.kernel.org/tip/e59ba7bf71a09e474198741563e0e587ae43d1c7 Author:Andy Lutomirski AuthorDate:Thu, 04 Mar 2021 11:05:54 -08:00 Commit

[tip: x86/urgent] x86/unwind/orc: Disable KASAN checking in the ORC unwinder, part 2

2021-03-06 Thread tip-bot2 for Josh Poimboeuf
The following commit has been merged into the x86/urgent branch of tip: Commit-ID: 8bd7b3980ca62904814d536b3a2453001992a0c3 Gitweb: https://git.kernel.org/tip/8bd7b3980ca62904814d536b3a2453001992a0c3 Author:Josh Poimboeuf AuthorDate:Fri, 05 Feb 2021 08:24:02 -06:00 Committ

[PATCH] drm/amd/display: remove duplicate include in amdgpu_dm.c

2021-03-06 Thread menglong8 . dong
From: Zhang Yunkai 'drm/drm_hdcp.h' included in 'amdgpu_dm.c' is duplicated. It is also included in the 79th line. Signed-off-by: Zhang Yunkai --- drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_d

Re: [PATCH] arm64: dts: add support for the Pixel 2 XL

2021-03-06 Thread Konrad Dybcio
On 05.03.2021 22:35, Caleb Connolly wrote: > Add a minimal devicetree capable of booting on the Pixel 2 XL MSM8998 > device. > > It's currently possible to boot the device into postmarketOS with USB > networking, however the display panel depends on Display Stream > Compression which is not yet s

Re: [PATCH 2/2] MIPS: Loongson64: Move loongson_system_configuration to loongson.h

2021-03-06 Thread Jiaxun Yang
On Sat, Mar 6, 2021, at 5:53 PM, Thomas Bogendoerfer wrote: > On Sat, Mar 06, 2021 at 05:00:15PM +0800, Jiaxun Yang wrote: > > > > > > On Sat, Mar 6, 2021, at 4:03 PM, Thomas Bogendoerfer wrote: > > > On Thu, Mar 04, 2021 at 07:00:57PM +0800, Qing Zhang wrote: > > > > The purpose of separating

[PATCH] drm/amd/display: remove duplicate include in dcn21 and gpio

2021-03-06 Thread menglong8 . dong
From: Zhang Yunkai 'dce110_resource.h' included in 'dcn21_resource.c' is duplicated. 'hw_gpio.h' included in 'hw_factory_dce110.c' is duplicated. Signed-off-by: Zhang Yunkai --- drivers/gpu/drm/amd/display/dc/dcn21/dcn21_resource.c | 1 - .../gpu/drm/amd/display/dc/gpio/dce110/hw_facto

Re: [PATCH v6 2/2] hwspinlock: add sun6i hardware spinlock support

2021-03-06 Thread Wilken Gottwalt
On Tue, 2 Mar 2021 18:20:02 +0100 Maxime Ripard wrote: > Hi, > > On Mon, Mar 01, 2021 at 03:06:08PM +0100, Wilken Gottwalt wrote: > > On Mon, 1 Mar 2021 14:13:05 +0100 > > Maxime Ripard wrote: > > > > > On Sat, Feb 27, 2021 at 02:03:54PM +0100, Wilken Gottwalt wrote: > > > > Adds the sun6i_hws

Re: [PATCH v6 1/2] dt-bindings: hwlock: add sun6i_hwspinlock

2021-03-06 Thread Wilken Gottwalt
On Tue, 2 Mar 2021 18:22:33 +0100 Maxime Ripard wrote: > On Mon, Mar 01, 2021 at 03:06:35PM +0100, Wilken Gottwalt wrote: > > On Mon, 1 Mar 2021 14:12:44 +0100 > > Maxime Ripard wrote: > > > > > On Sat, Feb 27, 2021 at 02:03:28PM +0100, Wilken Gottwalt wrote: > > > > Adds documentation on how t

[PATCH] drm/nouveau: remove duplicate include in nouveau_dmem and base

2021-03-06 Thread menglong8 . dong
From: Zhang Yunkai 'if000c.h' included in 'nouveau_dmem.c' is duplicated. 'priv.h' included in 'base.c' is duplicated. Signed-off-by: Zhang Yunkai --- drivers/gpu/drm/nouveau/nouveau_dmem.c | 1 - drivers/gpu/drm/nouveau/nvkm/engine/nvenc/base.c | 2 -- 2 files changed, 3 deletions(-

Re: [PATCH] x86/smpboot: remove duplicate include in smpboot.c

2021-03-06 Thread Borislav Petkov
On Fri, Mar 05, 2021 at 10:56:10PM -0800, menglong8.d...@gmail.com wrote: > From: Zhang Yunkai > > 'cpu_device_id.h' and 'intel_family.h' included in 'smpboot.c' > is duplicated. It is also included in the 80th line. > > Signed-off-by: Zhang Yunkai If you send another person's patch, then your

Re: [PATCH v2 4/5] mtd: spi-nor: Move Software Write Protection logic out of the core

2021-03-06 Thread Michael Walle
Am 2021-03-06 10:50, schrieb Tudor Ambarus: It makes the core file a bit smaller and provides better separation between the Software Write Protection features and the core logic. All the next generic software write protection features (e.g. Individual Block Protection) will reside in swp.c. Si

[PATCH v3 4/4] ALSA: hda/cirrus: Add Headphone and Headset MIC Volume Control

2021-03-06 Thread Vitaly Rodionov
From: Stefan Binding CS8409 does not support Volume Control for NIDs 0x24 (the Headphones), or 0x34 (The Headset Mic). However, CS42L42 codec does support gain control for both. We can add support for Volume Controls, by writing the the CS42L42 regmap via i2c commands, using custom info, get and

[tip: x86/seves] x86/sev-es: Remove subtraction of res variable

2021-03-06 Thread tip-bot2 for Borislav Petkov
The following commit has been merged into the x86/seves branch of tip: Commit-ID: f3db3365c069c2a8505cdee8033fe3d22d2fe6c0 Gitweb: https://git.kernel.org/tip/f3db3365c069c2a8505cdee8033fe3d22d2fe6c0 Author:Borislav Petkov AuthorDate:Tue, 23 Feb 2021 12:03:19 +01:00 Committ

[syzbot] bpf boot error: WARNING in kvm_wait

2021-03-06 Thread syzbot
Hello, syzbot found the following issue on: HEAD commit:edbea922 veth: Store queue_mapping independently of XDP pr.. git tree: bpf console output: https://syzkaller.appspot.com/x/log.txt?x=113ae02ad0 kernel config: https://syzkaller.appspot.com/x/.config?x=402784bff477e1ac dashboar

[PATCH] media:vidtv: remove duplicate include in vidtv_psi

2021-03-06 Thread menglong8 . dong
From: Zhang Yunkai 'string.h' included in 'vidtv_psi.c' is duplicated. Signed-off-by: Zhang Yunkai --- drivers/media/test-drivers/vidtv/vidtv_psi.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/media/test-drivers/vidtv/vidtv_psi.c b/drivers/media/test-drivers/vidtv/vidtv_psi.c in

[PATCH v3 0/4] ALSA: hda/cirrus: Add support for CS8409 HDA bridge and CS42L42 companion codec

2021-03-06 Thread Vitaly Rodionov
Dell's laptops Inspiron 3500, Inspiron 3501, Inspiron 3505 are using Cirrus Logic CS8409 HDA bridge with CS42L42 companion codec. The CS8409 is a multichannel HD audio routing controller. CS8409 includes support for four channels of digital microphone data and two bidirectional ASPs for up to 32 c

[PATCH v3 2/4] ALSA: hda/cirrus: Add support for CS8409 HDA bridge and CS42L42 companion codec.

2021-03-06 Thread Vitaly Rodionov
Dell's laptops Inspiron 3500, Inspiron 3501, Inspiron 3505 are using Cirrus Logic CS8409 HDA bridge with CS42L42 companion codec. The CS8409 is a multichannel HD audio routing controller. CS8409 includes support for four channels of digital microphone data and two bidirectional ASPs for up to 32

[PATCH v3 1/4] ALSA: hda/cirrus: Increase AUTO_CFG_MAX_INS from 8 to 18

2021-03-06 Thread Vitaly Rodionov
In preparation to support Cirrus Logic CS8409 HDA bridge on new Dell platforms it is nessasary to increase AUTO_CFG_MAX_INS and AUTO_CFG_NUM_INPUTS values. Currently AUTO_CFG_MAX_INS is limited to 8, but Cirrus Logic HDA bridge CS8409 has 18 input pins, 16 ASP receivers and 2 DMIC inputs. We have t

[RFC v2] scripts: kernel-doc: fix attribute capture in function parsing

2021-03-06 Thread Aditya Srivastava
Currently, kernel-doc warns for function prototype parsing on the presence of attributes "__attribute_const__" and "__flatten" in the definition. There are 166 occurrences in ~70 files in the kernel tree for "__attribute_const__" and 5 occurrences in 4 files for "__flatten". Out of 166, there are

[PATCH v3 3/4] ALSA: hda/cirrus: Add jack detect interrupt support from CS42L42 companion codec.

2021-03-06 Thread Vitaly Rodionov
In the case of CS8409 we do not have unsol events from NID's 0x24 and 0x34 where hs mic and hp are connected. Companion codec CS42L42 will generate interrupt via gpio 4 to notify jack events. We have to overwrite standard snd_hda_jack_unsol_event(), read CS42L42 jack detect status registers and the

[PATCH V13 00/10] remoteproc: imx_rproc: support iMX8MQ/M

2021-03-06 Thread peng . fan
From: Peng Fan V13: Add R-b tag from Rob for patch 1. Drop the reserved memory node from patch 2 per Rob's comment. Mathieu, Bjorn Only patch 2 not have R-b/A-b tag, but since Rob's only has a minor comment, and addressed in this version, is it ok for you take into remoteproc next branch?

[PATCH V13 01/10] dt-bindings: remoteproc: convert imx rproc bindings to json-schema

2021-03-06 Thread peng . fan
From: Peng Fan Convert the imx rproc binding to DT schema format using json-schema. Reviewed-by: Rob Herring Signed-off-by: Peng Fan --- .../bindings/remoteproc/fsl,imx-rproc.yaml| 61 +++ .../bindings/remoteproc/imx-rproc.txt | 33 -- 2 files changed, 61 i

[PATCH V13 03/10] remoteproc: introduce is_iomem to rproc_mem_entry

2021-03-06 Thread peng . fan
From: Peng Fan Introduce is_iomem to indicate this piece memory is iomem or not. Reviewed-by: Bjorn Andersson Reviewed-by: Mathieu Poirier Signed-off-by: Peng Fan --- include/linux/remoteproc.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/linux/remoteproc.h b/include/linux/r

Re: [syzbot] upstream boot error: WARNING in kvm_wait

2021-03-06 Thread Dmitry Vyukov
On Fri, Mar 5, 2021 at 9:56 PM syzbot wrote: > > Hello, > > syzbot found the following issue on: > > HEAD commit:280d542f Merge tag 'drm-fixes-2021-03-05' of git://anongit.. > git tree: upstream > console output: https://syzkaller.appspot.com/x/log.txt?x=138c7a92d0 > kernel config:

[PATCH V13 02/10] dt-bindings: remoteproc: imx_rproc: add i.MX8MQ/M support

2021-03-06 Thread peng . fan
From: Peng Fan Add i.MX8MQ/M support, also include mailbox for rpmsg/virtio usage. Signed-off-by: Peng Fan --- .../bindings/remoteproc/fsl,imx-rproc.yaml| 31 ++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/Documentation/devicetree/bindings/remoteproc/fsl,

[PATCH V13 04/10] remoteproc: add is_iomem to da_to_va

2021-03-06 Thread peng . fan
From: Peng Fan Introduce an extra parameter is_iomem to da_to_va, then the caller could take the memory as normal memory or io mapped memory. Reviewed-by: Bjorn Andersson Reviewed-by: Mathieu Poirier Reported-by: kernel test robot Signed-off-by: Peng Fan --- drivers/remoteproc/imx_rproc.c

[PATCH V13 05/10] remoteproc: imx_rproc: correct err message

2021-03-06 Thread peng . fan
From: Peng Fan It is using devm_ioremap, so not devm_ioremap_resource. Correct the error message and print out sa/size. Reviewed-by: Bjorn Andersson Reviewed-by: Mathieu Poirier Signed-off-by: Peng Fan --- drivers/remoteproc/imx_rproc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(

[PATCH V13 08/10] remoteproc: imx_rproc: support i.MX8MQ/M

2021-03-06 Thread peng . fan
From: Peng Fan Add i.MX8MQ dev/sys addr map and configuration data structure i.MX8MM share i.MX8MQ settings. Reviewed-by: Richard Zhu Reviewed-by: Mathieu Poirier Signed-off-by: Peng Fan --- drivers/remoteproc/Kconfig | 6 ++--- drivers/remoteproc/imx_rproc.c | 41 ++

[PATCH V13 09/10] remoteproc: imx_rproc: ignore mapping vdev regions

2021-03-06 Thread peng . fan
From: Peng Fan vdev regions are vdev0vring0, vdev0vring1, vdevbuffer and similar. They are handled by remoteproc common code, no need to map in imx rproc driver. Signed-off-by: Peng Fan Reviewed-by: Mathieu Poirier --- drivers/remoteproc/imx_rproc.c | 3 +++ 1 file changed, 3 insertions(+) d

[PATCH V13 10/10] remoteproc: imx_proc: enable virtio/mailbox

2021-03-06 Thread peng . fan
From: Peng Fan Use virtio/mailbox to build connection between Remote Proccessors and Linux. Add work queue to handle incoming messages. Reviewed-by: Richard Zhu Reviewed-by: Mathieu Poirier Signed-off-by: Peng Fan --- drivers/remoteproc/imx_rproc.c | 116 - 1

[PATCH V13 06/10] remoteproc: imx_rproc: use devm_ioremap

2021-03-06 Thread peng . fan
From: Peng Fan We might need to map an region multiple times, becaue the region might be shared between remote processors, such i.MX8QM with dual M4 cores. So use devm_ioremap, not devm_ioremap_resource. Reviewed-by: Oleksij Rempel Reviewed-by: Richard Zhu Signed-off-by: Peng Fan Reviewed-by:

[PATCH V13 07/10] remoteproc: imx_rproc: add i.MX specific parse fw hook

2021-03-06 Thread peng . fan
From: Peng Fan The hook is used to parse memory-regions and load resource table from the address the remote processor published. Reviewed-by: Richard Zhu Reviewed-by: Mathieu Poirier Signed-off-by: Peng Fan --- drivers/remoteproc/imx_rproc.c | 93 ++ 1 file ch

[PATCH] arm64: dts: imx8mp: add wdog2/3 nodes

2021-03-06 Thread peng . fan
From: Peng Fan There is wdog[2,3] in i.MX8MP, so add them, all wdogs share the same clock root, so use the wdog1 clk here. Signed-off-by: Peng Fan --- arch/arm64/boot/dts/freescale/imx8mp.dtsi | 16 1 file changed, 16 insertions(+) diff --git a/arch/arm64/boot/dts/freescale/i

[tip: sched/core] sched/fair: Fix task utilization accountability in compute_energy()

2021-03-06 Thread tip-bot2 for Vincent Donnefort
The following commit has been merged into the sched/core branch of tip: Commit-ID: 0372e1cf70c28de6babcba38ef97b6ae3400b101 Gitweb: https://git.kernel.org/tip/0372e1cf70c28de6babcba38ef97b6ae3400b101 Author:Vincent Donnefort AuthorDate:Thu, 25 Feb 2021 08:36:11 Committer:

[tip: sched/core] sched/fair: Reduce the window for duplicated update

2021-03-06 Thread tip-bot2 for Vincent Guittot
The following commit has been merged into the sched/core branch of tip: Commit-ID: 39b6a429c30482c349f1bb3746470fe473cbdb0f Gitweb: https://git.kernel.org/tip/39b6a429c30482c349f1bb3746470fe473cbdb0f Author:Vincent Guittot AuthorDate:Wed, 24 Feb 2021 14:30:07 +01:00 Commit

[tip: sched/core] sched/pelt: Fix task util_est update filtering

2021-03-06 Thread tip-bot2 for Vincent Donnefort
The following commit has been merged into the sched/core branch of tip: Commit-ID: b89997aa88f0b07d8a6414c908af75062103b8c9 Gitweb: https://git.kernel.org/tip/b89997aa88f0b07d8a6414c908af75062103b8c9 Author:Vincent Donnefort AuthorDate:Thu, 25 Feb 2021 16:58:20 Committer:

[tip: sched/core] sched/fair: use lsub_positive in cpu_util_next()

2021-03-06 Thread tip-bot2 for Vincent Donnefort
The following commit has been merged into the sched/core branch of tip: Commit-ID: 736cc6b31102236a55470c72523ed0a65eb3f804 Gitweb: https://git.kernel.org/tip/736cc6b31102236a55470c72523ed0a65eb3f804 Author:Vincent Donnefort AuthorDate:Thu, 25 Feb 2021 08:36:12 Committer:

[tip: sched/core] cpu/hotplug: CPUHP_BRINGUP_CPU failure exception

2021-03-06 Thread tip-bot2 for Vincent Donnefort
The following commit has been merged into the sched/core branch of tip: Commit-ID: 62f250694092dd5fef9900dc3126f07110bf9d48 Gitweb: https://git.kernel.org/tip/62f250694092dd5fef9900dc3126f07110bf9d48 Author:Vincent Donnefort AuthorDate:Tue, 16 Feb 2021 10:35:05 Committer:

[tip: sched/core] sched/fair: Fix shift-out-of-bounds in load_balance()

2021-03-06 Thread tip-bot2 for Valentin Schneider
The following commit has been merged into the sched/core branch of tip: Commit-ID: 39a2a6eb5c9b66ea7c8055026303b3aa681b49a5 Gitweb: https://git.kernel.org/tip/39a2a6eb5c9b66ea7c8055026303b3aa681b49a5 Author:Valentin Schneider AuthorDate:Thu, 25 Feb 2021 17:56:56 Committer

[tip: sched/core] cpu/hotplug: Add cpuhp_invoke_callback_range()

2021-03-06 Thread tip-bot2 for Vincent Donnefort
The following commit has been merged into the sched/core branch of tip: Commit-ID: 453e41085183980087f8a80dada523caf1131c3c Gitweb: https://git.kernel.org/tip/453e41085183980087f8a80dada523caf1131c3c Author:Vincent Donnefort AuthorDate:Tue, 16 Feb 2021 10:35:06 Committer:

[tip: sched/core] cpu/hotplug: Allowing to reset fail injection

2021-03-06 Thread tip-bot2 for Vincent Donnefort
The following commit has been merged into the sched/core branch of tip: Commit-ID: 3ae70c251f344976428d1f6ee61ea7b4e170fec3 Gitweb: https://git.kernel.org/tip/3ae70c251f344976428d1f6ee61ea7b4e170fec3 Author:Vincent Donnefort AuthorDate:Tue, 16 Feb 2021 10:35:04 Committer:

[tip: sched/core] sched/topology: fix the issue groups don't span domain->span for NUMA diameter > 2

2021-03-06 Thread tip-bot2 for Barry Song
The following commit has been merged into the sched/core branch of tip: Commit-ID: 585b6d2723dc927ebc4ad884c4e879e4da8bc21f Gitweb: https://git.kernel.org/tip/585b6d2723dc927ebc4ad884c4e879e4da8bc21f Author:Barry Song AuthorDate:Wed, 24 Feb 2021 16:09:44 +13:00 Committer:

[tip: sched/core] psi: Use ONCPU state tracking machinery to detect reclaim

2021-03-06 Thread tip-bot2 for Chengming Zhou
The following commit has been merged into the sched/core branch of tip: Commit-ID: 7fae6c8171d20ac55402930ee8ae760cf85dff7b Gitweb: https://git.kernel.org/tip/7fae6c8171d20ac55402930ee8ae760cf85dff7b Author:Chengming Zhou AuthorDate:Wed, 03 Mar 2021 11:46:57 +08:00 Committ

[tip: sched/core] psi: Add PSI_CPU_FULL state

2021-03-06 Thread tip-bot2 for Chengming Zhou
The following commit has been merged into the sched/core branch of tip: Commit-ID: e7fcd762282332f765af2035a9568fb126fa3c01 Gitweb: https://git.kernel.org/tip/e7fcd762282332f765af2035a9568fb126fa3c01 Author:Chengming Zhou AuthorDate:Wed, 03 Mar 2021 11:46:56 +08:00 Committ

[tip: sched/core] psi: Pressure states are unlikely

2021-03-06 Thread tip-bot2 for Johannes Weiner
The following commit has been merged into the sched/core branch of tip: Commit-ID: fddc8bab531e217806b84906681324377d741c6c Gitweb: https://git.kernel.org/tip/fddc8bab531e217806b84906681324377d741c6c Author:Johannes Weiner AuthorDate:Wed, 03 Mar 2021 11:46:58 +08:00 Commit

[tip: sched/core] psi: Optimize task switch inside shared cgroups

2021-03-06 Thread tip-bot2 for Chengming Zhou
The following commit has been merged into the sched/core branch of tip: Commit-ID: 4117cebf1a9fcbf35b9aabf0e37b6c5eea296798 Gitweb: https://git.kernel.org/tip/4117cebf1a9fcbf35b9aabf0e37b6c5eea296798 Author:Chengming Zhou AuthorDate:Wed, 03 Mar 2021 11:46:59 +08:00 Committ

Re: [PATCH RESEND][next] hwmon: (corsair-cpro) Fix fall-through warnings for Clang

2021-03-06 Thread Marius Zachmann
On 06.03.21 at 10:53:59 CET, Gustavo A. R. Silva wrote > In preparation to enable -Wimplicit-fallthrough for Clang, fix a warning > by explicitly adding a break statement instead of letting the code fall > through to the next case. > > Link: https://github.com/KSPP/linux/issues/115 > Acked-by: Gue

[tip: sched/core] sched: Simplify migration_cpu_stop()

2021-03-06 Thread tip-bot2 for Valentin Schneider
The following commit has been merged into the sched/core branch of tip: Commit-ID: e140749c9f194d65f5984a5941e46758377c93c0 Gitweb: https://git.kernel.org/tip/e140749c9f194d65f5984a5941e46758377c93c0 Author:Valentin Schneider AuthorDate:Thu, 25 Feb 2021 10:22:30 +01:00 Com

[tip: sched/core] sched/fair: Trigger the update of blocked load on newly idle cpu

2021-03-06 Thread tip-bot2 for Vincent Guittot
The following commit has been merged into the sched/core branch of tip: Commit-ID: c6f886546cb8a38617cdbe755fe50d3acd2463e4 Gitweb: https://git.kernel.org/tip/c6f886546cb8a38617cdbe755fe50d3acd2463e4 Author:Vincent Guittot AuthorDate:Wed, 24 Feb 2021 14:30:06 +01:00 Commit

[tip: sched/core] sched/fair: Reorder newidle_balance pulled_task tests

2021-03-06 Thread tip-bot2 for Vincent Guittot
The following commit has been merged into the sched/core branch of tip: Commit-ID: 6553fc18179113a11835d5fde1735259f8943a55 Gitweb: https://git.kernel.org/tip/6553fc18179113a11835d5fde1735259f8943a55 Author:Vincent Guittot AuthorDate:Wed, 24 Feb 2021 14:30:05 +01:00 Commit

[tip: sched/core] sched/fair: Merge for each idle cpu loop of ILB

2021-03-06 Thread tip-bot2 for Vincent Guittot
The following commit has been merged into the sched/core branch of tip: Commit-ID: 7a82e5f52a3506bc35a4dc04d53ad2c9daf82e7f Gitweb: https://git.kernel.org/tip/7a82e5f52a3506bc35a4dc04d53ad2c9daf82e7f Author:Vincent Guittot AuthorDate:Wed, 24 Feb 2021 14:30:04 +01:00 Commit

[tip: sched/core] sched/fair: Remove unused return of _nohz_idle_balance

2021-03-06 Thread tip-bot2 for Vincent Guittot
The following commit has been merged into the sched/core branch of tip: Commit-ID: ab2dde5e98db23387147fb4e7a52b6cf8141cdb3 Gitweb: https://git.kernel.org/tip/ab2dde5e98db23387147fb4e7a52b6cf8141cdb3 Author:Vincent Guittot AuthorDate:Wed, 24 Feb 2021 14:30:02 +01:00 Commit

[tip: sched/core] kcov: Remove kcov include from sched.h and move it to its users.

2021-03-06 Thread tip-bot2 for Sebastian Andrzej Siewior
The following commit has been merged into the sched/core branch of tip: Commit-ID: 183f47fcaa54a5ffe671d990186d330ac8c63b10 Gitweb: https://git.kernel.org/tip/183f47fcaa54a5ffe671d990186d330ac8c63b10 Author:Sebastian Andrzej Siewior AuthorDate:Thu, 18 Feb 2021 18:31:24 +01

[tip: sched/core] sched/fair: Remove update of blocked load from newidle_balance

2021-03-06 Thread tip-bot2 for Vincent Guittot
The following commit has been merged into the sched/core branch of tip: Commit-ID: 0826530de3cbdc89e60a89e86def94a5f0fc81ca Gitweb: https://git.kernel.org/tip/0826530de3cbdc89e60a89e86def94a5f0fc81ca Author:Vincent Guittot AuthorDate:Wed, 24 Feb 2021 14:30:01 +01:00 Commit

[tip: sched/core] sched/fair: Remove unused parameter of update_nohz_stats

2021-03-06 Thread tip-bot2 for Vincent Guittot
The following commit has been merged into the sched/core branch of tip: Commit-ID: 64f84f273592d17dcdca20244168ad9f525a39c3 Gitweb: https://git.kernel.org/tip/64f84f273592d17dcdca20244168ad9f525a39c3 Author:Vincent Guittot AuthorDate:Wed, 24 Feb 2021 14:30:03 +01:00 Commit

  1   2   3   4   5   >