[PATCH v2 02/13] spi: cadence-quadspi: Add QSPI support for Pensando Elba SoC

2021-03-28 Thread Brad Larson
Add QSPI controller support for Pensando Elba SoC Signed-off-by: Brad Larson --- drivers/spi/spi-cadence-quadspi.c | 9 + 1 file changed, 9 insertions(+) diff --git a/drivers/spi/spi-cadence-quadspi.c b/drivers/spi/spi-cadence-quadspi.c index 52ddb3255d88..4aacb0b2dbc7 100644 ---

Re: [PATCH v4 1/3] mm/slub: Introduce two counters for partial objects

2021-03-28 Thread Shu Ming
I am not sure how people are using partial object accounting. I believe it is used as a memory usage hint of slabs. On Mon, Mar 22, 2021 at 6:22 PM Vlastimil Babka wrote: > > On 3/22/21 2:46 AM, Shu Ming wrote: > > More precisely, ss will count partial objects like denty objects with > >

[PATCH] implement flush_cache_vmap and flush_cache_vunmap for RISC-V

2021-03-28 Thread Jiuyang Liu
This patch implements flush_cache_vmap and flush_cache_vunmap for RISC-V, since these functions might modify PTE. Without this patch, SFENCE.VMA won't be added to related codes, which might introduce a bug in some out-of-order micro-architecture implementations. Signed-off-by: Jiuyang Liu ---

Re: [PATCH 1/2] arm64: dts: ls1028a: move rtc alias to individual boards

2021-03-28 Thread Shawn Guo
On Tue, Mar 23, 2021 at 04:07:56PM +0100, Michael Walle wrote: > The aliases are board-specific and shouldn't be included in the common > SoC dtsi. Move them over to the boards. > > Signed-off-by: Michael Walle Applied both, thanks.

Re: [PATCH v2] kernel/resource: Fix locking in request_free_mem_region

2021-03-28 Thread Alistair Popple
On Friday, 26 March 2021 4:15:36 PM AEDT Balbir Singh wrote: > On Fri, Mar 26, 2021 at 12:20:35PM +1100, Alistair Popple wrote: > > +static int __region_intersects(resource_size_t start, size_t size, > > +unsigned long flags, unsigned long desc) > > +{ > > + struct

[PATCH net-next v2] net: mscc: ocelot: remove redundant dev_err call in vsc9959_mdio_bus_alloc()

2021-03-28 Thread Huang Guobin
From: Guobin Huang There is a error message within devm_ioremap_resource already, so remove the dev_err call to avoid redundant error message. Reported-by: Hulk Robot Signed-off-by: Guobin Huang --- drivers/net/dsa/ocelot/felix_vsc9959.c | 4 +--- 1 file changed, 1 insertion(+), 3

[PATCH v2 3/4] hwmon: smpro: Add Ampere's Altra smpro-hwmon driver

2021-03-28 Thread Quan Nguyen
This commit adds support for Ampere SMpro hwmon driver. This driver supports accessing various CPU sensors provided by the SMpro co-processor including temperature, power, voltages, and current. Signed-off-by: Quan Nguyen --- drivers/hwmon/Kconfig | 8 + drivers/hwmon/Makefile |

[PATCH v2 4/4] docs: hwmon: (smpro-hwmon) Add documentation

2021-03-28 Thread Quan Nguyen
Add documentation for the Ampere(R)'s Altra(R) SMpro hwmon driver. Signed-off-by: Thu Nguyen Signed-off-by: Quan Nguyen --- Documentation/hwmon/index.rst | 1 + Documentation/hwmon/smpro-hwmon.rst | 101 2 files changed, 102 insertions(+) create mode

[PATCH v2 2/4] mfd: simple-mfd-i2c: Adds Ampere's Altra SMpro support

2021-03-28 Thread Quan Nguyen
Adds an MFD driver for SMpro found on the Mt.Jade hardware reference platform with Ampere's Altra processor family. Signed-off-by: Quan Nguyen --- drivers/mfd/Kconfig | 10 ++ drivers/mfd/simple-mfd-i2c.c | 6 ++ 2 files changed, 16 insertions(+) diff --git

[PATCH v2 0/4] Add Ampere's Altra SMPro hwmon driver

2021-03-28 Thread Quan Nguyen
This patch series adds support for Ampere SMpro hwmon driver. This driver supports accessing various CPU sensors provided by the SMpro co-processor including temperature, power, voltages, and current found on Ampere Altra processor family. v2: + Used 'struct of_device_id's .data attribute [Lee

[PATCH v2 1/4] dt-bindings: mfd: Add bindings for Ampere Altra SMPro drivers

2021-03-28 Thread Quan Nguyen
Adds device tree bindings for SMPro drivers found on the Mt.Jade hardware reference platform with Ampere's Altra Processor family. Signed-off-by: Quan Nguyen --- .../bindings/hwmon/ampere,ac01-hwmon.yaml | 27 ++ .../devicetree/bindings/mfd/ampere,smpro.yaml | 82 +++ 2

[PATCH v2 6/6] i2c: mpc: Interrupt driven transfer

2021-03-28 Thread Chris Packham
The fsl-i2c controller will generate an interrupt after every byte transferred. Make use of this interrupt to drive a state machine which allows the next part of a transfer to happen as soon as the interrupt is received. This is particularly helpful with SMBUS devices like the LM81 which will

[PATCH v2 3/6] i2c: mpc: Make use of i2c_recover_bus()

2021-03-28 Thread Chris Packham
Move the existing calls of mpc_i2c_fixup() to a recovery function registered via bus_recovery_info. This makes it more obvious that recovery is supported and allows for a future where recovery is triggered by the i2c core. Signed-off-by: Chris Packham --- drivers/i2c/busses/i2c-mpc.c | 18

[PATCH v2 0/6] i2c: mpc: Refactor to improve responsiveness

2021-03-28 Thread Chris Packham
The "meat" of this series is in the last patch which is the change that actually starts making use of the interrupts to drive a state machine. The dt-bindings patches can probably go in at any time, the rest of the series isn't dependent on them. I've tested on T2081 and P2041 based systems with

[PATCH v2 4/6] i2c: mpc: make interrupt mandatory and remove polling code

2021-03-28 Thread Chris Packham
All the in-tree dts files that use one of the compatible strings from i2c-mpc.c provide an interrupt property. By making this mandatory we can simplify the code. Signed-off-by: Chris Packham --- drivers/i2c/busses/i2c-mpc.c | 51 ++-- 1 file changed, 19

[PATCH v2 5/6] i2c: mpc: use device managed APIs

2021-03-28 Thread Chris Packham
Use device managed functions an clean up error handling. Signed-off-by: Chris Packham --- drivers/i2c/busses/i2c-mpc.c | 46 ++-- 1 file changed, 18 insertions(+), 28 deletions(-) diff --git a/drivers/i2c/busses/i2c-mpc.c b/drivers/i2c/busses/i2c-mpc.c index

[PATCH v2 1/6] dt-bindings: i2c-mpc: Document interrupt property as required

2021-03-28 Thread Chris Packham
All of the in-tree device-trees that use the one of the compatible strings from i2c-mpc.c supply an interrupts property. Make this property mandatory to aid refactoring the driver. Signed-off-by: Chris Packham --- Documentation/devicetree/bindings/i2c/i2c-mpc.txt | 6 +++--- 1 file changed, 3

[PATCH v2 2/6] dt-bindings: i2c: convert i2c-mpc to json-schema

2021-03-28 Thread Chris Packham
Convert i2c-mpc to YAML. Signed-off-by: Chris Packham --- Notes: Changes in v2: - Rework compatible validation - Remove irrelevant i2ccontrol from example .../devicetree/bindings/i2c/i2c-mpc.txt | 62 - .../devicetree/bindings/i2c/i2c-mpc.yaml | 91

Re: [PATCH v2] arm64: dts: imx8mq-kontron-pitx-imx8m: pass phy reset delays

2021-03-28 Thread Shawn Guo
On Tue, Mar 23, 2021 at 03:00:21PM +0100, Heiko Thiery wrote: > The TI DP83867 PHY datasheet says: > T1: Post RESET stabilization time == 195us > T3: Hardware configuration pins transition to output drivers == 64us > T4: RESET pulse width == 1us > > So with a little overhead set 'reset-assert-us'

[PATCH net-next v2] net: stmmac: remove redundant dev_err call in qcom_ethqos_probe()

2021-03-28 Thread Huang Guobin
From: Guobin Huang There is a error message within devm_ioremap_resource already, so remove the dev_err call to avoid redundant error message. Reported-by: Hulk Robot Signed-off-by: Guobin Huang --- .../net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c | 1 - 1 file changed, 1 deletion(-)

[PATCH net-next v2] net: axienet: Remove redundant dev_err call in axienet_probe()

2021-03-28 Thread Huang Guobin
From: Guobin Huang There is a error message within devm_ioremap_resource already, so remove the dev_err call to avoid redundant error message. Reported-by: Hulk Robot Signed-off-by: Guobin Huang --- drivers/net/ethernet/xilinx/xilinx_axienet_main.c | 1 - 1 file changed, 1 deletion(-) diff

Re: [PATCH bpf-next 5/5] libbpf: add selftests for TC-BPF API

2021-03-28 Thread Kumar Kartikeya Dwivedi
On Mon, Mar 29, 2021 at 06:56:02AM IST, Alexei Starovoitov wrote: > This is up to you. I'm trying to understand the motivation for *_block() apis. > I'm not taking a stance for/against them. The block APIs simply attach to a different shared filter block, so in that sense they just forward to the

Re: [PATCH v6 1/3] dt-bindings: Add vendor prefix for reMarkable

2021-03-28 Thread Shawn Guo
On Mon, Mar 22, 2021 at 09:09:25AM -0400, Alistair Francis wrote: > reMarkable AS produces eInk tablets > > Signed-off-by: Alistair Francis Applied all, thanks.

Re: [PATCH bpf-next 5/5] libbpf: add selftests for TC-BPF API

2021-03-28 Thread Alexei Starovoitov
On Sat, Mar 27, 2021 at 09:32:58PM -0700, Andrii Nakryiko wrote: > > I think it's better to start with new library for tc/xdp and have > > libbpf as a dependency on that new lib. > > For example we can add it as subdir in tools/lib/bpf/. > > > > Similarly I think integerating static linking into

[PATCH net-next v2] net: mdio: Remove redundant dev_err call in mdio_mux_iproc_probe()

2021-03-28 Thread Huang Guobin
From: Guobin Huang There is a error message within devm_ioremap_resource already, so remove the dev_err call to avoid redundant error message. Reported-by: Hulk Robot Signed-off-by: Guobin Huang --- drivers/net/mdio/mdio-mux-bcm-iproc.c | 4 +--- 1 file changed, 1 insertion(+), 3

Re: [PATCH v2] kernel/resource: Fix locking in request_free_mem_region

2021-03-28 Thread Alistair Popple
On Friday, 26 March 2021 7:57:51 PM AEDT David Hildenbrand wrote: > On 26.03.21 02:20, Alistair Popple wrote: > > request_free_mem_region() is used to find an empty range of physical > > addresses for hotplugging ZONE_DEVICE memory. It does this by iterating > > over the range of possible

Re: [PATCH] arm64: configs: enable FlexTimer alarm timer

2021-03-28 Thread Shawn Guo
On Sat, Mar 20, 2021 at 07:34:36PM +0100, Michael Walle wrote: > This driver is used on Layerscape SoCs to wake up the system from > standby. It works in conjunction with the RCPM driver. The latter is > only available as a builtin. > > Signed-off-by: Michael Walle Applied, thanks.

RE: [PATCH v3 09/17] nios2: Convert to GENERIC_CMDLINE

2021-03-28 Thread Tan, Ley Foon
> -Original Message- > From: Christophe Leroy > Sent: Friday, March 26, 2021 9:45 PM > To: w...@kernel.org; danie...@cisco.com; r...@kernel.org; > dan...@gimpelevich.san-francisco.ca.us > Cc: linux-a...@vger.kernel.org; devicet...@vger.kernel.org; linuxppc- > d...@lists.ozlabs.org;

Re: [PATCH 1/1] firmware: imx: scu-pd: add missed ADC1 pd

2021-03-28 Thread Shawn Guo
On Fri, Mar 19, 2021 at 04:23:52PM -0500, Frank Li wrote: > ADC1 is not defined in pd driver on 8QM. > > Signed-off-by: Frank Li > Reviewed-by: Dong Aisheng Applied, thanks.

linux-next: manual merge of the net-next tree with the bpf tree

2021-03-28 Thread Stephen Rothwell
Hi all, Today's linux-next merge of the net-next tree got a conflict in: include/linux/bpf.h between commit: 861de02e5f3f ("bpf: Take module reference for trampoline in module") from the bpf tree and commit: 69c087ba6225 ("bpf: Add bpf_for_each_map_elem() helper") from the net-next

Re: [PATCH bpf-next 5/5] libbpf: add selftests for TC-BPF API

2021-03-28 Thread Alexei Starovoitov
On Sat, Mar 27, 2021 at 04:17:16PM +0100, Toke Høiland-Jørgensen wrote: > Alexei Starovoitov writes: > > > On Thu, Mar 25, 2021 at 05:30:03PM +0530, Kumar Kartikeya Dwivedi wrote: > >> This adds some basic tests for the low level bpf_tc_* API and its > >> bpf_program__attach_tc_* wrapper on top.

[PATCH v2 4/4] erofs: add on-disk compression configurations

2021-03-28 Thread Gao Xiang
From: Gao Xiang Add a bitmap for available compression algorithms and a variable-sized on-disk table for compression options in preparation for upcoming big pcluster and LZMA algorithm, which follows the end of super block. To parse the compression options, the bitmap is scanned one by one. For

[PATCH v2 3/4] erofs: introduce on-disk lz4 fs configurations

2021-03-28 Thread Gao Xiang
From: Gao Xiang Introduce z_erofs_lz4_cfgs to store all lz4 configurations. Currently it's only max_distance, but will be used for new features later. Reviewed-by: Chao Yu Signed-off-by: Gao Xiang --- fs/erofs/decompressor.c | 15 +-- fs/erofs/erofs_fs.h | 6 ++

[PATCH v2 2/4] erofs: support adjust lz4 history window size

2021-03-28 Thread Gao Xiang
From: Huang Jianan lz4 uses LZ4_DISTANCE_MAX to record history preservation. When using rolling decompression, a block with a higher compression ratio will cause a larger memory allocation (up to 64k). It may cause a large resource burden in extreme cases on devices with small memory and a large

[PATCH v2 1/4] erofs: introduce erofs_sb_has_xxx() helpers

2021-03-28 Thread Gao Xiang
From: Gao Xiang Introduce erofs_sb_has_xxx() to make long checks short, especially for later big pcluster & LZMA features. Reviewed-by: Chao Yu Signed-off-by: Gao Xiang --- fs/erofs/decompressor.c | 3 +-- fs/erofs/internal.h | 9 + fs/erofs/super.c| 2 +- 3 files

[PATCH v2 0/4] erofs: introduce on-disk compression configurations

2021-03-28 Thread Gao Xiang
From: Gao Xiang Hi folks, When we provides support for different algorithms or big pcluster, it'd be necessary to record some configuration in the per-fs basis. For example, when big pcluster feature for lz4 is enabled, we need to know the largest pclustersize in the whole fs instance to

RE: Re: [PATCH v3 2/3] arm64: dts: imx8mq-evk: add one regulator used to power up pcie phy

2021-03-28 Thread Richard Zhu
> -Original Message- > From: Lucas Stach > Sent: Friday, March 26, 2021 5:40 PM > To: Richard Zhu ; andrew.smir...@gmail.com; > shawn...@kernel.org; k...@linux.com; bhelg...@google.com; > ste...@agner.ch; lorenzo.pieral...@arm.com > Cc: linux-...@vger.kernel.org; dl-linux-imx ; >

Re: [PATCH v2 2/2] arm64: dts: imx: Add i.mx8mm Gateworks gw7901 dts support

2021-03-28 Thread Shawn Guo
On Fri, Mar 19, 2021 at 01:50:41PM -0700, Tim Harvey wrote: > The Gateworks GW7901 is an ARM based single board computer (SBC) > featuring: > - i.MX8M Mini SoC > - LPDDR4 DRAM > - eMMC FLASH > - SPI FRAM > - Gateworks System Controller (GSC) > - Atmel ATECC Crypto Authentication > - USB 2.0

Re: [PATCH] drivers/net/wan/hdlc_fr: Fix a double free in pvc_xmit

2021-03-28 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net.git (refs/heads/master): On Sun, 28 Mar 2021 00:50:08 -0700 you wrote: > In pvc_xmit, if __skb_pad(skb, pad, false) failed, it will free > the skb in the first time and goto drop. But the same skb is freed > by kfree_skb(skb) in the second time in

Re: [PATCH 1/8] gpio: Add Elba SoC gpio driver for spi cs control

2021-03-28 Thread Brad Larson
On Sun, Mar 7, 2021 at 11:21 AM Andy Shevchenko wrote: > > On Thu, Mar 4, 2021 at 4:40 PM Brad Larson wrote: > > > > This GPIO driver is for the Pensando Elba SoC which > > provides control of four chip selects on two SPI busses. > > > +config GPIO_ELBA_SPICS > > + bool "Pensando Elba SPI

RE:Re: [PATCH v3 1/3] dt-bindings: imx6q-pcie: add one regulator used to power up pcie phy

2021-03-28 Thread Richard Zhu
> -Original Message- > From: Lucas Stach > Sent: Friday, March 26, 2021 5:38 PM > To: Richard Zhu ; andrew.smir...@gmail.com; > shawn...@kernel.org; k...@linux.com; bhelg...@google.com; > ste...@agner.ch; lorenzo.pieral...@arm.com > Cc: linux-...@vger.kernel.org; dl-linux-imx ; >

Re: [PATCH net-next v2] net: dsa: hellcreek: Remove redundant dev_err call in hellcreek_probe()

2021-03-28 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net-next.git (refs/heads/master): On Sat, 27 Mar 2021 18:07:18 +0800 you wrote: > From: Guobin Huang > > There is a error message within devm_ioremap_resource > already, so remove the dev_err call to avoid redundant > error message. > > Reported-by:

Re: [PATCH] mt76: Convert to DEFINE_SHOW_ATTRIBUTE

2021-03-28 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net-next.git (refs/heads/master): On Sat, 27 Mar 2021 17:56:17 +0800 you wrote: > From: Junlin Yang > > Use DEFINE_SHOW_ATTRIBUTE macro to simplify the code. > > Signed-off-by: Junlin Yang > --- > .../net/wireless/mediatek/mt76/mt7915/debugfs.c|

Re: [PATCH net-next v2] net: lantiq: Remove redundant dev_err call in xrx200_probe()

2021-03-28 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net-next.git (refs/heads/master): On Sat, 27 Mar 2021 18:31:51 +0800 you wrote: > From: Guobin Huang > > There is a error message within devm_ioremap_resource > already, so remove the dev_err call to avoid redundant > error message. > > Reported-by:

Re: [PATCH net-next v2] net: moxa: remove redundant dev_err call in moxart_mac_probe()

2021-03-28 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net-next.git (refs/heads/master): On Sat, 27 Mar 2021 18:37:54 +0800 you wrote: > From: Guobin Huang > > There is a error message within devm_ioremap_resource > already, so remove the dev_err call to avoid redundant > error message. > > Reported-by:

Re: [PATCH 7/8] arm64: dts: Add Pensando Elba SoC support

2021-03-28 Thread Brad Larson
On Thu, Mar 4, 2021 at 12:03 AM Serge Semin wrote: > > On Wed, Mar 03, 2021 at 07:41:40PM -0800, Brad Larson wrote: > > Add Pensando common and Elba SoC specific device nodes > > and corresponding binding documentation. > > This also needs to be split up into sub-patches seeing these are >

Re: [PATCH 1/2] arm64: dts: fsl-ls1028a-kontron-sl28: move MTD partitions

2021-03-28 Thread Shawn Guo
On Thu, Mar 18, 2021 at 06:18:55PM +0100, Michael Walle wrote: > Move the MTD partitions to the partitions subnode. This is the new way > to specify the partitions, see > Documentation/devicetree/bindings/mtd/jedec,spi-nor.yaml > > Signed-off-by: Michael Walle Applied, thanks.

[tip:master 9/23] arch/x86/net/bpf_jit_comp.c:2015:16: error: 'ideal_nops' undeclared

2021-03-28 Thread kernel test robot
tree: https://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git master head: 4b3ff7dd4b69698c08ca1d51741fe773a7b30b0a commit: b1edfa9879e8a5e6040c33c157e23030176976a9 [9/23] Merge branch 'x86/cpu' config: x86_64-rhel-8.3-kselftests (attached as .config) compiler: gcc-9 (Debian 9.3.0-22)

Re: [PATCH net-next,v2] net: dsa: mt7530: clean up core and TRGMII clock setup

2021-03-28 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net-next.git (refs/heads/master): On Fri, 26 Mar 2021 23:07:52 -0700 you wrote: > Three minor changes: > > - When disabling PLL, there is no need to call core_write_mmd_indirect > directly, use the core_write wrapper instead like the rest of the code >

Re: [PATCH -next 0/3] Fix some typos

2021-03-28 Thread patchwork-bot+netdevbpf
Hello: This series was applied to netdev/net-next.git (refs/heads/master): On Sat, 27 Mar 2021 10:27:21 +0800 you wrote: > Lu Wei (3): > net: rds: Fix a typo > net: sctp: Fix some typos > net: vsock: Fix a typo > > net/rds/send.c | 2 +- > net/sctp/sm_make_chunk.c | 2 +- >

Re: [PATCH] drivers: net: smc91x: remove redundant initialization of pointer gpio

2021-03-28 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net-next.git (refs/heads/master): On Fri, 26 Mar 2021 19:28:47 + you wrote: > From: Colin Ian King > > The pointer gpio is being initialized with a value that is > never read and it is being updated later with a new value. The > initialization is

Re: [PATCH] firmware: imx: scu-pd: Update comments for single global power domain

2021-03-28 Thread Shawn Guo
On Wed, Mar 17, 2021 at 10:31:17AM +0100, Ulf Hansson wrote: > Since the introduction of the PM domain support for the scu-pd, the genpd > framework has been continuously improved. More preciously, using a single > global power domain can quite easily be deployed for imx platforms. > > To avoid

Re: [PATCH 7/8] arm64: dts: Add Pensando Elba SoC support

2021-03-28 Thread Brad Larson
On Thu, Mar 4, 2021 at 12:52 AM Linus Walleij wrote: > > On Thu, Mar 4, 2021 at 4:42 AM Brad Larson wrote: > > > Add Pensando common and Elba SoC specific device nodes > > and corresponding binding documentation. > > > > Signed-off-by: Brad Larson > (...) > >

[PATCH v2] x86/apic/vector: Move pr_warn() out of vector_lock

2021-03-28 Thread Waiman Long
It was found that the following circular locking dependency warning could happen in some systems: [ 218.097878] == [ 218.097879] WARNING: possible circular locking dependency detected [ 218.097880] 4.18.0-228.el8.x86_64+debug #1 Not tainted [

Re: [PATCH 5/5] arm: dts: qcom: Add initial DTS file for Samsung Galaxy S III Neo phone

2021-03-28 Thread kernel test robot
Hi Bartosz, Thank you for the patch! Perhaps something to improve: [auto build test WARNING on clk/clk-next] [also build test WARNING on robh/for-next v5.12-rc4 next-20210326] [If your patch is applied to the wrong git tree, kindly drop us a note. And when submitting patch, we suggest to use

Re: [PATCH v5] audit: log nftables configuration change events once per table

2021-03-28 Thread Paul Moore
On Fri, Mar 26, 2021 at 1:39 PM Richard Guy Briggs wrote: > > Reduce logging of nftables events to a level similar to iptables. > Restore the table field to list the table, adding the generation. > > Indicate the op as the most significant operation in the event. > > A couple of sample events: >

Re: [PATCH v6 00/14] Add some DRM bridge drivers support for i.MX8qm/qxp SoCs

2021-03-28 Thread Marcel Ziswiler
Hi Liu On Tue, 2021-03-23 at 17:09 +0800, Liu Ying wrote: > On Tue, 2021-03-23 at 01:03 +, Marcel Ziswiler wrote: > > Hi Liu > > > > Some further discrepancy with them binding examples: > > > > arch/arm64/boot/dts/freescale/imx8qxp.dtsi:335.9-36: Warning (reg_format): > >

fs/gfs2/rgrp.c:1772:53: warning: Possible null pointer dereference: minext [nullPointer]

2021-03-28 Thread kernel test robot
tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master head: 0f4498cef9f5cd18d7c6639a2a902ec1edc5be4e commit: f38e998fbbb5da6a097ecd4b2700ba95eabab0c9 gfs2: Also reflect single-block allocations in rgd->rd_extfail_pt compiler: sparc64-linux-gcc (GCC) 9.3.0 If you

Re: [PATCH] x86/apic/vector: Move pr_warn() outside of vector_lock

2021-03-28 Thread Waiman Long
On 3/28/21 6:04 PM, Thomas Gleixner wrote: Waiman, On Sun, Mar 28 2021 at 15:58, Waiman Long wrote: It was found that the following circular locking dependency warning could happen in some systems: [ 218.097878] == [ 218.097879] WARNING:

Re: [PATCH v2 0/7] remove different PHY fixups

2021-03-28 Thread Shawn Guo
On Wed, Mar 24, 2021 at 06:54:24AM +0100, Oleksij Rempel wrote: > Hi Shawn, > > ping, do this patches need some ACK from some one? As this will break existing DTBs, I need more ACKs from people to see the consensus that this is the right thing to do. Shawn > > Regards, > Oleksij > > On Tue,

Re: [PATCH] bearer.h: Spellos fixed

2021-03-28 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net-next.git (refs/heads/master): On Sat, 27 Mar 2021 04:42:37 +0530 you wrote: > s/initalized/initialized/ ...three different places > > Signed-off-by: Bhaskar Chowdhury > --- > net/tipc/bearer.h | 6 +++--- > 1 file changed, 3 insertions(+), 3

Re: [PATCH] ipv6: addrconf.c: Fix a typo

2021-03-28 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net-next.git (refs/heads/master): On Sat, 27 Mar 2021 04:42:40 +0530 you wrote: > s/Identifers/Identifiers/ > > Signed-off-by: Bhaskar Chowdhury > --- > net/ipv6/addrconf.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > [...] Here is the

Re: [PATCH] mptcp: subflow.c: Fix a typo

2021-03-28 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net-next.git (refs/heads/master): On Sat, 27 Mar 2021 04:42:46 +0530 you wrote: > s/concerened/concerned/ > > Signed-off-by: Bhaskar Chowdhury > --- > net/mptcp/subflow.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > [...] Here is the

Re: [PATCH] ipv4: ip_output.c: Couple of typo fixes

2021-03-28 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net-next.git (refs/heads/master): On Sat, 27 Mar 2021 04:42:38 +0530 you wrote: > s/readibility/readability/ > s/insufficent/insufficient/ > > Signed-off-by: Bhaskar Chowdhury > --- > net/ipv4/ip_output.c | 4 ++-- > 1 file changed, 2 insertions(+), 2

Re: [PATCH] ncsi: internal.h: Fix a spello

2021-03-28 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net-next.git (refs/heads/master): On Sat, 27 Mar 2021 04:42:47 +0530 you wrote: > s/Firware/Firmware/ > > Signed-off-by: Bhaskar Chowdhury > --- > net/ncsi/internal.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > [...] Here is the

Re: [PATCH] arm64: dts: ls1028a: fix optee node

2021-03-28 Thread Shawn Guo
On Mon, Mar 22, 2021 at 06:12:06PM -0500, Li Yang wrote: > On Thu, Mar 18, 2021 at 3:36 AM Michael Walle wrote: > > > > Don't enable the optee node in the SoC include. It is an optional > > component and actually, if enabled, breaks boards which doesn't have it. > > Hi Shawn, > > Shall we make

Re: [PATCH] ASoC: audio-graph-card: Add audio mixer for Motorola mdm6600

2021-03-28 Thread kernel test robot
'--base' as documented in https://git-scm.com/docs/git-format-patch] url: https://github.com/0day-ci/linux/commits/Pavel-Machek/ASoC-audio-graph-card-Add-audio-mixer-for-Motorola-mdm6600/20210328-191104 base: https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next config: x86_64

[PATCH] erofs: add unsupported inode i_format check

2021-03-28 Thread Gao Xiang
From: Gao Xiang If any unknown i_format fields are set (may be of some new incompat inode features), mark such inode as unsupported. Just in case of any new incompat i_format fields added in the future. Fixes: 431339ba9042 ("staging: erofs: add inode operations") Cc: # 4.19+ Signed-off-by:

Re: [PATCH 2/4] rtc: abx80x: Enable SQW output

2021-03-28 Thread kernel test robot
Hi Kirill, Thank you for the patch! Perhaps something to improve: [auto build test WARNING on abelloni/rtc-next] [also build test WARNING on v5.12-rc5 next-20210326] [If your patch is applied to the wrong git tree, kindly drop us a note. And when submitting patch, we suggest to use '--base' as

[PATCH] exfat: change i_pos based exfat hash to rb tree

2021-03-28 Thread Hyeongseok Kim
Hashtable for identifying inode by i_pos (cluster+dentry) have slow search performance when there are lots of cached inode. The slowness is from the limited count of slots showing that, in average, (inode count / slots) times hlist traverse, and it becomes worse when cached inode count increases

hppa64-linux-ld: net/ipv4/ipconfig.o(.init.text+0x1b54): cannot reach preempt_schedule

2021-03-28 Thread kernel test robot
tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master head: 0f4498cef9f5cd18d7c6639a2a902ec1edc5be4e commit: 217275453b3e1fc5abf2a8cc2e231e1daa237d99 ethtool: provide coalescing parameters with COALESCE_GET request date: 12 months ago config:

[PATCH 30/30] xilinx_dma.c: Fix a typo

2021-03-28 Thread Bhaskar Chowdhury
s/interace/interface/ Signed-off-by: Bhaskar Chowdhury --- drivers/dma/xilinx/xilinx_dma.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/dma/xilinx/xilinx_dma.c b/drivers/dma/xilinx/xilinx_dma.c index 3aded7861fef..63d2f447ad79 100644 ---

[PATCH 29/30] edma.c: Fix a typo

2021-03-28 Thread Bhaskar Chowdhury
s/transfering/transferring/ Signed-off-by: Bhaskar Chowdhury --- drivers/dma/ti/edma.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/dma/ti/edma.c b/drivers/dma/ti/edma.c index 35d81bd857f1..5ad771e34457 100644 --- a/drivers/dma/ti/edma.c +++

[PATCH 28/30] usb-dmac.c: Fix a typo

2021-03-28 Thread Bhaskar Chowdhury
s/descritpor/descriptor/ Signed-off-by: Bhaskar Chowdhury --- drivers/dma/sh/usb-dmac.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/dma/sh/usb-dmac.c b/drivers/dma/sh/usb-dmac.c index 8f7ceb698226..7092a657932b 100644 --- a/drivers/dma/sh/usb-dmac.c +++

[PATCH 26/30] dw-axi-dmac-platform.c: Few typos fixed

2021-03-28 Thread Bhaskar Chowdhury
s/configurarion/configuration/ s/inerrupts/interrupts/ s/chanels/channels/ two different places. s/Synopsys/Synopsis/ Signed-off-by: Bhaskar Chowdhury --- drivers/dma/dw-axi-dmac/dw-axi-dmac-platform.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git

[PATCH 25/30] ste_dma40.c: Few spello fixes

2021-03-28 Thread Bhaskar Chowdhury
s/ealier/earlier/ s/orignal/original/ s/manouver/maneuver/ s/transfer/transfer/ s/succees/success/ Signed-off-by: Bhaskar Chowdhury --- drivers/dma/ste_dma40.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/dma/ste_dma40.c b/drivers/dma/ste_dma40.c index

[PATCH 27/30] dpaa2-qdma.c: Fix a typo

2021-03-28 Thread Bhaskar Chowdhury
s/contoller/controller/ Signed-off-by: Bhaskar Chowdhury --- drivers/dma/sh/shdmac.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/dma/sh/shdmac.c b/drivers/dma/sh/shdmac.c index 5aafe548ca5f..7b51b15b45b1 100644 --- a/drivers/dma/sh/shdmac.c +++

[PATCH 24/30] Kconfig: Change Synopsys to Synopsis

2021-03-28 Thread Bhaskar Chowdhury
s/Synopsys/Synopsis/ .two different places. ..and for some unknown reason it introduce a empty line deleted and added back. Signed-off-by: Bhaskar Chowdhury --- drivers/dma/Kconfig | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/dma/Kconfig

[PATCH 23/30] dma-jz4780.c: Fix a typo

2021-03-28 Thread Bhaskar Chowdhury
s/proceeed/proceed/ Signed-off-by: Bhaskar Chowdhury --- drivers/dma/dma-jz4780.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/dma/dma-jz4780.c b/drivers/dma/dma-jz4780.c index ebee94dbd630..451bc754b609 100644 --- a/drivers/dma/dma-jz4780.c +++

[PATCH 22/30] at_hdmac_regs.h: Couple of typo fixes

2021-03-28 Thread Bhaskar Chowdhury
s/availlable/available/ s/signle/single/ Signed-off-by: Bhaskar Chowdhury --- drivers/dma/at_hdmac_regs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/dma/at_hdmac_regs.h b/drivers/dma/at_hdmac_regs.h index 4d1ebc040031..46ecc40edaa8 100644 ---

[PATCH 19/30] xgene-dma.c: Few spello fixes

2021-03-28 Thread Bhaskar Chowdhury
s/definations/definitions/ two different places. s/Configue/Configure/ Signed-off-by: Bhaskar Chowdhury --- drivers/dma/xgene-dma.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/dma/xgene-dma.c b/drivers/dma/xgene-dma.c index 3589b4ef50b8..9b0010b6e033

[PATCH 21/30] owl-dma.c: Fix a typo

2021-03-28 Thread Bhaskar Chowdhury
s/Eventhough/"Even though"/ Signed-off-by: Bhaskar Chowdhury --- drivers/dma/owl-dma.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/dma/owl-dma.c b/drivers/dma/owl-dma.c index 1f0bbaed4643..3c7283afa443 100644 --- a/drivers/dma/owl-dma.c +++

[PATCH 20/30] at_hdmac.c: Quite a few spello fixes

2021-03-28 Thread Bhaskar Chowdhury
s/tranfers/transfers/ s/maxium/maximum/ s/previouly/previously/ s/broked/broken/ s/embedds/embeds/ three different places. Signed-off-by: Bhaskar Chowdhury --- drivers/dma/at_hdmac.c | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/drivers/dma/at_hdmac.c

[PATCH 16/30] st_fdma.h: Fix couple of typos

2021-03-28 Thread Bhaskar Chowdhury
s/transfert/transfer/ ...two different places. Signed-off-by: Bhaskar Chowdhury --- drivers/dma/st_fdma.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/dma/st_fdma.h b/drivers/dma/st_fdma.h index fa15b97a3bab..702b21021124 100644 --- a/drivers/dma/st_fdma.h

[PATCH 17/30] ste_dma40_ll.h: Fix a typo

2021-03-28 Thread Bhaskar Chowdhury
s/directy/directly/ Signed-off-by: Bhaskar Chowdhury --- drivers/dma/ste_dma40_ll.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/dma/ste_dma40_ll.h b/drivers/dma/ste_dma40_ll.h index c504e855eb02..2e30e9a94a1e 100644 --- a/drivers/dma/ste_dma40_ll.h +++

[PATCH 18/30] tegra20-apb-dma.c: Fixed a typo

2021-03-28 Thread Bhaskar Chowdhury
s/programing/programming/ Signed-off-by: Bhaskar Chowdhury --- drivers/dma/tegra20-apb-dma.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/dma/tegra20-apb-dma.c b/drivers/dma/tegra20-apb-dma.c index 71827d9b0aa1..e64789432587 100644 ---

[PATCH 15/30] s3c24xx-dma.c: Few typos fixed

2021-03-28 Thread Bhaskar Chowdhury
s/transfered/transferred/ s/desintation/destination/ ...two different places. Signed-off-by: Bhaskar Chowdhury --- drivers/dma/s3c24xx-dma.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/dma/s3c24xx-dma.c b/drivers/dma/s3c24xx-dma.c index

[PATCH 12/30] of-dma.c: Fixed a typo

2021-03-28 Thread Bhaskar Chowdhury
s/propety/properly/ Signed-off-by: Bhaskar Chowdhury --- drivers/dma/of-dma.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/dma/of-dma.c b/drivers/dma/of-dma.c index ec00b20ae8e4..e028acff7fe8 100644 --- a/drivers/dma/of-dma.c +++ b/drivers/dma/of-dma.c @@ -337,7

[PATCH 14/30] Revert "s3c24xx-dma.c: Fix a typo"

2021-03-28 Thread Bhaskar Chowdhury
s/transferred/transfered/ This reverts commit a2ddb8aea8106bd5552f8516ad7a8a26b9282a8f. --- drivers/dma/s3c24xx-dma.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/dma/s3c24xx-dma.c b/drivers/dma/s3c24xx-dma.c index c98ae73cdcc3..8e14c72d03f0 100644 ---

[PATCH 10/30] mv_xor_v2.c: Fix a typo

2021-03-28 Thread Bhaskar Chowdhury
s/assosiated/associated/ Signed-off-by: Bhaskar Chowdhury --- drivers/dma/mv_xor_v2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/dma/mv_xor_v2.c b/drivers/dma/mv_xor_v2.c index 9b0d463f89bb..8a45861299a0 100644 --- a/drivers/dma/mv_xor_v2.c +++

[PATCH 13/30] s3c24xx-dma.c: Fix a typo

2021-03-28 Thread Bhaskar Chowdhury
s/transfered/transferred/ Signed-off-by: Bhaskar Chowdhury --- drivers/dma/s3c24xx-dma.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/dma/s3c24xx-dma.c b/drivers/dma/s3c24xx-dma.c index 8e14c72d03f0..c98ae73cdcc3 100644 --- a/drivers/dma/s3c24xx-dma.c +++

[PATCH 11/30] nbpfaxi.c: Fixed a typo

2021-03-28 Thread Bhaskar Chowdhury
s/superflous/superfluous/ Signed-off-by: Bhaskar Chowdhury --- drivers/dma/nbpfaxi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/dma/nbpfaxi.c b/drivers/dma/nbpfaxi.c index 9c52c57919c6..9eacaa20ddb3 100644 --- a/drivers/dma/nbpfaxi.c +++ b/drivers/dma/nbpfaxi.c

[PATCH 09/30] mv_xor.h: Fixed a typo

2021-03-28 Thread Bhaskar Chowdhury
s/writen/written/ Signed-off-by: Bhaskar Chowdhury --- drivers/dma/mv_xor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/dma/mv_xor.h b/drivers/dma/mv_xor.h index d86086b05b0e..c87cefd38a07 100644 --- a/drivers/dma/mv_xor.h +++ b/drivers/dma/mv_xor.h @@ -99,7

[PATCH 06/30] idma64.c: Fix couple of typos

2021-03-28 Thread Bhaskar Chowdhury
s/transfered/transferred/ ...two different places Signed-off-by: Bhaskar Chowdhury --- drivers/dma/idma64.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/dma/idma64.c b/drivers/dma/idma64.c index f4c07ad3be15..3d0d48b12e28 100644 --- a/drivers/dma/idma64.c +++

[PATCH 07/30] iop-adma.c: Few typos fixed

2021-03-28 Thread Bhaskar Chowdhury
s/asynchrounous/asynchronous/ s/depedency/dependency/ s/capabilites/capabilities/ Signed-off-by: Bhaskar Chowdhury --- drivers/dma/iop-adma.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/dma/iop-adma.c b/drivers/dma/iop-adma.c index

[PATCH 08/30] mv_xor.c: Fix a typo

2021-03-28 Thread Bhaskar Chowdhury
s/capabilites/capabilities/ Signed-off-by: Bhaskar Chowdhury --- drivers/dma/mv_xor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/dma/mv_xor.c b/drivers/dma/mv_xor.c index 23b232b57518..a43388b6a30d 100644 --- a/drivers/dma/mv_xor.c +++ b/drivers/dma/mv_xor.c @@

Re: [PATCH] ia64: tools: add generic errno.h definition

2021-03-28 Thread Sergei Trofimovich
On Sat, 27 Mar 2021 10:18:18 + Sergei Trofimovich wrote: > On Fri, Mar 12, 2021 at 07:51:35AM +, Sergei Trofimovich wrote: > > Noticed missing header when build bpfilter helper: > > > > CC [U] net/bpfilter/main.o > > In file included from /usr/include/linux/errno.h:1, > >

[PATCH 05/30] bcm2835-dma.c: Fix a typo

2021-03-28 Thread Bhaskar Chowdhury
s/missmatch/mismatch/ Signed-off-by: Bhaskar Chowdhury --- drivers/dma/bcm2835-dma.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/dma/bcm2835-dma.c b/drivers/dma/bcm2835-dma.c index 630dfbb01a40..e6baf17b0434 100644 --- a/drivers/dma/bcm2835-dma.c +++

[PATCH 03/30] amba-pl08x.c: Fixed couple of typos

2021-03-28 Thread Bhaskar Chowdhury
s/busses/buses/ s/accound/account/ Signed-off-by: Bhaskar Chowdhury --- drivers/dma/amba-pl08x.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/dma/amba-pl08x.c b/drivers/dma/amba-pl08x.c index a24882ba3764..d15182634789 100644 --- a/drivers/dma/amba-pl08x.c

[PATCH 04/30] bcm-sba-raid.c: Few typos fixed

2021-03-28 Thread Bhaskar Chowdhury
s/Maibox/Mailbox/ s/alloced/allocated/ s/atleast/"at least"/ s/parallely/parallel/ Signed-off-by: Bhaskar Chowdhury --- drivers/dma/bcm-sba-raid.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/dma/bcm-sba-raid.c b/drivers/dma/bcm-sba-raid.c index

<    1   2   3   4   5   >