Re: [PATCH rdma-next v2 0/9] Restore failure of destroy commands

2020-09-09 Thread Jason Gunthorpe
On Mon, Sep 07, 2020 at 03:09:12PM +0300, Leon Romanovsky wrote: > From: Leon Romanovsky > > Changelog: > v2: > * Rebased on top of the 524d8ffd07f0 > * Removed "udata" check in destroy flows > * Changed ib_free_cq to return early > * Used Jason's suggestion to implement "RDMA/mlx5: Issue FW

Re: [PATCH v2 1/8] x86/CPU/AMD: Save NodeId on AMD-based systems

2020-09-09 Thread Borislav Petkov
On Thu, Sep 03, 2020 at 08:01:37PM +, Yazen Ghannam wrote: > From: Yazen Ghannam > > AMD systems provide a "NodeId" value that represents a global ID > indicating to which "Node" a logical CPU belongs. The "Node" is a > physical structure equivalent to a Die, and it should not be confused >

Re: [PATCH] iio: light: as73211: Increase measurement timeout

2020-09-09 Thread Christian Eggers
On Wednesday, 9 September 2020, 18:58:39 CEST, Andy Shevchenko wrote: > On Wed, Sep 9, 2020 at 6:45 PM Christian Eggers wrote: > > We found some sensors which are much slower (20% at room temperature) > > than nominal. According to the data sheet, up to 27% is possible. Now I > > add 33% to the

Re: [RFC PATCH v2 1/3] mm/gup: fix gup_fast with dynamic page table folding

2020-09-09 Thread Jason Gunthorpe
On Wed, Sep 09, 2020 at 07:25:34PM +0200, Gerald Schaefer wrote: > I actually had to draw myself a picture to get some hold of > this, or rather a walk-through with a certain pud-crossing > range in a folded 3-level scenario. Not sure if I would have > understood my explanation above w/o that, but

[PATCH] platform_device: switch to simpler IDA interface

2020-09-09 Thread Bartosz Golaszewski
From: Bartosz Golaszewski We don't need to specify any ranges when allocating IDs so we can switch to ida_alloc() and ida_free() instead of the ida_simple_ counterparts. ida_simple_get(ida, 0, 0, gfp) is equivalent to ida_alloc_range(ida, 0, UINT_MAX, gfp) which is equivalent to ida_alloc(ida,

Re: Linux 4.19.144

2020-09-09 Thread Greg Kroah-Hartman
diff --git a/Documentation/filesystems/affs.txt b/Documentation/filesystems/affs.txt index 71b63c2b9841..a8f1a58e3692 100644 --- a/Documentation/filesystems/affs.txt +++ b/Documentation/filesystems/affs.txt @@ -93,13 +93,15 @@ The Amiga protection flags RWEDRWEDHSPARWED are handled as follows:

Linux 5.8.8

2020-09-09 Thread Greg Kroah-Hartman
I'm announcing the release of the 5.8.8 kernel. All users of the 5.8 kernel series must upgrade. The updated 5.8.y git tree can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-5.8.y and can be browsed at the normal kernel.org git web browser:

Re: Linux 4.14.197

2020-09-09 Thread Greg Kroah-Hartman
diff --git a/Documentation/filesystems/affs.txt b/Documentation/filesystems/affs.txt index 71b63c2b9841..a8f1a58e3692 100644 --- a/Documentation/filesystems/affs.txt +++ b/Documentation/filesystems/affs.txt @@ -93,13 +93,15 @@ The Amiga protection flags RWEDRWEDHSPARWED are handled as follows:

Linux 4.14.197

2020-09-09 Thread Greg Kroah-Hartman
I'm announcing the release of the 4.14.197 kernel. All users of the 4.14 kernel series must upgrade. The updated 4.14.y git tree can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-4.14.y and can be browsed at the normal kernel.org git web

Linux 4.19.144

2020-09-09 Thread Greg Kroah-Hartman
I'm announcing the release of the 4.19.144 kernel. All users of the 4.19 kernel series must upgrade. The updated 4.19.y git tree can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-4.19.y and can be browsed at the normal kernel.org git web

Linux 5.4.64

2020-09-09 Thread Greg Kroah-Hartman
I'm announcing the release of the 5.4.64 kernel. All users of the 5.4 kernel series must upgrade. The updated 5.4.y git tree can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git linux-5.4.y and can be browsed at the normal kernel.org git web browser:

Re: [PATCH 5.8 000/186] 5.8.8-rc1 review

2020-09-09 Thread Greg Kroah-Hartman
On Wed, Sep 09, 2020 at 09:47:05AM -0700, Guenter Roeck wrote: > On Tue, Sep 08, 2020 at 05:22:22PM +0200, Greg Kroah-Hartman wrote: > > This is the start of the stable review cycle for the 5.8.8 release. > > There are 186 patches in this series, all will be posted as a response > > to this one.

Re: [PATCH 5.8 000/186] 5.8.8-rc1 review

2020-09-09 Thread Greg Kroah-Hartman
On Tue, Sep 08, 2020 at 07:39:08PM -0600, Shuah Khan wrote: > On 9/8/20 9:22 AM, Greg Kroah-Hartman wrote: > > This is the start of the stable review cycle for the 5.8.8 release. > > There are 186 patches in this series, all will be posted as a response > > to this one. If anyone has any issues

Re: [PATCH 5.8 000/186] 5.8.8-rc1 review

2020-09-09 Thread Greg Kroah-Hartman
On Wed, Sep 09, 2020 at 11:18:57AM +0530, Naresh Kamboju wrote: > On Tue, 8 Sep 2020 at 21:05, Greg Kroah-Hartman > wrote: > > > > This is the start of the stable review cycle for the 5.8.8 release. > > There are 186 patches in this series, all will be posted as a response > > to this one. If

Re: [PATCH v2] mm/vmscan: fix infinite loop in drop_slab_node

2020-09-09 Thread Vlastimil Babka
On 9/9/20 5:20 PM, zangchun...@bytedance.com wrote: > From: Chunxin Zang > > On our server, there are about 10k memcg in one machine. They use memory > very frequently. When I tigger drop caches,the process will infinite loop > in drop_slab_node. > > There are two reasons: > 1.We have too many

Re: [RFC PATCH v8 0/3] Add support for AT_INTERPRETED (was O_MAYEXEC)

2020-09-09 Thread Mickaël Salaün
On 09/09/2020 19:13, Al Viro wrote: > On Wed, Sep 09, 2020 at 09:19:11AM +0200, Mickaël Salaün wrote: >> >> On 08/09/2020 20:50, Al Viro wrote: >>> On Tue, Sep 08, 2020 at 09:59:53AM +0200, Mickaël Salaün wrote: Hi, This height patch series rework the previous O_MAYEXEC series by

Re: [RFC PATCH v8 0/3] Add support for AT_INTERPRETED (was O_MAYEXEC)

2020-09-09 Thread Mickaël Salaün
On 09/09/2020 19:08, Matthew Wilcox wrote: > On Wed, Sep 09, 2020 at 09:19:11AM +0200, Mickaël Salaün wrote: >> >> On 08/09/2020 20:50, Al Viro wrote: >>> On Tue, Sep 08, 2020 at 09:59:53AM +0200, Mickaël Salaün wrote: Hi, This height patch series rework the previous O_MAYEXEC

Re: [PATCH v2 0/2] ubifs: Fixes around ubifs-authentication.rst

2020-09-09 Thread Jonathan Corbet
On Sat, 5 Sep 2020 22:43:24 +0200 Jonathan Neuschäfer wrote: > In these two patches, I add ubifs-authentication.rst to MAINTAINERS and > add a heading to prevent the chapter headings from being listed in > filesystems/index.html. I've applied the set, thanks. jon

Re: [PATCH net-next] net: dsa: b53: Report VLAN table occupancy via devlink

2020-09-09 Thread David Miller
From: Vladimir Oltean Date: Wed, 9 Sep 2020 19:03:37 +0300 > On Tue, Sep 08, 2020 at 09:32:34PM -0700, Florian Fainelli wrote: >> @@ -977,6 +977,53 @@ int b53_get_sset_count(struct dsa_switch *ds, int port, >> int sset) >> } >> EXPORT_SYMBOL(b53_get_sset_count); >> >> +enum

Re: [PATCH 2/3] perf metricgroup: Fix uncore metric expressions

2020-09-09 Thread Ian Rogers
On Wed, Sep 9, 2020 at 2:53 AM Namhyung Kim wrote: > > Hi Ian, > > On Wed, Sep 9, 2020 at 5:02 PM Ian Rogers wrote: > > > > A metric like DRAM_BW_Use has on SkylakeX events uncore_imc/cas_count_read/ > > and uncore_imc/case_count_write/. These events open 6 events per socket > > with pmu names

Re: kernel BUG at /usr/src/kernel/lib/dynamic_debug.c:267!

2020-09-09 Thread jim . cromie
On Wed, Sep 9, 2020 at 6:24 AM Greg Kroah-Hartman wrote: > > On Wed, Sep 09, 2020 at 10:00:25AM +0200, Petr Mladek wrote: > > On Wed 2020-09-09 14:47:45, Masami Hiramatsu wrote: > > > Hi Naresh, > > > > > > Thanks for reporting, it seems that you have run the > > >

[GIT PULL] Please pull NFS client bugfixes for Linux 5.9

2020-09-09 Thread Trond Myklebust
Hi Linus, The following changes since commit d012a7190fc1fd72ed48911e77ca97ba4521bccd: Linux 5.9-rc2 (2020-08-23 14:08:43 -0700) are available in the Git repository at: git://git.linux-nfs.org/projects/trondmy/linux-nfs.git tags/nfs-for-5.9-2 for you to fetch changes up to

Re: [v1,1/3] dt-bindings: Add YAML schemas for Gen3 PCIe controller

2020-09-09 Thread Rob Herring
On Tue, Sep 8, 2020 at 9:10 PM Jianjun Wang wrote: > > On Tue, 2020-09-08 at 13:50 -0600, Rob Herring wrote: > > On Mon, 07 Sep 2020 20:08:50 +0800, Jianjun Wang wrote: > > > Add YAML schemas documentation for Gen3 PCIe controller on > > > MediaTek SoCs. > > > > > > Acked-by: Ryder Lee > > >

[PATCH net-next v2] net: dsa: b53: Report VLAN table occupancy via devlink

2020-09-09 Thread Florian Fainelli
We already maintain an array of VLANs used by the switch so we can simply iterate over it to report the occupancy via devlink. Signed-off-by: Florian Fainelli --- Changes in v2: - make count u64 - correct typo: s/PARMA/PARAM/ drivers/net/dsa/b53/b53_common.c | 60

Re: [PATCH v7 2/3] ASoC: qcom: dt-bindings: Add sc7180 machine bindings

2020-09-09 Thread Rob Herring
On Wed, Sep 9, 2020 at 3:24 AM Cheng-yi Chiang wrote: > > On Wed, Sep 9, 2020 at 4:34 AM Rob Herring wrote: > > > > On Mon, Sep 07, 2020 at 06:00:38PM +0800, Cheng-Yi Chiang wrote: > > > Add devicetree bindings documentation file for sc7180 sound card. > > > > > > Signed-off-by: Cheng-Yi Chiang

Re: [PATCH v5 2/2] misc: rtsx: Add power saving functions and fix driving parameter

2020-09-09 Thread Bjorn Helgaas
On Wed, Sep 09, 2020 at 07:10:19AM +, 吳昊澄 Ricky wrote: > > -Original Message- > > From: Bjorn Helgaas [mailto:helg...@kernel.org] > > Sent: Wednesday, September 09, 2020 6:29 AM > > To: 吳昊澄 Ricky > > Cc: a...@arndb.de; gre...@linuxfoundation.org; bhelg...@google.com; > >

Re: [PATCH] Documentation: iio: fix a typo

2020-09-09 Thread Jonathan Corbet
On Fri, 4 Sep 2020 11:19:11 +0200 poesc...@lemonage.de wrote: > Rename function name to the actual name referenced in > struct iio_sw_trigger_ops. > > Signed-off-by: Lars Poeschel > --- > Documentation/iio/iio_configfs.rst | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff

Re: [PATCH v2] mm/doc: editorial pass on page migration

2020-09-09 Thread Jonathan Corbet
On Wed, 2 Sep 2020 15:52:47 -0700 Ralph Campbell wrote: > Add Sphinx reference links to HMM and CPUSETS, and numerous small > editorial changes to make the page_migration.rst document more readable. > > Signed-off-by: Ralph Campbell > --- > > The patch applies cleanly to the latest linux or

Re: [PATCH v2] certs: Add EFI_CERT_X509_GUID support for dbx entries

2020-09-09 Thread Randy Dunlap
On 9/9/20 10:27 AM, Eric Snowberg wrote: > diff --git a/include/crypto/pkcs7.h b/include/crypto/pkcs7.h > index 38ec7f5f9041..d8f2e0fdfbf4 100644 > --- a/include/crypto/pkcs7.h > +++ b/include/crypto/pkcs7.h > @@ -26,11 +26,19 @@ extern int pkcs7_get_content_data(const struct > pkcs7_message

Re: [PATCH v7 00/34] Improvements for Tegra I2C driver

2020-09-09 Thread Dmitry Osipenko
09.09.2020 18:49, Wolfram Sang пишет: > On Wed, Sep 09, 2020 at 06:36:50PM +0300, Dmitry Osipenko wrote: >> 09.09.2020 12:11, Andy Shevchenko пишет: >>> On Wed, Sep 9, 2020 at 1:40 AM Dmitry Osipenko wrote: Hello! This series performs refactoring of the Tegra I2C driver code

Re: [PATCH 2/3] perf metricgroup: Fix uncore metric expressions

2020-09-09 Thread Ian Rogers
On Wed, Sep 9, 2020 at 1:33 AM Jin, Yao wrote: > > > > On 9/9/2020 4:02 PM, Ian Rogers wrote: > > A metric like DRAM_BW_Use has on SkylakeX events uncore_imc/cas_count_read/ > > and uncore_imc/case_count_write/. These events open 6 events per socket > > with pmu names of uncore_imc_[0-5]. The

Re: [PATCH] docs: deprecated.rst: Update zero-length/one-element arrays section

2020-09-09 Thread Jonathan Corbet
On Mon, 31 Aug 2020 20:09:49 -0500 "Gustavo A. R. Silva" wrote: > Update information in the zero-length and one-element arrays section > and illustrate how to make use of the new flex_array_size() helper, > together with struct_size() and a flexible-array member. > > Signed-off-by: Gustavo A.

Re: [PATCH] arm64: PCI: fix memleak when calling pci_iomap/unmap()

2020-09-09 Thread Lorenzo Pieralisi
On Wed, Sep 09, 2020 at 02:54:01PM +0100, Catalin Marinas wrote: > On Wed, Sep 09, 2020 at 12:36:13PM +0100, Lorenzo Pieralisi wrote: > > On Mon, Sep 07, 2020 at 12:21:19PM +0100, Catalin Marinas wrote: > > > On Mon, Sep 07, 2020 at 10:51:21AM +, George Cherian wrote: > > > > Catalin Marinas

Re: [PATCH v2] Documentation: submit-checklist: add clean builds for new Documentation

2020-09-09 Thread Jonathan Corbet
On Sun, 30 Aug 2020 17:43:54 -0700 Randy Dunlap wrote: > From: Randy Dunlap > > Add to Documentation/process/submit-checklist.rst that patch > submitters should run "make htmldocs" and verify that any > Documentation/ changes (patches) are clean (no new warnings/errors). > > Signed-off-by:

Re: [PATCH] docs: filesystems: replace to_dev() with kobj_to_dev()

2020-09-09 Thread Jonathan Corbet
On Sun, 30 Aug 2020 17:41:35 +0300 Denis Efremov wrote: > Commit a4232963757e ("driver-core: Move kobj_to_dev from genhd.h to device.h") > introduced kobj_to_dev() function. > > Signed-off-by: Denis Efremov > --- > Documentation/filesystems/sysfs.rst| 3 +-- >

Re: [PATCH] Documentation: remove current_security() reference

2020-09-09 Thread Jonathan Corbet
On Sun, 30 Aug 2020 17:25:09 +0300 Denis Efremov wrote: > Commit 15322a0d90b6 ("lsm: remove current_security()") removed > current_security() from the sources. > > Signed-off-by: Denis Efremov > --- > Documentation/security/credentials.rst | 1 - > 1 file changed, 1 deletion(-) > > diff

Re: possible deadlock in _snd_pcm_stream_lock_irqsave

2020-09-09 Thread syzbot
syzbot has bisected this issue to: commit e918188611f073063415f40fae568fa4d86d9044 Author: Boqun Feng Date: Fri Aug 7 07:42:20 2020 + locking: More accurate annotations for read_lock() bisection log: https://syzkaller.appspot.com/x/bisect.txt?x=112dc24390 start commit:

[PATCH v2] certs: Add EFI_CERT_X509_GUID support for dbx entries

2020-09-09 Thread Eric Snowberg
The Secure Boot Forbidden Signature Database, dbx, contains a list of now revoked signatures and keys previously approved to boot with UEFI Secure Boot enabled. The dbx is capable of containing any number of EFI_CERT_X509_SHA256_GUID, EFI_CERT_SHA256_GUID, and EFI_CERT_X509_GUID entries.

Re: remove the last set_fs() in common code, and remove it for x86 and powerpc v3

2020-09-09 Thread Linus Torvalds
On Thu, Sep 3, 2020 at 7:28 AM Al Viro wrote: > > I can live with this series; do you want that in vfs.git#for-next? Well, it's apparently there now (at least it's in your base.set_fs branch, I didn't check actual -next). So this is just a heads-up that I plan to merge the "asm goto" changes on

Re: [PATCH v4] docs: trusted-encrypted.rst: update parameters for command examples

2020-09-09 Thread Jonathan Corbet
On Fri, 21 Aug 2020 21:53:56 +0800 Coly Li wrote: > The parameters in command examples for tpm2_createprimary and > tpm2_evictcontrol are outdated, people (like me) are not able to create > trusted key by these command examples. > > This patch updates the parameters of command example

[PATCH v4] perf: arm_dsu: Support DSU ACPI devices

2020-09-09 Thread Tuan Phan
Add support for probing device from ACPI node. Each DSU ACPI node and its associated cpus are inside a cluster node. Signed-off-by: Tuan Phan --- Changes in v4: - Addressed Will's comments. Changes in v3: - Based on the latest ARM ACPI binding at:

Re: [PATCH v2 0/3] Expose recovery/coredump configuration from sysfs

2020-09-09 Thread rishabhb
On 2020-09-04 15:02, Mathieu Poirier wrote: On Thu, Sep 03, 2020 at 06:59:44PM -0500, Bjorn Andersson wrote: On Tue 01 Sep 17:05 CDT 2020, Mathieu Poirier wrote: > Hi Rishabh, > > On Thu, Aug 27, 2020 at 12:48:48PM -0700, Rishabh Bhatnagar wrote: > > From Android R onwards Google has

Re: [PATCH] kernel: events: Use scnprintf() in show_pmu_*() instead of snprintf()

2020-09-09 Thread Joe Perches
On Wed, 2020-09-09 at 10:19 -0600, Shuah Khan wrote: > On 9/9/20 12:45 AM, Alexander Shishkin wrote: > > Shuah Khan writes: > > > > > Since snprintf() returns would-be-output size instead of the actual > > > output size, replace it with scnprintf(), so the nr_addr_filters_show(), > > >

Re: [RFC PATCH v2 1/3] mm/gup: fix gup_fast with dynamic page table folding

2020-09-09 Thread Gerald Schaefer
On Wed, 9 Sep 2020 09:18:46 -0700 Dave Hansen wrote: > On 9/9/20 5:29 AM, Gerald Schaefer wrote: > > This only works well as long there are real pagetable pointers involved, > > that can also be used for iteration. For gup_fast, or any other future > > pagetable walkers using the READ_ONCE logic

Re: [PATCH v2 1/6] dt-bindings: mfd: Add Actions Semi ATC260x PMIC binding

2020-09-09 Thread Rob Herring
On Wed, Sep 9, 2020 at 10:03 AM Cristian Ciocaltea wrote: > > Hi Rob, > > Thanks for reviewing! > > On Tue, Sep 08, 2020 at 03:47:24PM -0600, Rob Herring wrote: > > On Sat, Aug 22, 2020 at 01:19:47AM +0300, Cristian Ciocaltea wrote: > > > Add devicetree binding for Actions Semi ATC260x PMICs. > >

Re: [PATCH] media: em28xx: fix function pointer check

2020-09-09 Thread Hans Verkuil
On 03/09/2020 16:50, t...@redhat.com wrote: > From: Tom Rix > > clang static analyzer reports this problem > > em28xx-core.c:1162:4: warning: Called function pointer > is null (null dereference) > ops->suspend(dev->dev_next); > ^~~ > > This is the

Re: [PATCH net-next RFC v3 01/14] devlink: Add reload action option to devlink reload command

2020-09-09 Thread Moshe Shemesh
On 9/7/2020 8:58 PM, Jakub Kicinski wrote: On Mon, 7 Sep 2020 16:46:01 +0300 Moshe Shemesh wrote: In that sense I don't like --live because it doesn't really say much. AFAIU it means 1) no link flap; 2) < 2 sec datapath downtime; 3) no configuration is lost in kernel or device (including

[PATCH 1/3] dt-bindings: arm: fsl: Add binding for Variscite Symphony board with VAR-SOM-MX8MN

2020-09-09 Thread Krzysztof Kozlowski
Add a binding for the Variscite Symphony evaluation kit board with VAR-SOM-MX8MN System on Module. Signed-off-by: Krzysztof Kozlowski --- Documentation/devicetree/bindings/arm/fsl.yaml | 6 ++ 1 file changed, 6 insertions(+) diff --git a/Documentation/devicetree/bindings/arm/fsl.yaml

Re: INFO: task hung in io_sq_thread_stop

2020-09-09 Thread Jens Axboe
On 9/9/20 7:43 AM, Hillf Danton wrote: > > On Wed, 9 Sep 2020 12:03:55 +0200 Stefano Garzarella wrote: >> On Wed, Sep 09, 2020 at 01:49:22AM -0700, syzbot wrote: >>> Hello, >>> >>> syzbot found the following issue on: >>> >>> HEAD commit:dff9f829 Add linux-next specific files for 20200908 >>>

[RESEND PATCH v3] mtd: spinand: micron: add support for MT29F2G01AAAED

2020-09-09 Thread Thirumalesha Narasimhappa
The MT29F2G01AAAED is a single die, 2Gb Micron SPI NAND Flash with 4-bit ECC Signed-off-by: Thirumalesha Narasimhappa --- v3: As per the review comments, 1. Renamed read_cache_variants as quadio_read_cache_variants, write_cache_variants as

Re: [PATCH] docs: kvm: fix referenced ioctl symbol

2020-09-09 Thread Jonathan Corbet
On Wed, 19 Aug 2020 16:19:52 -0500 Connor Kuehl wrote: > The actual symbol that is exported and usable is > 'KVM_MEMORY_ENCRYPT_OP', not 'KVM_MEM_ENCRYPT_OP' > > $ git grep -l KVM_MEM_ENCRYPT_OP > Documentation/virt/kvm/amd-memory-encryption.rst > > $ git grep -l KVM_MEMORY_ENCRYPT_OP >

[PATCH 1/2] extcon: ptn5150: Use defines for registers

2020-09-09 Thread Krzysztof Kozlowski
The register addresses are not continuous, so use simple defines for them. This also makes it easier to find the address for register. No functional change. Signed-off-by: Krzysztof Kozlowski --- drivers/extcon/extcon-ptn5150.c | 22 ++ 1 file changed, 10 insertions(+), 12

Re: [PATCH] Platform integrity information in sysfs

2020-09-09 Thread Daniel Gutson
On Tue, Sep 8, 2020 at 5:48 AM Vignesh Raghavendra wrote: > > Hi, Hi, thanks for your review. > > On 9/3/20 9:48 PM, Daniel Gutson wrote: > > This patch exports information about the platform integrity > > firmware configuration in the sysfs filesystem. > > In this initial patch, I include some

Re: INFO: task hung in io_sq_thread_stop

2020-09-09 Thread Stefano Garzarella
On Wed, Sep 09, 2020 at 08:03:32AM -0600, Jens Axboe wrote: > On 9/9/20 4:03 AM, Stefano Garzarella wrote: > > On Wed, Sep 09, 2020 at 01:49:22AM -0700, syzbot wrote: > >> Hello, > >> > >> syzbot found the following issue on: > >> > >> HEAD commit:dff9f829 Add linux-next specific files for

Re: [RFC PATCH 00/16] 1GB THP support on x86_64

2020-09-09 Thread Rik van Riel
On Wed, 2020-09-09 at 15:43 +0200, David Hildenbrand wrote: > On 09.09.20 15:19, Rik van Riel wrote: > > On Wed, 2020-09-09 at 09:04 +0200, Michal Hocko wrote: > > > > > That CMA has to be pre-reserved, right? That requires a > > > configuration. > > > > To some extent, yes. > > > > However,

Re: [PATCH] dt-bindings: regulator: Convert mp886x to json-schema

2020-09-09 Thread Rob Herring
On Thu, 27 Aug 2020 15:06:40 +0800, Jisheng Zhang wrote: > Convert the mp886x binding to DT schema format using json-schema. > > Signed-off-by: Jisheng Zhang > --- > .../devicetree/bindings/regulator/mp886x.txt | 31 -- > .../bindings/regulator/mps,mp886x.yaml| 61

[PATCH 3/3] arm64: dts: imx8mn-ddr4-evk: Remove unneeded PMIC pin configuration

2020-09-09 Thread Krzysztof Kozlowski
The pin configuration for PMIC interrupt is already set by imx8mn-evk.dtsi with exactly the same values. Signed-off-by: Krzysztof Kozlowski --- arch/arm64/boot/dts/freescale/imx8mn-ddr4-evk.dts | 8 1 file changed, 8 deletions(-) diff --git

[PATCH 1/3] arm64: dts: imx8mm-var-som-symphony: Remove unneeded i2c3 properties

2020-09-09 Thread Krzysztof Kozlowski
The i2c3 clock frequency and pin configuration are already set by imx8mm-var-som.dtsi. Signed-off-by: Krzysztof Kozlowski --- arch/arm64/boot/dts/freescale/imx8mm-var-som-symphony.dts | 5 - 1 file changed, 5 deletions(-) diff --git

[RFC][Patch v1 1/3] sched/isolation: API to get num of hosekeeping CPUs

2020-09-09 Thread Nitesh Narayan Lal
Introduce a new API num_housekeeping_cpus(), that can be used to retrieve the number of housekeeping CPUs by reading an atomic variable __num_housekeeping_cpus. This variable is set from housekeeping_setup(). This API is introduced for the purpose of drivers that were previously relying only on

[RFC][Patch v1 2/3] i40e: limit msix vectors based on housekeeping CPUs

2020-09-09 Thread Nitesh Narayan Lal
In a realtime environment, it is essential to isolate unwanted IRQs from isolated CPUs to prevent latency overheads. Creating MSIX vectors only based on the online CPUs could lead to a potential issue on an RT setup that has several isolated CPUs but a very few housekeeping CPUs. This is because

[PATCH 2/3] arm64: dts: imx8mm-var-som-symphony: Adjust ethernet pin configuration

2020-09-09 Thread Krzysztof Kozlowski
The Symphony board uses GPIO from expander as Ethernet PHY reset pin, not the GPIO1_IO9. Signed-off-by: Krzysztof Kozlowski --- .../dts/freescale/imx8mm-var-som-symphony.dts | 20 +++ 1 file changed, 20 insertions(+) diff --git

[RFC][Patch v1 3/3] PCI: Limit pci_alloc_irq_vectors as per housekeeping CPUs

2020-09-09 Thread Nitesh Narayan Lal
This patch limits the pci_alloc_irq_vectors max vectors that is passed on by the caller based on the available housekeeping CPUs by only using the minimum of the two. A minimum of the max_vecs passed and available housekeeping CPUs is derived to ensure that we don't create excess vectors which

[RFC] [PATCH v1 0/3] isolation: limit msix vectors based on housekeeping CPUs

2020-09-09 Thread Nitesh Narayan Lal
This is a follow-up posting for "[v1] i40e: limit the msix vectors based on housekeeping CPUs" [1] (It took longer than expected for me to get back to this). Issue = With the current implementation device drivers while creating their MSIX vectors only takes num_online_cpus() into

Re: [PATCH v2 0/2] MTE support for KVM guest

2020-09-09 Thread Andrew Jones
On Fri, Sep 04, 2020 at 05:00:16PM +0100, Steven Price wrote: > Arm's Memory Tagging Extension (MTE) adds 4 bits of tag data to every 16 > bytes of memory in the system. This along with stashing a tag within the > high bit of virtual addresses allows runtime checking of memory > accesses. > >

[PATCH 0/3]spi: spi-zynqmp-gqspi: Update driver to use spi-mem framework

2020-09-09 Thread Amit Kumar Mahapatra
This patch series: - Fixes kernel-doc warnings in ZynqMP qspi controller driver file. - Updates the ZynqMP qspi controller driver to use spi-mem framework. - Fixes incorrect indentation in ZynqMP qspi controller driver file. --- Tested: flashcp and mtd_utils Branch: for-next --- Amit Kumar

[PATCH 3/3] spi: spi-zynqmp-gqspi: Fix incorrect indentation

2020-09-09 Thread Amit Kumar Mahapatra
Fixed incorrect indentation in ZynqMP qspi controller driver. Addresses-checkpatch: "Alignment should match open parenthesis" Signed-off-by: Amit Kumar Mahapatra --- drivers/spi/spi-zynqmp-gqspi.c | 46 +- 1 file changed, 23 insertions(+), 23 deletions(-) diff

Re: [RFC PATCH 0/3] Add writing support to vmcore for reusing oldmem

2020-09-09 Thread Eric W. Biederman
Kairui Song writes: > Currently vmcore only supports reading, this patch series is an RFC > to add writing support to vmcore. It's x86_64 only yet, I'll add other > architecture later if there is no problem with this idea. > > My purpose of adding writing support is to reuse the crashed kernel's

Re: [PATCH -next] soundwire: intel: Remove ununsed function

2020-09-09 Thread Pierre-Louis Bossart
On 9/9/20 8:15 AM, YueHaibing wrote: If CONFIG_PM is not set, build warns: drivers/soundwire/intel.c:488:12: warning: 'intel_link_power_down' defined but not used [-Wunused-function] Move this to #ifdef block. Yes, thanks for the report, it's a valid issue, but maybe the fix is to add

[PATCH 1/3] spi: spi-zynqmp-gqspi: Fix kernel-doc warnings

2020-09-09 Thread Amit Kumar Mahapatra
Fix kernel-doc warnings in ZynqMP qspi driver file. Signed-off-by: Amit Kumar Mahapatra --- drivers/spi/spi-zynqmp-gqspi.c | 45 +- 1 file changed, 23 insertions(+), 22 deletions(-) diff --git a/drivers/spi/spi-zynqmp-gqspi.c b/drivers/spi/spi-zynqmp-gqspi.c

Re: [PATCH v2 01/15] scsi: megaraid_sas: use generic power management

2020-09-09 Thread Vaibhav Gupta
On Wed, Sep 09, 2020 at 08:23:32AM -0500, Bjorn Helgaas wrote: > On Wed, Sep 09, 2020 at 03:33:15PM +0530, Vaibhav Gupta wrote: > > On Tue, Sep 08, 2020 at 12:32:09PM -0500, Bjorn Helgaas wrote: > > > On Mon, Jul 20, 2020 at 07:04:14PM +0530, Vaibhav Gupta wrote: > > > > With legacy PM hooks, it

Re: [MPTCP][PATCH v2 net 2/2] mptcp: fix subflow's remote_id issues

2020-09-09 Thread Matthieu Baerts
Hi Geliang, On 08/09/2020 04:49, Geliang Tang wrote: This patch set the init remote_id to zero, otherwise it will be a random number. Then it added the missing subflow's remote_id setting code both in __mptcp_subflow_connect and in subflow_ulp_clone. Fixes: 01cacb00b35cb ("mptcp: add

Re: [PATCH 2/3] backlight: pwm_bl: Artificially add 0% during interpolation

2020-09-09 Thread Daniel Vetter
On Wed, Sep 9, 2020 at 4:45 PM Daniel Thompson wrote: > > On Mon, Sep 07, 2020 at 09:50:18AM +0200, Daniel Vetter wrote: > > On Fri, Sep 04, 2020 at 12:38:22PM +0100, Daniel Thompson wrote: > > > On Mon, Jul 20, 2020 at 09:25:21PM -0700, Alexandru Stan wrote: > > > > Some displays need the low

[PATCH v6 2/2] dt-bindings: cpufreq: add bindings for MediaTek cpufreq HW

2020-09-09 Thread Hector Yuan
From: "Hector.Yuan" Add devicetree bindings for MediaTek HW driver. Signed-off-by: Hector.Yuan --- .../bindings/cpufreq/cpufreq-mediatek-hw.yaml | 141 1 file changed, 141 insertions(+) create mode 100644

[PATCH -next] soundwire: intel: Remove ununsed function

2020-09-09 Thread YueHaibing
If CONFIG_PM is not set, build warns: drivers/soundwire/intel.c:488:12: warning: 'intel_link_power_down' defined but not used [-Wunused-function] Move this to #ifdef block. Signed-off-by: YueHaibing --- drivers/soundwire/intel.c | 137 +++--- 1 file changed,

[PATCH v6] cpufreq: mediatek-hw: Add support for Mediatek cpufreq HW driver

2020-09-09 Thread Hector Yuan
The CPUfreq HW present in some Mediatek chipsets offloads the steps necessary for changing the frequency of CPUs. The driver implements the cpufreq driver interface for this hardware engine. This patch depends on the MT6779 DTS patch submitted by Hanks Chen https://lkml.org/lkml/2020/8/4/1094

Re: [PATCH v2 1/1] i2c: busses: Add support for atomic transfers in Actions Semi Owl driver

2020-09-09 Thread Manivannan Sadhasivam
Hi Cristi, On 0908, Cristian Ciocaltea wrote: > Atomic transfers are required to properly power off a machine through > an I2C controlled PMIC, such as the Actions Semi ATC260x series. > > System shutdown may happen with interrupts being disabled and, as a > consequence, the kernel may hang if

Re: [MPTCP][PATCH v2 net 1/2] mptcp: fix subflow's local_id issues

2020-09-09 Thread Matthieu Baerts
Hi Geliang, On 08/09/2020 04:49, Geliang Tang wrote: In mptcp_pm_nl_get_local_id, skc_local is the same as msk_local, so it always return 0. Thus every subflow's local_id is 0. It's incorrect. This patch fixed this issue. Also, we need to ignore the zero address here, like 0.0.0.0 in IPv4.

Re: [PATCH v9 0/5] Add support for iMX8MQ Display Controller Subsystem

2020-09-09 Thread Lucas Stach
Hi Laurentiu, On Mo, 2020-08-31 at 14:24 +0300, Laurentiu Palcu wrote: > Hi Lucas, Sam, > > On Mon, Aug 31, 2020 at 12:37:23PM +0200, Lucas Stach wrote: > > Hi Laurentiu, > > > > On Fr, 2020-08-28 at 11:36 +0300, Laurentiu Palcu wrote: > > > Hi Lucas, > > > > > > I was wondering about the

[PATCH v2] mm/vmscan: fix infinite loop in drop_slab_node

2020-09-09 Thread zangchunxin
From: Chunxin Zang On our server, there are about 10k memcg in one machine. They use memory very frequently. When I tigger drop caches,the process will infinite loop in drop_slab_node. There are two reasons: 1.We have too many memcgs, even though one object freed in one memcg, the sum of

Re: [RFC PATCH v8 0/3] Add support for AT_INTERPRETED (was O_MAYEXEC)

2020-09-09 Thread Al Viro
On Wed, Sep 09, 2020 at 09:19:11AM +0200, Mickaël Salaün wrote: > > On 08/09/2020 20:50, Al Viro wrote: > > On Tue, Sep 08, 2020 at 09:59:53AM +0200, Mickaël Salaün wrote: > >> Hi, > >> > >> This height patch series rework the previous O_MAYEXEC series by not > >> adding a new flag to openat2(2)

Re: [PATCH v1] spi: spi-nxp-fspi: Add ACPI support

2020-09-09 Thread Mark Brown
On Wed, Sep 09, 2020 at 06:29:10PM +0530, Kuldip Dwivedi wrote: > > | Does NXP know about this ID assignment from their namespace? ACPI IDs > > | should be namespaced by whoever's assigning the ID to avoid > collisions. > Yes, NXP is aware. Can anyone from NXP confirm this? > > Please don't

Re: [PATCH] hwmon: (pmbus) Expose PEC debugfs attribute

2020-09-09 Thread Guenter Roeck
On 9/9/20 6:24 AM, Andrew Jeffery wrote: > Enable runtime debug control of whether the PEC byte is exchanged with > the PMBus device. > > Some manufacturers have asked for the PEC to be disabled as part of > debugging driver communication issues with devices. > > Signed-off-by: Andrew Jeffery >

Re: [PATCH V4 1/2] vfio dma_map/unmap: optimized for hugetlbfs pages

2020-09-09 Thread Jason Gunthorpe
On Wed, Sep 09, 2020 at 03:29:41PM +0100, Christoph Hellwig wrote: > On Wed, Sep 09, 2020 at 10:05:18AM -0300, Jason Gunthorpe wrote: > > How to use? The VMAs can have mixed page sizes so the caller would > > have to somehow switch and call twice? Not sure this is faster. > > We can find out the

Re: [PATCH -next] usb: host: ehci-sched: Remove ununsed function tt_start_uframe()

2020-09-09 Thread Alan Stern
On Wed, Sep 09, 2020 at 09:44:05PM +0800, YueHaibing wrote: > commit b35c5009bbf6 ("USB: EHCI: create per-TT bandwidth tables") > left behind this, remove it. > > Signed-off-by: YueHaibing Acked-by: Alan Stern

Re: [PATCH] docs: deprecated.rst: Update zero-length/one-element arrays section

2020-09-09 Thread Kees Cook
On Mon, Aug 31, 2020 at 08:09:49PM -0500, Gustavo A. R. Silva wrote: > Update information in the zero-length and one-element arrays section > and illustrate how to make use of the new flex_array_size() helper, > together with struct_size() and a flexible-array member. > > Signed-off-by: Gustavo

Re: [Nouveau] [PATCH] drm/nouveau: Add fine-grain temperature reporting

2020-09-09 Thread Jeremy Cline
On Wed, Sep 09, 2020 at 10:22:14AM +0200, Karol Herbst wrote: > On Wed, Sep 9, 2020 at 6:06 AM Ben Skeggs wrote: > > > > On Thu, 13 Aug 2020 at 06:50, Jeremy Cline wrote: > > > > > > Commit d32656373857 ("drm/nouveau/therm/gp100: initial implementation of > > > new gp1xx temperature sensor")

Re: [PATCH 2/2] Add driver for Moortec MR75203 PVT controller

2020-09-09 Thread Guenter Roeck
On 9/8/20 11:52 PM, Rahul Tanwar wrote: > PVT controller (MR75203) is used to configure & control > Moortec embedded analog IP which contains temprature > sensor(TS), voltage monitor(VM) & process detector(PD) > modules. Add driver to support MR75203 PVT controller. > The subject needs to include

Re: [PATCH V4 1/2] vfio dma_map/unmap: optimized for hugetlbfs pages

2020-09-09 Thread Matthew Wilcox
On Wed, Sep 09, 2020 at 03:29:41PM +0100, Christoph Hellwig wrote: > On Wed, Sep 09, 2020 at 10:05:18AM -0300, Jason Gunthorpe wrote: > > How to use? The VMAs can have mixed page sizes so the caller would > > have to somehow switch and call twice? Not sure this is faster. > > We can find out the

Re: [PATCH V4 1/4] arm64: dts: sc7180: Add wakeup support over UART RX

2020-09-09 Thread skakit
Hi Matthias, On 2020-09-03 21:35, Matthias Kaehlcke wrote: On Thu, Sep 03, 2020 at 08:34:55PM +0530, satya priya wrote: Add the necessary pinctrl and interrupts to make UART wakeup capable. If QUP function is selected in sleep state, UART RTS/RFR is pulled high during suspend and BT SoC not

Re: [PATCH] fs: Eliminate a local variable to make the code more clear

2020-09-09 Thread Hao Lee
On Wed, Sep 09, 2020 at 07:54:44AM -0500, Eric W. Biederman wrote: > Hao Lee writes: > > > On Tue, Sep 08, 2020 at 07:48:57PM +0100, Al Viro wrote: > >> On Tue, Sep 08, 2020 at 01:06:56PM +, Hao Lee wrote: > >> > ping > >> > > >> > On Wed, Jul 29, 2020 at 03:21:28PM +, Hao Lee wrote: >

Re: INFO: task hung in io_sq_thread_stop

2020-09-09 Thread Stefano Garzarella
On Wed, Sep 09, 2020 at 08:05:33AM -0600, Jens Axboe wrote: > On 9/9/20 7:43 AM, Hillf Danton wrote: > > > > On Wed, 9 Sep 2020 12:03:55 +0200 Stefano Garzarella wrote: > >> On Wed, Sep 09, 2020 at 01:49:22AM -0700, syzbot wrote: > >>> Hello, > >>> > >>> syzbot found the following issue on: > >>>

Re: [PATCH] rtw88: pci: Power cycle device during shutdown

2020-09-09 Thread Kai-Heng Feng
> On Aug 26, 2020, at 08:27, Brian Norris wrote: > > On Mon, Aug 24, 2020 at 2:32 AM Kai-Heng Feng > wrote: >> >> Sometimes system freeze on cold/warm boot when rtw88 is probing. >> >> According to [1], platform firmware may not properly power manage the >> device during shutdown. I did

Re: [PATCH] intel-iommu: don't disable ATS for device without page aligned request

2020-09-09 Thread Raj, Ashok
Hi Jason On Wed, Sep 09, 2020 at 04:34:32PM +0800, Jason Wang wrote: > Commit 61363c1474b1 ("iommu/vt-d: Enable ATS only if the device uses > page aligned address.") disables ATS for device that can do unaligned > page request. Did you take a look at the PCI specification? Page Aligned Request

[Attenzione!] Mattina. Spero tu stia bene.

2020-09-09 Thread zamzam318
https://bit.ly/3lAAQqz Buon divertimento,zamzam...@yahoo.com =NEWS= Cutting down trash with bamboo packaging Universal Biopack makes packaging that it sells to restaurants and manufacturers. But rather than plastic, it uses a mixture of

[PATCH 3/3] arm64: dts: imx8mn-var-som-symphony: Add Variscite Symphony board with VAR-SOM-MX8MN

2020-09-09 Thread Krzysztof Kozlowski
Add a basic DTS for Variscite Symphony evaluation kit with VAR-SOM-MX8MN (i.MX 8M Nano) System on Module. This brings up the board with basic functionalities although still few issues remain (e.g. I2C3 and USB OTG port, although it might not be the problem of DTS). Signed-off-by: Krzysztof

[PATCH v2] media: camera-sensor.rst: fix a doc build warning

2020-09-09 Thread Mauro Carvalho Chehab
Documentation/driver-api/media/camera-sensor.rst:123: WARNING: Inline literal start-string without end-string. There's a missing blank line over there. Signed-off-by: Mauro Carvalho Chehab --- Documentation/driver-api/media/camera-sensor.rst | 2 +- 1 file changed, 1 insertion(+), 1

[PATCH 2/2] serial: core: fix console port-lock regression

2020-09-09 Thread Johan Hovold
Fix the port-lock initialisation regression introduced by commit a3cb39d258ef ("serial: core: Allow detach and attach serial device for console") by making sure that the lock is again initialised during console setup. The console may be registered before the serial controller has been probed in

[PATCH 2/3] arm64: dts: imx8mn-var-som: Add Variscite VAR-SOM-MX8MN System on Module

2020-09-09 Thread Krzysztof Kozlowski
Add DTSI of Variscite VAR-SOM-MX8MN (Nano) System on Module in a basic version, delivered with Variscite Symphony Evaluation kit. This version comes with: - 1 GB of RAM, - 16 GB eMMC, - Gigabit Ethernet PHY, - 802.11 ac/a/b/g/n WiFi with 4.2 Bluetooth, - CAN bus, - Audio codec (not yet configured

Re: [RFC PATCH v8 0/3] Add support for AT_INTERPRETED (was O_MAYEXEC)

2020-09-09 Thread Matthew Wilcox
On Wed, Sep 09, 2020 at 09:19:11AM +0200, Mickaël Salaün wrote: > > On 08/09/2020 20:50, Al Viro wrote: > > On Tue, Sep 08, 2020 at 09:59:53AM +0200, Mickaël Salaün wrote: > >> Hi, > >> > >> This height patch series rework the previous O_MAYEXEC series by not > >> adding a new flag to openat2(2)

Re: [RFC] Device addition to the tlv320adcx140 and tas2562

2020-09-09 Thread Mark Brown
On Wed, Sep 09, 2020 at 10:01:51AM -0500, Dan Murphy wrote: > For the TLV320adcx140 driver I have another device which is register and > bitmap compatible but it does not support Analog microphones or Line In like > the x140. > Should I add a new driver specifically for this part or should I add

<    1   2   3   4   5   6   7   8   9   10   >